@charset "UTF-8";

/* =========================================
   1. Hero Section (Pixel Perfect)
   ========================================= */
.pl-hero {
    background: linear-gradient(270deg, #344B38 0%, #16333C 54.33%, #102F3D 97.12%);
    padding: 160px 0 180px 0;
	background:url(../img/homekv-bg.jpg) center right no-repeat;
	background-size:cover;
    color: white;
	height:780px;
    position: relative;
	margin-top:115px;
}

.pl-hero-title {
    font-family: 'Open Sans', sans-serif;
    font-style: italic; 
    font-weight: 600;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.pl-hero-btns {
    display: flex;
    gap: 20px;
}

/* Application Cases Button */
.btn-hero-app {
    background-color: var(--pl-primary-green);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 4px;
    border: none;
    display: flex;
    align-items: center;
    transition: all 0.3s;
}
.btn-hero-app i { margin-left: 10px; font-size: 12px; }
.btn-hero-app:hover { background-color: var(--pl-hover-green); color: #fff; }

/* Economics Button */
.btn-hero-eco {
    background-color: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    transition: all 0.3s;
}
.btn-hero-eco i { margin-left: 10px; font-size: 12px; }
.btn-hero-eco:hover {
    border-color: #fff;
    background-color: rgba(255,255,255,0.05);
    color: #fff;
}

/* =========================================
   2. About Section (Pixel Perfect)
   ========================================= */
.pl-about {
    padding: 120px 0 160px 0px;
    background: #fff url(../img/aboutus_bg.svg) center right no-repeat;
    position: relative;
    overflow: hidden;
}

.pl-about-logo-icon {
    margin-bottom: 30px;
}

.pl-about-text {
    font-family: 'Open Sans', sans-serif; 
    font-size: 38px; 
    font-weight: 600; 
    line-height: 1.4;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.pl-about-text .highlight {
    color: var(--pl-primary-green);
    font-weight: 600;
}

/* =========================================
   3. Value Proposition (Grey-Olive Cards)
   ========================================= */
.pl-value {
    background-color: #FAFAFA; 
    padding: 80px 0 120px 0;
}

.pl-value-header {
    margin-bottom: 60px;
    text-align: left; 
}

.section-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 48px;
    font-weight: 700; 
    color: #142D39; 
    margin-bottom: 20px;
	font-style: italic;
}

.section-title span {
    color: var(--pl-primary-green);
    font-style: italic; 
    font-weight: 600;
}

.section-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 21px;
    color: #142D39;
    margin-top: 20px;
	margin-bottom:0px;
    max-width: 72%;
    line-height: 1.6
}

/* Value Cards */
.pl-value-card {
    background-color: #686D63; 
    border-radius: 0px; 
    padding: 120px 30px;
	min-height:620px;
    text-align: center;
    color: white;
    height: 100%;
    border: none;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
	/* justify-content:center; */
    align-items: center;
}

.pl-value .col-lg-4:nth-child(1) .pl-value-card{
	background: #686D63 url(../img/value_proposition_innerbg1.jpg) center center no-repeat; 
}

.pl-value .col-lg-4:nth-child(2) .pl-value-card{
	background: #686D63 url(../img/value_proposition_innerbg2.jpg) center center no-repeat; 
}

.pl-value .col-lg-4:nth-child(3) .pl-value-card{
	background: #686D63 url(../img/value_proposition_innerbg3.jpg) center center no-repeat; 
}

.pl-value-card:hover {
    transform: translateY(-5px);
}

.pl-value-icon-box {
    margin-bottom: 35px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pl-value-icon-box i {
    font-size: 4rem; 
    color: var(--pl-primary-green);
}

.pl-value-card h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
    line-height: 1.2;
}

.pl-value-card p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px; 
    line-height: 1.5;
	font-weight: 500;
    color: #fff;
    margin: 0;
    max-width: 90%; 
}

/* =========================================
   4. Platform Applications (Updated)
   ========================================= */
.pl-apps {
    padding: 100px 0;
    background-color: #fff;
}

.pl-apps-header {
    text-align: left; 
    margin-bottom: 60px;
}

.pl-apps-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 21px;
    color: #142D39;
    margin-top: 20px;
    max-width: 72%;
    line-height: 1.6;
}

.pl-app-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 8px; 
    overflow: hidden; 
    transition: transform 0.3s ease;
}

.pl-app-item:hover {
    transform: translateY(-5px);
}

.pl-app-img {
    background-color: #636658; 
    height: 240px; 
    width: 100%;
}

.pl-app-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pl-app-content {
    background-color: #FBFFDE;
    padding: 35px 30px 60px 30px;
    flex-grow: 1;
}

.pl-app-content h5 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
    color: #142D39;
    line-height: 1.4;
}

.pl-app-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px; 
    line-height: 1.6;
    color: #2F3A40; 
    margin: 0;
}

/* =========================================
   5. Project Vision (Updated)
   ========================================= */
