/* About Page Styles */
.about-page {
    padding-bottom: 60px;
    background-color: #0a0a14;
    background-image: linear-gradient(135deg, #0a0a14 0%, #1a1a2e 50%, #0a0a14 100%);
    position: relative;
    overflow: hidden;
}

.about-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="none" stroke="rgba(100,100,255,0.1)" stroke-width="1" d="M0,50 L100,50 M50,0 L50,100 M0,0 L100,100 M0,100 L100,0" /></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

/* Banner Styles */
.page-banner {
    position: relative;
    width: 100%;
    height: 300px;
    background: linear-gradient(90deg, #3023AE 0%, #7042DB 50%, #C86DD7 100%);
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="none" stroke="rgba(255,255,255,0.15)" stroke-width="1" d="M0,0 L100,100 M0,20 L80,100 M20,0 L100,80 M0,40 L60,100 M40,0 L100,60 M0,60 L40,100 M60,0 L100,40 M0,80 L20,100 M80,0 L100,20" /></svg>');
}

.page-banner .banner-content {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

/* Breadcrumb Styles */
.breadcrumb-container {
    padding: 15px 0;
    background: linear-gradient(90deg, #16161f 0%, #232342 100%);
    border-bottom: 1px solid rgba(100, 100, 255, 0.2);
    position: relative;
    z-index: 1;
}

.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb li {
    display: inline-block;
    margin-right: 5px;
    color: #a0a0ff;
}

.breadcrumb li:after {
    content: '>';
    margin-left: 5px;
    color: #7878b5;
}

.breadcrumb li:last-child:after {
    display: none;
}

.breadcrumb a {
    color: #a0a0ff;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #ffffff;
}

/* Section Title Styles */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #e0e0ff;
    text-shadow: 0 0 10px rgba(100, 100, 255, 0.3);
}

.title-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3023AE, #C86DD7);
    margin: 0 auto;
}

/* About Section Styles */
.about-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #121225 0%, #1d1d35 100%);
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.about-text {
    margin-bottom: 40px;
    line-height: 1.8;
    color: #e0e0ff;
}

.about-mission {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.mission-box {
    flex: 0 0 calc(50% - 30px);
    margin: 0 15px 30px;
    padding: 30px;
    background: linear-gradient(135deg, #1e1e36 0%, #2d2d4a 100%);
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3), 0 0 10px rgba(100, 100, 255, 0.2);
    border: 1px solid rgba(100, 100, 255, 0.1);
}

.mission-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #c586d7;
}

.mission-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #3023AE, #C86DD7);
    margin-bottom: 20px;
}

.mission-box p {
    line-height: 1.6;
    color: #d0d0ff;
}

/* Technology Section Styles */
.tech-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #141428 0%, #232342 100%);
    position: relative;
    z-index: 1;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 0px;
}

.tech-item {
    flex: 0 0 calc(20% - 30px);
    margin: 0 10px 30px;
    padding: 30px;
    background: rgba(30, 30, 60, 0.6);
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3), 0 0 10px rgba(100, 100, 255, 0.1);
    text-align: center;
    border: 1px solid rgba(100, 100, 255, 0.1);
}

.tech-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.tech-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(100, 100, 255, 0.5));
}

.tech-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    min-height: 40px;
    color: #a0a0ff;
}

.tech-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.tech-item li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    line-height: 1.4;
    color: #d0d0ff;
}

.tech-item li:before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3023AE, #C86DD7);
}

/* Certificate Section Styles */
.certificate-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #121225 0%, #1a1a30 100%);
    position: relative;
    z-index: 1;
}

.certificate-slider {
    position: relative;
    padding: 0 40px;
}

.certificate-item {
    padding: 15px;
}

.certificate-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.certificate-info {
    text-align: center;
}

.certificate-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.more-btn {
    display: inline-block;
    padding: 5px 15px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
}

.more-btn:hover {
    background-color: #333;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .tech-item {
        flex: 0 0 calc(33.333% - 30px);
    }
}

@media (max-width: 992px) {
    .page-banner {
        height: 250px;
    }
    
    .page-banner h1 {
        font-size: 36px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .mission-box {
        flex: 0 0 calc(100% - 30px);
    }
    
    .tech-item {
        flex: 0 0 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 200px;
    }
    
    .page-banner h1 {
        font-size: 30px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .tech-item {
        flex: 0 0 calc(100% - 30px);
    }
}

@media (max-width: 576px) {
    .page-banner {
        height: 150px;
    }
    
    .page-banner h1 {
        font-size: 24px;
    }
    
    .section-title h2 {
        font-size: 20px;
    }
} 