/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(34, 64, 83, 0.15) 0%, transparent 70%),
        radial-gradient(circle at 40% 40%, rgba(96, 165, 250, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(147, 51, 234, 0.06) 0%, transparent 40%),
        linear-gradient(45deg, rgba(59, 130, 246, 0.02) 0%, transparent 30%, rgba(34, 64, 83, 0.03) 70%);
    z-index: -1;
    animation: backgroundFloat 15s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        filter: hue-rotate(0deg);
    }
    25% { 
        transform: translateY(-20px) rotate(2deg) scale(1.02); 
        filter: hue-rotate(90deg);
    }
    50% { 
        transform: translateY(10px) rotate(-1deg) scale(0.98); 
        filter: hue-rotate(180deg);
    }
    75% { 
        transform: translateY(-15px) rotate(1.5deg) scale(1.01); 
        filter: hue-rotate(270deg);
    }
}

/* Dynamic Particles */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(59, 130, 246, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(34, 64, 83, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(96, 165, 250, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(147, 51, 234, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(59, 130, 246, 0.2), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    z-index: -1;
    animation: particleFloat 25s linear infinite;
    opacity: 0.6;
}

@keyframes particleFloat {
    0% { transform: translateY(0px) translateX(0px); }
    100% { transform: translateY(-100px) translateX(50px); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(34, 64, 83, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: #224053;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: #3b82f6;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: #3b82f6;
}

.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #224053;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span {
    background: white;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 64, 83, 0.8), rgba(34, 64, 83, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.8s;
    font-weight: 300;
    line-height: 1.8;
}

.hero-cta {
    display: inline-block;
    padding: 18px 40px;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 0;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 1.1s;
}

.hero-cta:hover {
    background: white;
    color: #224053;
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #224053;
    margin-bottom: 1.5rem;
    position: relative;
    letter-spacing: 2px;
    
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #60a5fa;
}

/* News Section */
.news-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 30%, rgba(59, 130, 246, 0.08) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 20%, rgba(34, 64, 83, 0.05) 40%, transparent 60%),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(96, 165, 250, 0.02) 50px, rgba(96, 165, 250, 0.02) 52px);
    z-index: 0;
    animation: newsWave 12s ease-in-out infinite;
    pointer-events: none;
}

@keyframes newsWave {
    0%, 100% { transform: translateX(0px) skewX(0deg); }
    50% { transform: translateX(10px) skewX(1deg); }
}

.news-section .container {
    position: relative;
    z-index: 1;
}

.news-section .section-title {
    text-align: center;
}

.news-section .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.news-list {
    max-width: 900px;
    margin: 0 auto;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.news-item:hover {
    background: #f8fafc;
    padding-left: 20px;
    padding-right: 20px;
}

.news-date {
    color: #6b7280;
    font-weight: 400;
    margin-right: 30px;
    min-width: 120px;
    font-size: 0.95rem;
}

.news-category {
    background: #224053;
    color: white;
    padding: 6px 16px;
    border-radius: 0;
    font-size: 0.85rem;
    margin-right: 30px;
    min-width: 100px;
    text-align: center;
    font-weight: 400;
}

.news-title {
    color: #333;
    text-decoration: none;
    font-weight: 400;
    flex: 1;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.news-title:hover {
    color: #224053;
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: 
        radial-gradient(circle, rgba(96, 165, 250, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(147, 51, 234, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    animation: floatRight 10s ease-in-out infinite;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 60%;
    left: -10%;
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, rgba(34, 64, 83, 0.08), rgba(59, 130, 246, 0.06));
    transform: rotate(45deg);
    animation: rotateLeft 20s linear infinite;
}

@keyframes rotateLeft {
    0% { transform: rotate(45deg) scale(1); }
    100% { transform: rotate(405deg) scale(1.1); }
}

@keyframes floatRight {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) scale(1); 
        filter: blur(0px);
    }
    50% { 
        transform: translateY(-30px) translateX(-20px) scale(1.2); 
        filter: blur(1px);
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-subtitle {
    font-size: 1.8rem;
    color: #224053;
    margin-bottom: 2rem;
    font-weight: 300;
}

.about-description {
    font-size: 1.1rem;
    line-height: 2;
    color: #4b5563;
    margin-bottom: 3rem;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: #224053;
    text-decoration: none;
    border: 2px solid #224053;
    border-radius: 0;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #224053;
    color: white;
    transform: translateY(-2px);
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 0;
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 80px, rgba(34, 64, 83, 0.04) 80px, rgba(34, 64, 83, 0.04) 84px),
        repeating-linear-gradient(-45deg, transparent, transparent 120px, rgba(59, 130, 246, 0.03) 120px, rgba(59, 130, 246, 0.03) 122px),
        radial-gradient(ellipse at center, rgba(96, 165, 250, 0.02) 0%, transparent 70%);
    z-index: 0;
    animation: servicesPulse 18s ease-in-out infinite;
}

@keyframes servicesPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.services-subtitle {
    font-size: 1.5rem;
    color: #4b5563;
    margin-bottom: 4rem;
    font-weight: 300;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 50px;
}

.service-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 0;
}

.service-title {
    font-size: 1.8rem;
    color: #224053;
    margin-bottom: 2rem;
    font-weight: 300;
}

.service-description {
    font-size: 1.1rem;
    line-height: 2;
    color: #4b5563;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Strength Section */
.strength-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #e2e8f0 0%, #f1f5f9 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.strength-section::before {
    content: '';
    position: absolute;
    top: 5%;
    left: -8%;
    width: 350px;
    height: 350px;
    background: 
        radial-gradient(circle, rgba(34, 64, 83, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(147, 51, 234, 0.08) 0%, transparent 50%);
    border-radius: 50%;
    animation: floatLeft 8s ease-in-out infinite;
}

.strength-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.06));
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: triangleFloat 15s ease-in-out infinite;
    transform: translateX(50%); /* 画面外に移動 */
}

@keyframes triangleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(180deg); }
}

