.banner{
    height: 700px;
    background: linear-gradient(135deg, #f0f7f4 0%, #e8f5f1 40%, #d4f1e8 70%, #e8f5f1 100%);
    /* Placeholder for custom image: background: url(../img/home/hero-background.jpg) no-repeat center; */
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.banner::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(10, 77, 60, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    z-index: 1;
}
.banner::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border: 1px solid rgba(10, 77, 60, 0.1);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.1; }
}
.banner > *{
    position: relative;
    z-index: 2;
}
.banner h2{
    display: block;
    text-align: left;
    font-size: 56px;
    color: #0a4d3c;
    margin: 0 auto 30px;
    width: 1200px;
    max-width: 90%;
    padding: 0 40px;
    box-sizing: border-box;
    animation: fadeInUp 1s ease;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
}
.banner h2::after{
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    margin-top: 25px;
}
.banner p{
    display: block;
    text-align: left;
    font-size: 22px;
    color: #2d3e3a;
    margin: 0 auto;
    width: 1200px;
    max-width: 90%;
    padding: 0 40px;
    box-sizing: border-box;
    animation: fadeInUp 1.2s ease;
    line-height: 1.6;
    font-weight: 400;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.icon{
    width: 1200px;
    max-width: 100%;
    height: auto;
    margin: 100px auto;
    padding: 0 40px;
    box-sizing: border-box;
    background: linear-gradient(135deg, #ffffff 0%, #f8faf9 100%);
    border-radius: 20px;
    padding: 60px 40px;
    position: relative;
    box-shadow: 0 10px 40px rgba(10, 77, 60, 0.08);
}
.icon::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #0a4d3c, #1a5f4e);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.15;
}
.icon p{
    text-align: center;
    font-size: 32px;
    color: #0a4d3c;
    margin: 0 0 60px 0;
    font-weight: 700;
    animation: fadeIn 1s ease;
    position: relative;
}
.icon p::after{
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    margin: 20px auto 0;
}
.icon ul{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}
.icon ul li{
    float: none;
    margin: 0;
    transition: transform 0.3s ease;
    position: relative;
}
.icon ul li::before{
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.icon ul li:hover::before{
    opacity: 1;
}
.icon ul li:hover{
    transform: translateY(-15px);
}
.icon ul li img{
    width: 120px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
    background: transparent;
}
.icon ul li:hover img{
    filter: brightness(1.1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.share {
    height: auto;
    min-height: 900px;
    margin: auto;
    background: linear-gradient(135deg, #f0f7f4 0%, #e8f5f1 50%, #f0f7f4 100%);
    padding: 100px 0;
    position: relative;
}
.share::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}
.share h2{
    font-size: 48px;
    color: #0a4d3c;
    text-align: center;
    padding: 0 0 80px 0;
    font-weight: 800;
    position: relative;
}
.share h2::after{
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    margin: 25px auto 0;
}
.box-down{
    width: 1200px;
    max-width: 100%;
    height: auto;
    margin: 80px auto;
    padding: 0 40px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 60px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}
.box-down:nth-child(2){
    animation-delay: 0.2s;
}
.box-down:nth-child(3){
    animation-delay: 0.4s;
    flex-direction: row-reverse;
}
.box-down .box-left{
    float: none;
    flex: 1;
    min-width: 0;
    position: relative;
}
.box-down .box-left::before{
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(10, 77, 60, 0.15);
    border-radius: 16px;
    z-index: 0;
}
.box-down .box-left img{
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(10, 77, 60, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}
.box-down .box-left img:hover{
    transform: scale(1.03);
    box-shadow: 0 25px 80px rgba(212, 175, 55, 0.2);
}
.box-down .box-right{
    float: none;
    flex: 1;
    min-width: 0;
    padding: 0;
}
.box-down .box-right h1{
    font-size: 36px;
    color: #0a4d3c;
    margin-bottom: 25px;
    font-weight: 800;
    position: relative;
    padding-left: 20px;
}
.box-down .box-right h1::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #d4af37, #f4d03f);
}
.box-down .box-right p{
    font-size: 17px;
    color: #2d3e3a;
    margin-bottom: 0;
    line-height: 1.9;
    font-weight: 400;
}

.content{
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8faf9 100%);
    position: relative;
}
.content::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}
.content h2{
    font-size: 48px;
    color: #0a4d3c;
    text-align: center;
    padding: 0 0 80px 0;
    font-weight: 800;
    position: relative;
}
.content h2::after{
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    margin: 25px auto 0;
}
.content ul{
    width: 1200px;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.content ul li{
    float: none;
    flex: 1;
    min-width: 320px;
    border: none;
    margin: 0;
    background: linear-gradient(135deg, #0a4d3c 0%, #1a5f4e 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(10, 77, 60, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    position: relative;
}
.content ul li::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.content ul li:hover::before{
    opacity: 1;
}
.content ul li:nth-child(1){ animation-delay: 0.1s; }
.content ul li:nth-child(2){ animation-delay: 0.2s; }
.content ul li:nth-child(3){ animation-delay: 0.3s; }

.content ul li:hover{
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.content ul li h3{
    color: #d4af37;
    font-size: 30px;
    padding: 35px 35px;
    background: linear-gradient(135deg, rgba(10, 77, 60, 0.3) 0%, rgba(26, 95, 78, 0.3) 100%);
    font-weight: 800;
    letter-spacing: 1px;
}
.content ul li i{
    display: block;
    color: #d4af37;
    font-size: 22px;
    margin: 35px 35px 18px;
    font-weight: 700;
}
.content ul li p{
    color: #e8f5f1;
    font-size: 16px;
    margin: 0 35px 30px;
    line-height: 1.7;
    font-weight: 300;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .banner h2{
        font-size: 40px;
    }
    .banner p{
        font-size: 20px;
    }
    .icon{
        width: 100%;
    }
    .share h2, .content h2{
        font-size: 36px;
    }
    .box-down{
        width: 100%;
    }
    .content ul{
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .banner{
        height: 400px;
    }
    .banner h2{
        font-size: 28px;
        text-align: center;
    }
    .banner p{
        font-size: 16px;
        text-align: center;
    }
    .icon{
        margin: 50px auto;
    }
    .icon p{
        font-size: 20px;
        margin-bottom: 30px;
    }
    .icon ul{
        gap: 20px;
    }
    .icon ul li img{
        width: 100px;
        height: 50px;
        object-fit: contain;
    }
    .share{
        padding: 50px 0;
    }
    .share h2, .content h2{
        font-size: 28px;
        padding-bottom: 40px;
    }
    .box-down{
        flex-direction: column;
        margin: 40px auto;
    }
    .box-down .box-right h1{
        font-size: 24px;
    }
    .box-down .box-right p{
        font-size: 15px;
    }
    .content{
        padding: 50px 0;
    }
    .content ul{
        flex-direction: column;
        gap: 20px;
    }
    .content ul li{
        min-width: 100%;
    }
    .content ul li h3{
        font-size: 24px;
        padding: 25px;
    }
    .content ul li i{
        font-size: 18px;
        margin: 25px 25px 12px;
    }
    .content ul li p{
        font-size: 14px;
        margin: 0 25px 20px;
    }
}


/* Responsive Design */
@media screen and (max-width: 1200px) {
    .banner h2{
        font-size: 46px;
    }
    .banner p{
        font-size: 20px;
    }
    .share h2, .content h2{
        font-size: 42px;
    }
    .box-down{
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .banner{
        height: 500px;
    }
    .banner::after{
        width: 400px;
        height: 400px;
    }
    .banner h2{
        font-size: 32px;
        text-align: center;
        padding: 0 20px;
    }
    .banner h2::after{
        margin: 20px auto 0;
    }
    .banner p{
        font-size: 16px;
        text-align: center;
        padding: 0 20px;
    }
    .icon{
        margin: 60px auto;
        padding: 40px 20px;
    }
    .icon p{
        font-size: 24px;
        margin-bottom: 40px;
    }
    .icon ul{
        gap: 30px;
    }
    .icon ul li img{
        width: 90px;
        height: 45px;
        object-fit: contain;
    }
    .share{
        padding: 60px 0;
    }
    .share h2, .content h2{
        font-size: 32px;
        padding-bottom: 50px;
    }
    .box-down{
        flex-direction: column;
        margin: 50px auto;
        padding: 0 20px;
        gap: 30px;
    }
    .box-down:nth-child(3){
        flex-direction: column;
    }
    .box-down .box-left::before{
        top: -10px;
        left: -10px;
        right: 10px;
        bottom: 10px;
    }
    .box-down .box-right h1{
        font-size: 28px;
        padding-left: 15px;
    }
    .box-down .box-right h1::before{
        width: 4px;
    }
    .box-down .box-right p{
        font-size: 15px;
    }
    .content{
        padding: 60px 0;
    }
    .content ul{
        flex-direction: column;
        gap: 25px;
        padding: 0 20px;
    }
    .content ul li{
        min-width: 100%;
    }
    .content ul li h3{
        font-size: 26px;
        padding: 28px 28px;
    }
    .content ul li i{
        font-size: 20px;
        margin: 28px 28px 15px;
    }
    .content ul li p{
        font-size: 15px;
        margin: 0 28px 25px;
    }
}


/* Enhanced Banner with Image */
.banner{
    position: relative;
}
.banner-content{
    position: relative;
    z-index: 2;
}
.banner-image{
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}
.banner-image .hero-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: brightness(0.7);
}

/* Team Section */
.team-section{
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f7f4 0%, #e8f5f1 100%);
    position: relative;
}
.team-section::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}
.team-section h2{
    font-size: 48px;
    color: #0a4d3c;
    text-align: center;
    padding: 0 0 20px 0;
    font-weight: 800;
    position: relative;
}
.team-section h2::after{
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    margin: 25px auto 0;
}
.team-subtitle{
    text-align: center;
    font-size: 20px;
    color: #2d3e3a;
    margin-bottom: 60px;
    font-weight: 400;
}
.team-grid{
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}
.team-member{
    background: linear-gradient(135deg, #ffffff 0%, #f8faf9 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(10, 77, 60, 0.1);
    transition: all 0.3s ease;
    position: relative;
}
.team-member::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, #0a4d3c, #1a5f4e);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.team-member:hover::before{
    opacity: 0.3;
}
.team-member:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}
.team-member img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.team-member:hover img{
    transform: scale(1.05);
}
.team-member h3{
    font-size: 22px;
    color: #0a4d3c;
    padding: 25px 25px 10px;
    font-weight: 700;
    text-align: center;
}
.team-member p{
    font-size: 15px;
    color: #2d3e3a;
    padding: 0 25px 25px;
    text-align: center;
    line-height: 1.6;
}

/* Case Studies Section */
.case-studies{
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8faf9 100%);
    position: relative;
}
.case-studies::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}
.case-studies h2{
    font-size: 48px;
    color: #0a4d3c;
    text-align: center;
    padding: 0 0 20px 0;
    font-weight: 800;
    position: relative;
}
.case-studies h2::after{
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    margin: 25px auto 0;
}
.case-subtitle{
    text-align: center;
    font-size: 20px;
    color: #2d3e3a;
    margin-bottom: 60px;
    font-weight: 400;
}
.case-grid{
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}
.case-item{
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(10, 77, 60, 0.1);
    transition: all 0.3s ease;
    height: 400px;
}
.case-item::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}
.case-item:hover::before{
    opacity: 1;
}
.case-item:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}
.case-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.case-item:hover img{
    transform: scale(1.1);
}
.case-overlay{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 77, 60, 0.95) 0%, transparent 100%);
    padding: 40px 30px;
    z-index: 1;
}
.case-overlay h3{
    font-size: 26px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
}
.case-overlay p{
    font-size: 16px;
    color: #d4af37;
    font-weight: 600;
}

/* Responsive for new sections */
@media screen and (max-width: 768px) {
    .banner-image{
        width: 100%;
        opacity: 0.2;
    }
    .team-section, .case-studies{
        padding: 60px 0;
    }
    .team-section h2, .case-studies h2{
        font-size: 32px;
    }
    .team-subtitle, .case-subtitle{
        font-size: 16px;
        margin-bottom: 40px;
    }
    .team-grid{
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    .team-member img{
        height: 250px;
    }
    .case-grid{
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    .case-item{
        height: 350px;
    }
}
