.banner {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.banner-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    padding: 30px 50px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.banner-overlay h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 800px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.5);
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
}

.banner-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.control {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.control.active {
    background-color: #1e3a5f;
    transform: scale(1.2);
}

.banner-prev, .banner-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.banner-prev:hover, .banner-next:hover {
    background-color: #1e3a5f;
}

.banner-prev {
    left: 30px;
}

.banner-next {
    right: 30px;
}

.numbers {
    background-color: #f5f5f5;
    padding: 60px 0;
}

.numbers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /*gap: 60px;*/
    gap: 180px;
}

.number-item {
    text-align: center;
    /*min-width: 200px;*/
	min-width: 150px;
}

.number {
    font-size: 48px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 5px;
}

.unit {
    font-size: 12px;
    color: #8892a6;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: block;
}

.label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.about-scg {
    padding: 80px 0;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.about-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text .btn {
    margin-top: auto;
    align-self: flex-start;
}

.about-image {
    flex: 1;
    display: flex;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.core-business {
    padding: 80px 0;
    background-color: #1e3a5f;
}

.core-business .section-title h2 {
    color: #fff;
}

.core-business .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.business-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px 15px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.business-card h3 {
    font-size: 16px;
    line-height: 1.3;
    min-height: 2.6em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.15);
}

.business-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #d4af37;
}

.business-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

.business-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.business-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.new-sector {
    padding: 80px 0;
    background-color: #fff;
}

.new-sector .section-title h2 {
    color: #1e3a5f;
}

.new-sector .section-title p {
    color: #666;
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.sector-card {
    background-color: #f9f9f9;
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e8e8e8;
}

.sector-card:hover {
    background: linear-gradient(135deg, #2c5282 0%, #1e3a5f 100%);
    border-color: #2c5282;
    box-shadow: 0 10px 25px rgba(30, 58, 95, 0.15);
}

.sector-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #1e3a5f;
}

.sector-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 18px;
}

.sector-card:hover .sector-icon {
    color: #d4af37;
}

.sector-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1e3a5f;
}

.sector-card:hover h3 {
    color: #fff;
}

.dco-section {
    padding: 80px 0;
}

.dco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.dco-card-link {
    text-decoration: none;
    display: block;
}

.dco-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.dco-card:hover {
    transform: translateY(-5px);
}

.dco-image {
    height: 200px;
    overflow: hidden;
}

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

.dco-card:hover .dco-image img {
    transform: scale(1.1);
}

.dco-content {
    padding: 25px;
}

.dco-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.dco-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dco-button-wrapper {
    text-align: center;
    margin-top: 30px;
}

.news-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.news-section .section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.view-all {
    font-size: 14px;
    color: #1e3a5f;
    font-weight: 500;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 25px;
    color: inherit;
}

.news-content h3 {
    color: #1a1a1a;
}

.news-content p {
    color: #666;
}

.news-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
    display: block;
}

.news-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    font-size: 13px;
    color: #1e3a5f;
    font-weight: 500;
}

@media (max-width: 768px) {
    .banner {
        height: 400px;
		margin-top: 0;
    }
    
    .banner-overlay h2 {
        font-size: 24px;
    }
    
    .numbers-grid {
        gap: 30px;
    }
    
    .number {
        font-size: 32px;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .business-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 499px) {
    .business-grid {
        grid-template-columns: repeat(2, 1fr);
    }
	
	.sector-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