@keyframes floatLeft {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) scale(1); 
        filter: brightness(1);
    }
    33% { 
        transform: translateY(-25px) translateX(15px) scale(1.15); 
        filter: brightness(1.2);
    }
    66% { 
        transform: translateY(10px) translateX(-10px) scale(0.9); 
        filter: brightness(0.8);
    }
}

.strength-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.strength-subtitle {
    font-size: 1.8rem;
    color: #224053;
    margin-bottom: 2rem;
    font-weight: 300;
}

.strength-description {
    font-size: 1.1rem;
    line-height: 2;
    color: #4b5563;
    margin-bottom: 3rem;
    font-weight: 300;
}

.strength-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 0;
}

/* Works Section */
.works-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    text-align: center;
    position: relative;
}

.works-section::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 100px;
    height: 100px;
    background: 
        radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: simpleFloat 8s ease-in-out infinite;
}

.works-section::before {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 5%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(34, 64, 83, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: gentleFloat 6s ease-in-out infinite;
}

@keyframes simpleFloat {
    0%, 100% { 
        transform: translateY(0px); 
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-15px); 
        opacity: 0.8;
    }
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.works-section .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.works-slider {
    margin: 60px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.work-slide {
    position: relative;
    outline: none;
}

.work-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 0;
}

.work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(34, 64, 83, 0.9));
    color: white;
    padding: 60px 40px 40px;
    text-align: left;
}

.work-overlay h4 {
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 300;
}

.work-overlay p {
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.6;
}

.works-detail-btn {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: #224053;
    text-decoration: none;
    border: 2px solid #224053;
    border-radius: 0;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 40px;
}

.works-detail-btn:hover {
    background: #224053;
    color: white;
    transform: translateY(-2px);
}

/* Slick Slider Customization */
.slick-dots {
    bottom: -60px;
}

