.video-slider-container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.videoSwiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-wrapper video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.slide-content {
    text-align: center;
    color: white;
    padding: 20px;
    animation: slideUpFade 1s ease-out;
}

.slide-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
  letter-spacing: -1px;
  color: white;
}

.slide-description {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    opacity: 0.95;
    color: white;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    content: '';
}

.swiper-button-next svg,
.swiper-button-prev svg {
    width: 24px;
    height: 24px;
}

/* Custom Pagination */
.swiper-pagination {
    bottom: 40px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: white;
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 45px;
        height: 45px;
    }
    
    .swiper-button-next svg,
    .swiper-button-prev svg {
        width: 18px;
        height: 18px;
    }
}



/* masonry */
.masonry-grid {
    column-count: 3;
    column-gap: 20px;
}

@media (max-width: 768px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 480px) {
    .masonry-grid {
        column-count: 1;
    }
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Footer Styles */
.ft-top-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.ft-logo-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ft-logo {
    width: 150px;
    filter: grayscale(100%);
}

.ft-info {
    line-height: 1.8;
    color: white;
}

.ft-info-line {
    margin-bottom: 0.5rem;
    color: white;
}

.ft-info-line:last-of-type {
    margin-bottom: 0.3rem;
}

.ft-info-line strong {
    color: #999;
}

.ft-info-sub {
    padding-left: 4.5rem;
    color: white;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .ft-top-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .ft-logo-info {
        width: 100%;
    }
    
    .ft-info-sub {
        padding-left: 0;
    }
}

/* ============================================
   Main Page - Additional Sections
   ============================================ */

/* Section 02: Core Services */
.main-section02 {
    background: #f9f9f9;
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1rem;
    color: #666;
    font-weight: 300;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Section 03: Strengths */
.main-section03 {
    padding: 100px 0;
    background: white;
}

.strengths-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.strength-item {
    position: relative;
    padding: 2rem;
    text-align: center;
}

.strength-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #667eea;
    opacity: 0.2;
    position: absolute;
    top: 0;
    left: 2rem;
    z-index: 0;
}

.strength-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
    z-index: 1;
}

.strength-item p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Section 04: News */
.main-section04 {
    background: #f9f9f9;
    padding: 100px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #e0e0e0;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    display: inline-block;
    font-size: 0.85rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.news-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.4;
}

.news-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #764ba2;
}

/* Section 05: CTA */
.main-section05 {
    background: linear-gradient(135deg, #91c7f9 0%, #497eb8 100%);
    padding: 80px 20px;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    color: white;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid white;
    font-size: 1rem;
}

.cta-primary {
    background: white;
    color: #667eea;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-secondary {
    background: transparent;
    color: white;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .strengths-container {
        gap: 2rem;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
    }
    
    .main-section02,
    .main-section03,
    .main-section04 {
        padding: 60px 20px;
    }
    
    .main-section05 {
        padding: 60px 20px;
    }
}