/* Expansion Empowerment Page Styles */
.title-header h2{
    font-size: 45px;
}
/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1f9968 0%, #2d5a3d 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/earth.gif') center/cover no-repeat;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Main Page Styles */
.main-page {
    background: #ffffff;
}

/* Module Sections */
.module-section {
    padding: 70px 0;
    position: relative;
}

.module-section:nth-child(even) {
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Module 1: Card Grid Style */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(31, 153, 104, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1f9968, #4CAF50, #1f9968);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.service-card:hover {
    transform: translateY(-8px);
}

.card-header {
    text-align: center;
    margin-bottom: 24px;
    flex: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1f9968, #4CAF50);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow);
}

.service-icon svg {
    color: #ffffff;
}

.card-header h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.3;
}

.card-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* Module 2: Spotlight Style */
.spotlight-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 0;
}

.spotlight-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(31, 153, 104, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}


.spotlight-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: rgba(31, 153, 104, 0.3);
}

.spotlight-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1f9968, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

.spotlight-icon svg {
    color: #ffffff;
}

.spotlight-content h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.spotlight-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Module 3: Feature List Style */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(31, 153, 104, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 40px 40px 0;
    border-color: transparent #1f9968 transparent transparent;
    opacity: 0.1;
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow);
    border-color: rgba(31, 153, 104, 0.2);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #1f9968, #4CAF50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.feature-icon svg {
    color: #ffffff;
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    /* background: linear-gradient(135deg, #1f9968 0%, #2d5a3d 100%); */
    padding: 80px 0;
    text-align: center;
    background-image: url('/assets/images/que-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);

}

.cta-content {
    position: relative;
    z-index: 9;
}

.cta-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button .layui-icon {
    font-size: 12px;
}

.cta-button.primary {
    background: #ffffff;
    color: var(--primary-color);
}

.cta-button.primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cta-button.secondary:hover {
    background: #ffffff;
    color: #1f9968;
    transform: translateY(-2px);
}
/* Responsive Design */
@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }

    .spotlight-item {
        padding: 40px;
    }

    .spotlight-icon {
        width: 80px;
        height: 80px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .module-section {
        padding: 40px 0;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px;
    }

    .spotlight-container {
        padding:0;
    }

    .spotlight-item {
        padding: 30px;
    }

    .spotlight-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .spotlight-content h4 {
        font-size: 20px;
    }

    .spotlight-content p {
        font-size: 15px;
    }

    .feature-item {
        padding: 24px;
        gap: 20px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 16px;
    }

    .container{
        padding: 0 15px;
    }
}

@media (max-width: 480px) {

    .service-card {
        padding: 24px;
    }

    .spotlight-item {
        padding: 24px;
    }

    .spotlight-icon {
        width: 60px;
        height: 60px;
    }

    .feature-item {
        padding: 20px;
        gap: 16px;
    }


    .service-icon {
        width: 56px;
        height: 56px;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wow {
    visibility: hidden;
}

.wow.animated {
    visibility: visible;
}

@media screen and (max-width: 768px) {
    .hero-section {
        min-height: 200px;
    }

    .hero-content h1 {
        font-size: 23px;
        margin-bottom: 5px;
    }

    .hero-content p {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .hero-section::before{
        animation: none;
    }

    .title-header h2{
        text-align: center;
        font-size: 30px;
        line-height: 35px;
    }
    .title-decoration{
        justify-content: center;
    }
    .decoration-line{
        width: 40px;
        flex: none;
    }
    .decoration-dot{
        width: 10px;
        height: 10px;
    }
    .title-header{
        margin-bottom: 20px;
    }
    .title-header p{
        font-size: 15px;
        text-align: center;
    }

    .card-header h4{
        font-size: 20px;
    }
    .card-header{
        margin-bottom: 10px;
    }
    .card-content p{
        font-size: 15px;
    }

    .feature-content h4{
        font-size: 18px;
    }
    .feature-content p{
        font-size: 14px;
    }

    .cta-section{
        padding: 50px 0;
     }
     .cta-content h3{
        font-size: 22px;
        margin-bottom: 10px;
     }
     .cta-content p{
        font-size: 14px;
        margin-bottom: 15px;
     }
     .cta-button{
        padding: 5px 20px;
        font-size: 14px;
     }
     .cta-button .layui-icon{
        font-size: 9px;
     }
     .cta-buttons{
        gap: 15px;
     }
}