.slick-dots li button:before {
    color: #224053;
    font-size: 12px;
}

.slick-dots li.slick-active button:before {
    color: #60a5fa;
}

.works-slider .slick-prev,
.works-slider .slick-next {
    z-index: 1;
    width: 50px;
    height: 50px;
    border: 2px solid white;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: transparent;
}

.works-slider .slick-prev:hover,
.works-slider .slick-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.works-slider .slick-prev {
    left: 25px;
}

.works-slider .slick-next {
    right: 25px;
}

.works-slider .slick-prev:before,
.works-slider .slick-next:before {
    font-size: 20px;
    color: white;
    text-shadow: none;
}

/* Values Section */
.values-section {
    padding: 120px 0;
    background: 
        linear-gradient(135deg, #224053 0%, #1e3a8a 50%, #224053 100%),
        radial-gradient(circle at 20% 20%, rgba(96, 165, 250, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.08) 0%, transparent 60%);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(255, 255, 255, 0.02) 100px, rgba(255, 255, 255, 0.02) 102px),
        repeating-linear-gradient(-45deg, transparent, transparent 150px, rgba(96, 165, 250, 0.03) 150px, rgba(96, 165, 250, 0.03) 152px);
    animation: valuesPattern 25s linear infinite;
}

.values-section::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: valuesFloat 16s ease-in-out infinite;
}

@keyframes valuesPattern {
    0% { transform: translateX(0px) translateY(0px); }
    100% { transform: translateX(50px) translateY(-50px); }
}

@keyframes valuesFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
        opacity: 0.5;
    }
    50% { 
        transform: translateY(-40px) scale(1.3); 
        opacity: 0.8;
    }
}

.values-section .section-title {
    text-align: center;
    color: white;
}

.values-section .section-title::after {
    left: 50%;
    transform: translateX(-50%);
    background: #60a5fa;
}

.values-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 80px;
}

.value-item {
    background: white;
    padding: 60px 50px;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 50px;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.value-header {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 200px;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #224053, #2563eb);
    color: white;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.value-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-icon:hover {
    transform: scale(1.08);
}

.value-icon:hover::after {
    opacity: 1;
}

.value-icon i {
    position: relative;
    z-index: 1;
}

.value-title-section h4 {
    font-size: 1.4rem;
    color: #224053;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.3;
}

.value-subtitle {
    font-size: 0.8rem;
    color: #60a5fa;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.value-description {
    flex: 1;
}

.value-description p {
    color: #4b5563;
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.value-points {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.value-points li {
    color: #4b5563;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.6;
}

.value-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 50%;
}

#values-subtitle {
    text-align: center;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 40px;
}

/* Access Section */
.access-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
}

.access-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(34, 64, 83, 0.08) 0%, transparent 60%);
    z-index: 0;
    animation: subtleWave 15s ease-in-out infinite;
}

.access-section::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 8%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(34, 64, 83, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: slowFloat 12s ease-in-out infinite;
}

@keyframes subtleWave {
    0%, 100% { 
        opacity: 1;
    }
    50% { 
        opacity: 0.8;
    }
}

@keyframes slowFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.access-section .container {
    position: relative;
    z-index: 1;
}

.access-section .section-title::after {
    left: 0;
    transform: none;
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #224053;
    color: white;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-icon:hover {
    background: #2563eb;
    transform: scale(1.05);
}

.contact-details h4 {
    font-size: 1.3rem;
    color: #224053;
    margin-bottom: 15px;
    font-weight: 400;
}

#FAX {
    margin-top: 30px;
}
.contact-details p {
    color: #4b5563;
    line-height: 1.8;
    font-weight: 300;
}