.pl-vision {
    padding: 60px 0 140px 0;
    background: linear-gradient(to bottom, #ffffff 60%, #FAFFCC 100%); 
}

.pl-vision-header {
    text-align: center;
    margin-bottom: 50px;
}

.pl-vision-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #142D39;
    margin-top: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.pl-vision-video {
    background-color: #2F3E46; 
    width: 100%;
    height: 500px; 
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pl-vision-video img{
	height:100%;
	object-fit: cover;
	 border-radius: 12px;
}

/* =========================================
   7. Technology Architecture 
   ========================================= */
.pl-tech {
    padding: 100px 0 160px 0px;
    background-color: #fff;
}

.pl-tech-header {
    text-align: left;
    margin-bottom: 80px; 
}

.pl-tech-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 21px;
    color: #142D39;
    margin-top: 20px;
    max-width: 72%;
    line-height: 1.6;
}

.pl-tech-row {
    margin-bottom: 120px;
}
.pl-tech-row:last-child {
    margin-bottom: 0;
}

.pl-tech-img {
    background-color: #FBFFDE;
    width: 100%;
    height: 380px; 
    border-radius: 12px;
}

.pl-tech-img img{
	 border-radius: 12px;
}


.pl-tech-text {
    padding: 0 10px;
}

.pl-tech-text h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 32px; 
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
	font-style: italic;
    color: #142D39;
}

.pl-tech-text h3 span {
    color: var(--pl-primary-green);
    font-style: italic;
    display: block; 
    font-weight: 600; 
}

.pl-tech-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px; 
    color: #142D39;
    line-height: 1.7; 
    margin-bottom: 20px;
}

.pl-tech-link {
    /* display: inline-flex; */
    /* align-items: center; */
    color: #142D39;
    font-size: 16px;
    font-weight: 500;
    text-decoration: underline;
	text-underline-offset: 4px;
    margin-top: 10px;
    transition: color 0.3s;
}

.pl-tech-link i {
    color: var(--pl-primary-green);
    font-size: 15px;
    margin-left: 8px;
    transform: rotate(0deg);
}

.pl-tech-link:hover {
    color: var(--pl-primary-green);
}


/* =========================================
   MOBILE RESPONSIVE FIXES
   ========================================= */
@media (max-width: 1360px) {
	.pl-hero {
		margin-top:98px;
	}
	.pl-hero .col-lg-8{
		padding-left:5%;
	}
	.pl-about-text {
	    font-size: 36px;
	}
	.pl-about {
	    padding: 100px 0;
	}
	.pl-vision-video {
	    height: 420px;
	}
}
@media (max-width: 991px) {
    
    /* --- Hero Section --- */
    .pl-hero {
        height: auto;
        padding: 100px 0 60px 0; 
		margin-top:94px;
        background-position: center; 
    }
    .pl-hero-title {
        font-size: 32px; 
        margin-bottom: 30px;
    }
    .pl-hero-btns {
        flex-direction: column; 
        width: 100%;
    }
    .btn-hero-app, .btn-hero-eco {
        justify-content: center;
        width: 100%; 
    }

    /* --- About Section--- */
    .pl-about {
        padding: 60px 0; 
        background-image: none;
    }
    .pl-about-text {
        font-size: 22px;
        line-height: 1.6;
    }

    /* --- Value Proposition --- */
    .pl-value {
        padding: 60px 0;
    }
    .section-title {
        font-size: 30px;
    }
    .pl-value-card {
        min-height: auto; 
        height: auto;
        padding: 40px 20px;
        margin-bottom: 20px; 
    }
    .pl-value-icon-box {
        height: auto;
        margin-bottom: 20px;
    }
    .pl-value-icon-box i {
        font-size: 3rem;
    }

    /* --- Platform Apps --- */
	.pl-apps {
	    padding: 80px 0 60px 0px;
	}
    .pl-app-item {
        margin-bottom: 30px;
    }
    .pl-app-img {
        height: auto;
        min-height: 200px;
    }
    .pl-app-img img {
        width: 100%;
        height: auto;
        display: block;
    }
    .pl-app-content {
        padding: 25px 20px;
    }

    /* --- Vision Section --- */
    .pl-vision {
        padding: 60px 0;
    }
    .pl-vision-video {
        height: auto;
        max-height: none;
        padding: 0;
    }
	
	.pl-vision .container{
		padding:0px 30px;
	}

    /* --- Technology Section --- */
    .pl-tech {
        padding: 60px 0;
    }
    .pl-tech-row {
        margin-bottom: 60px;
        flex-direction: column-reverse; 
    }
    .pl-tech-row:nth-child(even) {
        flex-direction: column; 
    }
    .pl-tech-img {
        height: auto; /
        margin-bottom: 30px;
    }
	.pl-tech-header {
		margin-top:40px;
	    margin-bottom: 40px;
	}
	
	.pl-tech-text{
		margin-top:30px;
		padding: 0px 20px;
	}
   
    .pl-tech-text h3 {
        font-size: 24px;
    }

   
}