/* Vision Mission Page Styles */
.title-header h2 {
    font-size: 40px;
}

.title-header p {
    font-size: 20px;
}

.core-proposition-section .title-header {
    text-align: left;
}

.core-proposition-section .title-decoration {
    justify-content: flex-start;
}

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

.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;
}

.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;
}

/* Content Wrapper */
.content-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 80px 0;
}

.text-content {
    flex: 1;
    max-width: 60%;
}

.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    width: 100%;
    /* max-width: 500px; */
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(31, 153, 104, 0.05);
    transition: all 0.4s ease;
}

.trends-section .image-wrapper,.vision-mission-section .image-wrapper{
    height: 100%;
}

.image-wrapper:hover {
    transform: translateY(-10px);
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.image-wrapper:hover .feature-image {
    transform: scale(1.05);
}

/* Section Headers */
.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

.section-number {
    font-size: 24px;
    font-weight: 700;
    color: #1f9968;
    margin-right: 15px;
    background: linear-gradient(135deg, #1f9968, #2d5a3d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    color: #1f9968;
    margin: 0;
}

/* Main Headings */
.main-heading {
    font-size: 36px;
    font-weight: 700;
    color: #1f9968;
    margin-bottom: 30px;
    line-height: 1.3;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Content Text */
.content-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.content-text p strong {
    color: #1f9968;
    font-weight: 600;
    position: relative;
    padding-left: 10px;
}

.content-text p strong::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 5px;
    height: 1px;
    background: var(--primary-color);
    z-index: -1;
}

/* Core Proposition Section */
.core-proposition-section {
    background: #f8faf9;
    position: relative;
}

/* Trends Section */
.trends-section {
    background: #ffffff;
}

.trends-grid {
    display: grid;
    gap: 25px;
    margin-top: 30px;
}

.trend-item {
    background: #f8faf9;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #1f9968;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out both;
}

.trend-item:nth-child(1) {
    animation-delay: 0.2s;
}

.trend-item:nth-child(2) {
    animation-delay: 0.4s;
}

.trend-item:nth-child(3) {
    animation-delay: 0.6s;
}

.trend-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(31, 153, 104, 0.15);
    background: #ffffff;
}

.trend-category {
    font-size: 18px;
    font-weight: 600;
    color: #1f9968;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trend-item>p {
    font-size: 15px;
    line-height: 1.7;
    color: #333333;
    margin: 0;
}

/* Vision Mission Section */
.vision-mission-section {
    background: linear-gradient(135deg, #f8faf9 0%, #ffffff 100%);
    position: relative;
}

.vision-mission-section .section-title {
    text-align: center;
    font-size: 40px;
    animation: fadeInUp 0.8s ease-out;
}

.vision-mission-content {
    display: grid;
    gap: 40px;
}

.vision-block,
.mission-block {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(31, 153, 104, 0.03);
    border: 1px solid rgba(31, 153, 104, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out both;
}

.vision-block {
    animation-delay: 0.2s;
}

.mission-block {
    animation-delay: 0.4s;
}

.vision-block:hover,
.mission-block:hover {
    transform: translateY(-8px);
    border-color: rgba(31, 153, 104, 0.2);
}

.block-title {
    font-size: 24px;
    font-weight: 600;
    color: #1f9968;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.block-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.vision-block>p,.mission-block>p{
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
    margin: 0;
}


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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .text-content {
        max-width: 100%;
    }

    /* .image-wrapper {
        max-width: 400px;
        height: 300px;
    } */

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

    .main-heading {
        font-size: 30px;
    }

    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {

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

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

    .content-wrapper {
        padding: 40px 0;
        gap: 20px;
    }

    .main-heading {
        font-size: 26px;
    }

    .section-title {
        font-size: 24px;
    }

    .image-wrapper {
        /* max-width: 300px;
        height: 250px; */
        height: auto;
        border-radius: 10px;
    }

    .trends-grid {
        gap: 20px;
    }

    .trend-item {
        padding: 20px;
    }

    .vision-block,
    .mission-block {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero-content>h1 {
        font-size: 28px;
    }

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

    .main-heading {
        font-size: 22px;
    }

    .section-title {
        font-size: 20px;
    }

    .content-text p {
        font-size: 14px;
        text-align: left;
    }

    .trend-category{
        text-align: left;
    }

    .trend-item>p {
        font-size: 14px;
        text-align: left;
    }

    .vision-block>p,.mission-block>p{
        font-size: 14px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.slide-up {
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* JavaScript Animation Classes */
.animate-in {
    animation: animateIn 0.8s ease-out forwards;
}

@keyframes animateIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

.loaded {
    animation: loaded 0.5s ease-out;
}

@keyframes loaded {
    from {
        opacity: 0.8;
        transform: scale(0.98);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 3D Transform Support */
.image-wrapper {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

/* Cursor Styles */
.section-number {
    cursor: pointer;
    transition: all 0.3s ease;
}

.section-number:hover {
    transform: scale(1.1);
    color: #2d5a3d;
}

.trend-item {
    cursor: pointer;
}

.vision-block,
.mission-block {
    cursor: pointer;
}

/* Hover Effects */
.content-wrapper:hover .image-wrapper {
    transform: translateY(-5px);
}

.trend-item:hover .trend-category {
    color: #2d5a3d;
}

.vision-block:hover .block-title::after,
.mission-block:hover .block-title::after {
    width: 70px;
    transition: width 0.3s ease;
}



@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,.vision-mission-section .section-title{
        text-align: center;
        font-size: 30px;
    }
    .core-proposition-section .title-decoration,.title-decoration{
        justify-content: center;
    }
    .decoration-line{
        width: 40px;
    }
    .decoration-dot{
        width: 10px;
        height: 10px;
    }
    .title-header{
        margin-bottom: 20px;
    }
    .title-header p{
        font-size: 15px;
        text-align: center;
    }

    .block-title::after{
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 3px;
    }
    .vision-mission-content{
        gap: 20px;
    }

    .image-content{
        order: 2;
    }
}