.map-container {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    height: 400px;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(34, 64, 83, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 400;
    font-size: 1.1rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.map-overlay:hover {
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #224053;
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
    /* filter: brightness(0) invert(1); */
}

.footer-brand p {
    color: #94a3b8;
    font-weight: 300;
    font-size: 1.1rem;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.footer-column h4 {
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-weight: 400;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-certifications {
    margin-top: 30px;
}

.certifications-text {
    color: #94a3b8;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.certification-badges {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.certification-badge {
    max-width: 100px;
    height: auto;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.certification-badge:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 30px;
    text-align: center;
    color: #94a3b8;
    font-weight: 300;
}

/* Page Hero Styles */
.page-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.page-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 64, 83, 0.7), rgba(34, 64, 83, 0.5));
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.page-hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 4px;
}

.page-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

/* Breadcrumb Styles */
.breadcrumb-section {
    padding: 30px 0;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #224053;
}

.breadcrumb-separator {
    margin: 0 15px;
    color: #9ca3af;
}

.breadcrumb-current {
    color: #224053;
    font-weight: 500;
}

/* Company Overview Section */
.company-overview-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.company-intro {
    max-width: 900px;
    margin: 0 auto;
}

.company-intro-text {
    font-size: 1.2rem;
    line-height: 2;
    color: #4b5563;
    font-weight: 300;
    margin-top: 40px;
}

/* Company Information Section */
.company-info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.company-info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

.company-info-title {
    font-size: 2rem;
    color: #224053;
    margin-bottom: 40px;
    font-weight: 300;
}

.company-info-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.info-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    border-bottom: 1px solid #e5e7eb;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    background: #f8fafc;
    padding: 20px 25px;
    font-weight: 500;
    color: #374151;
    border-right: 1px solid #e5e7eb;
}

.info-value {
    padding: 20px 25px;
    color: #4b5563;
    line-height: 1.6;
}

.company-info-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 90px;
}

/* Company History Section */
.company-history-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.history-timeline {
    max-width: 800px;
    margin: 60px auto 0;
    position: relative;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #60a5fa, #3b82f6);
}

.history-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.history-year {
    width: 120px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #224053;
    text-align: center;
    position: relative;
}

.history-year::after {
    content: '';
    position: absolute;
    right: -31px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #3b82f6;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #3b82f6;
}

.history-content {
    flex: 1;
    margin-left: 40px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.history-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 30px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid white;
}

.history-content h4 {
    font-size: 1.3rem;
    color: #224053;
    margin-bottom: 15px;
    font-weight: 500;
}

.history-content p {
    color: #4b5563;
    line-height: 1.7;
    font-weight: 300;
}

/* Company Philosophy Section */
.company-philosophy-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #224053 0%, #1e3a8a 50%, #224053 100%);
    color: white;
}

.company-philosophy-section .section-title {
    color: white;
    text-align: center;
}

.company-philosophy-section .section-title::after {
    left: 50%;
    transform: translateX(-50%);
    background: #60a5fa;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 60px;
}

.philosophy-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 50px 30px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
}

.philosophy-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.philosophy-text {
    line-height: 1.8;
    font-weight: 300;
    opacity: 0.9;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        position: relative;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        left: 100%;
        top: 0;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(34, 64, 83, 0.85) 0%, rgba(30, 58, 138, 0.85) 100%);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        padding: 120px 2rem 2rem;
        justify-content: flex-start;
        gap: 0;
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 20% 20%, rgba(96, 165, 250, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.06) 0%, transparent 60%),
            radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
            linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0%, transparent 30%);
        z-index: -1;
    }
    
    .nav-menu.active {
        left: 0%;
    }
    
    .nav-menu li {
        margin: 0;
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.5s; }
    
    .nav-menu a {
        color: white;
        font-size: 1.2rem;
        font-weight: 400;
        padding: 20px 30px;
        display: block;
        border-radius: 8px;
        margin: 10px 20px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .nav-menu a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    .nav-menu a:hover::before {
        left: 100%;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.12);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
    
    .nav-menu a.active {
        background: rgba(96, 165, 250, 0.18);
        color: #60a5fa;
        border: 1px solid rgba(96, 165, 250, 0.3);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    /* Keep other responsive styles */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content,
    .services-content,
    .strength-content,
    .access-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .values-content {
        gap: 50px;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
        padding: 50px 35px;
        gap: 30px;
    }
    
    .value-header {
        min-width: auto;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .value-description {
        text-align: left;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .certification-badges {
        gap: 15px;
    }
    
    .certification-badge {
        max-width: 140px;
    }
    
    .news-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 30px 0;
    }
    
    .news-date,
    .news-category {
        margin-right: 0;
        min-width: auto;
    }
    
    .section-title {
        font-size: 2rem;
        text-align: center!important;
    }
    
    .work-slide img {
        height: 300px;
    }
    
    .work-overlay {
        padding: 40px 30px 30px;
    }

    .about-section::before,
    .about-section::after,
    .strength-section::before,
    .strength-section::after {
        display: none;
    }

    .slick-prev,
    .slick-next {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        padding: 1rem 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-cta,
    .btn-primary,
    .works-detail-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .value-card {
        padding: 40px 30px;
    }
    
    .contact-item {
        margin-bottom: 40px;
    }
    
    .page-hero-title {
        font-size: 2.5rem;
    }
    
    .page-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .company-info-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .info-row {
        grid-template-columns: 1fr;
    }
    
    .info-label {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .history-timeline::before {
        left: 30px;
    }
    
    .history-year {
        width: 60px;
        font-size: 1.2rem;
    }
    
    .history-year::after {
        right: -16px;
    }
    
    .history-content {
        margin-left: 20px;
    }
}

/* Services Page Styles */
.services-overview-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.services-overview-text {
    font-size: 1.2rem;
    line-height: 2;
    color: #4b5563;
    font-weight: 300;
    margin-top: 40px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.main-services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 60px;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 40px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #224053, #2563eb);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-title {
    font-size: 1.5rem;
    color: #224053;
    margin-bottom: 20px;
    font-weight: 500;
}

.service-description {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 300;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    color: #4b5563;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-weight: 300;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 50%;
}

/* Recruit Page Styles */
.recruit-message-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.recruit-message-text {
    font-size: 1.2rem;
    line-height: 2;
    color: #4b5563;
    font-weight: 300;
    margin-top: 40px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.job-openings-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.job-list {
    margin-top: 60px;
}

.job-item {
    background: white;
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.job-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.job-title {
    font-size: 1.5rem;
    color: #224053;
    font-weight: 500;
}

.job-type {
    background: #224053;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 400;
}

.job-description {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 300;
}

.job-requirements h5 {
    color: #224053;
    margin-bottom: 15px;
    font-weight: 500;
}

.job-requirements ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.job-requirements li {
    color: #4b5563;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-weight: 300;
}

.job-requirements li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 50%;
}

.job-conditions {
    background: #f8fafc;
    padding: 25px;
    border-radius: 6px;
}

.condition-item {
    display: flex;
    margin-bottom: 15px;
}

.condition-item:last-child {
    margin-bottom: 0;
}

.condition-label {
    min-width: 100px;
    font-weight: 500;
    color: #374151;
}

.condition-value {
    color: #4b5563;
    font-weight: 300;
}

.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.benefit-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #224053, #2563eb);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px;
}

.benefit-title {
    font-size: 1.2rem;
    color: #224053;
    margin-bottom: 15px;
    font-weight: 500;
}

.benefit-description {
    color: #4b5563;
    line-height: 1.6;
    font-weight: 300;
}

/* Contact Page Styles */
.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.contact-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    font-weight: 300;
    margin: 40px auto 60px;
    text-align: center;
    max-width: 700px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
}

.required {
    color: #ef4444;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 300;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
}

.privacy-link {
    color: #3b82f6;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

.submit-btn {
    background: linear-gradient(135deg, #224053, #2563eb);
    color: white;
    padding: 15px 50px;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 64, 83, 0.3);
}

.contact-info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.contact-method {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.contact-method-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #224053, #2563eb);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px;
}

.contact-method-content h4 {
    font-size: 1.2rem;
    color: #224053;
    margin-bottom: 15px;
    font-weight: 500;
}

.contact-method-detail {
    color: #224053;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-method-time {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 300;
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(59, 130, 246, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(34, 64, 83, 0.06) 0%, transparent 60%);
    z-index: 0;
}

.portfolio-section .container {
    position: relative;
    z-index: 1;
}

.portfolio-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    font-weight: 300;
    margin: 40px auto 60px;
    text-align: center;
    max-width: 700px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.portfolio-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.portfolio-category {
    background: linear-gradient(135deg, #224053, #2563eb);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.portfolio-content {
    padding: 30px;
}

.portfolio-title {
    font-size: 1.3rem;
    color: #224053;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.portfolio-description {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 300;
    font-size: 0.95rem;
}

.portfolio-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
    font-size: 0.85rem;
}

.portfolio-date {
    color: #60a5fa;
    font-weight: 500;
}

.portfolio-area {
    color: #6b7280;
    font-weight: 400;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .condition-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .condition-label {
        min-width: auto;
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .portfolio-content {
        padding: 25px;
    }
    
    .portfolio-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

.job-conditions {
    background: #f8fafc;
    padding: 25px;
    border-radius: 6px;
}

.condition-item {
    display: flex;
    margin-bottom: 15px;
}

.condition-item:last-child {
    margin-bottom: 0;
}

.condition-label {
    min-width: 100px;
    font-weight: 500;
    color: #374151;
}

.condition-value {
    color: #4b5563;
    font-weight: 300;
}

.benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.benefit-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #224053, #2563eb);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px;
}

.benefit-title {
    font-size: 1.2rem;
    color: #224053;
    margin-bottom: 15px;
    font-weight: 500;
}

.benefit-description {
    color: #4b5563;
    line-height: 1.6;
    font-weight: 300;
}

/* Contact Page Styles */
.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.contact-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    font-weight: 300;
    margin: 40px auto 60px;
    text-align: center;
    max-width: 700px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
}

.required {
    color: #ef4444;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 300;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
}

.privacy-link {
    color: #3b82f6;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

.submit-btn {
    background: linear-gradient(135deg, #224053, #2563eb);
    color: white;
    padding: 15px 50px;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 64, 83, 0.3);
}

.contact-info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.contact-method {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.contact-method-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #224053, #2563eb);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px;
}

.contact-method-content h4 {
    font-size: 1.2rem;
    color: #224053;
    margin-bottom: 15px;
    font-weight: 500;
}

.contact-method-detail {
    color: #224053;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-method-time {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 300;
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(59, 130, 246, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(34, 64, 83, 0.06) 0%, transparent 60%);
    z-index: 0;
}

.portfolio-section .container {
    position: relative;
    z-index: 1;
}

.portfolio-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    font-weight: 300;
    margin: 40px auto 60px;
    text-align: center;
    max-width: 700px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.portfolio-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.portfolio-category {
    background: linear-gradient(135deg, #224053, #2563eb);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.portfolio-content {
    padding: 30px;
}

.portfolio-title {
    font-size: 1.3rem;
    color: #224053;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.portfolio-description {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 300;
    font-size: 0.95rem;
}

.portfolio-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
    font-size: 0.85rem;
}

.portfolio-date {
    color: #60a5fa;
    font-weight: 500;
}

.portfolio-area {
    color: #6b7280;
    font-weight: 400;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .condition-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .condition-label {
        min-width: auto;
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .portfolio-content {
        padding: 25px;
    }
    
    .portfolio-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}
/* Portfolio CTA Styles */
.portfolio-cta {
    text-align: center;
    margin-top: 40px;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #224053, #2c5a73);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 64, 83, 0.3);
}

.portfolio-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 64, 83, 0.4);
    background: linear-gradient(135deg, #2c5a73, #224053);
}

.portfolio-link i {
    font-size: 1.2rem;
}
