@font-face {
    font-family: 'Urbanist';
    src: url('./fonts/Urbanist.ttf') format('truetype');
    font-weight: 100 900;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Urbanist", sans-serif !important;
  }

body {
    font-family: 'Urbanist' !important;

    background: linear-gradient(180deg, rgba(246, 246, 246, 0.00) 0%, #F6F6F6 100%);

}

:root {
    --primary-green: #006337;
    --text-dark: #1A1A1A;
    --text-light: #5D5D5D;
    --background-light: #F7F7F7;
    --white: #FFFFFF;
    --border-color: #E5E5E5;
}

.governance-hero {
    display: flex;
    justify-content: space-between;
    padding: 100px 40px;
    gap: 56px !important;
    max-width: 1920px;
    margin: 0 auto;
}

.section-header {
    flex-direction: column;
    text-align: left !important;
    justify-content: start;
    align-items: start;
}

.section-header .section-subtitle {
    margin: 0;
    max-width: 804px;
}

.snapshot-item {
    border-radius: 42.313px !important;
    padding: 13px 30px !important;
    border: 0.846px solid rgba(0, 0, 0, 0.50);
    background: #FFF;
}

.governance-hero-content {
    width: 100%;
    margin-top: 100px;
}

.governance-title {
    font-size: 72px;
    color: var(--text-dark);
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: 'Urbanist';

}

.governance-title .text-green {
    color: var(--primary-green);
}

.governance-description {
    font-size: 24px !important;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 731px !important;
}

.governance-hero-image {
    display: flex;
    justify-content: flex-end;
    object-fit: cover;
    width: 85%;
    margin: 0 auto;
}

.governance-hero-image img {
    max-width: 100%;
    height: auto;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .governance-hero {
        padding: 4rem;
    }

    .governance-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .governance-hero {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }

    .governance-hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .governance-description {
        margin-left: auto;
        margin-right: auto;
    }

    .governance-hero-image {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .governance-title {
        font-size: 2.5rem;
    }

    .governance-description {
        font-size: 1rem;
    }
}

/* History Timeline Section */
.history-timeline {
    padding: 6rem 8rem;
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
}

.history-timeline-heading h3 {
    color: #131313;
    font-family: Urbanist;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    text-align: center;
}

.history-timeline-heading p {
    color: #5D5D5D;
    text-align: center;
    font-family: Urbanist;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    text-align: center;
    max-width: 819px;
    margin: 10px auto 50px;
}

.history-timeline-heading .history-timeline-highlight-text {
    color: #006337;
    font-family: Urbanist;
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
}

.timeline-bg {
    position: absolute;
    left: 0;
    top: -5%;
}

.timeline-container {
    max-width: 1920px;
    margin: 0 auto;
}


.timeline {
    position: relative;
    width: 100%;
    margin: 0 auto;
    --scroll-progress: 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 16px;
    border-radius: 60px;
    background-color: #e0e0e0 !important;
    /* Gray background line */
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -7px !important;
    /* Corrected for 16px width */
    z-index: 1;
    /* Behind the progress line */
}

.timeline::before {
    content: '';
    position: absolute;
    width: 16px;
    border-radius: 60px;
    background-color: #006337;
    /* Green progress line */
    top: 0;
    left: 50%;
    margin-left: -8px;
    /* Corrected for 16px width */
    height: var(--scroll-progress);
    transition: height 0.5s ease-out;
    z-index: 2;
    /* In front of the background line */
}

.timeline-item {
    padding: 1rem 40px;
    position: relative;
    width: 50%;
}

.timeline-item.left {
    left: 0;
    text-align: left !important;
}

.timeline-item.right {
    left: 50%;
}

.timeline-content {
    background-color: white;
    position: relative;
    border-radius: 6px;
}

.timeline-item.left .timeline-content {
    text-align: left !important;
}

.timeline-year {
    color: #006337;
    font-family: Urbanist;
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}

.timeline-content h3 {
    color: #131313;
    font-family: Urbanist;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 14px;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.timeline-content ul li {
    color: #131313;
    font-family: Urbanist;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    text-transform: capitalize;
}

.timeline-content ul li::before {
    content: "- ";
}

.timeline-content p {
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
}

/* Responsive Timeline */
@media screen and (max-width: 992px) {
    .history-timeline {
        padding: 4rem 2rem;
    }

    .timeline::after,
    .timeline::before {
        left: 50%;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item.left,
    .timeline-item.right {
        left: 0%;
        text-align: left;
    }
}

/* Board of Directors Section */
.board-of-directors {
    padding: 6rem 8rem;
    background-color: var(--background-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.directors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.director-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--white);
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.director-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.director-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.07;
    z-index: 1;
}

.chairman-card .director-card-bg {
    background-image: url('../images/chairman-patterns.svg');
}

.ceo-card .director-card-bg {
    background-image: url('../images/ceo-pattern.svg');
}

.director-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.director-image-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.director-info h3 {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
}

.director-info p {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.125rem;
    color: var(--primary-green);
    font-weight: 600;
    margin: 0;
}

/* Responsive Styles for Board of Directors */
@media (max-width: 1200px) {
    .board-of-directors {
        padding: 4rem;
    }
}

@media (max-width: 992px) {
    .directors-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 576px) {
    .board-of-directors {
        padding: 3rem 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .director-card-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Company Snapshot Section */
.company-snapshot {
    padding: 100px 40px;
}

.company-snapshot .section-container {
    border-radius: 24px;
    border: 2px solid rgba(0, 0, 0, 0.20);
    background: #FFF;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.16);
    padding: 40px;
}

.company-snapshot h2 {
    font-size: 36px !important;
    font-weight: 600;
}

.company-snapshot p {
    color: #7D7D7D;
    font-size: 18px !important;
    font-weight: 400;
}

.company-snapshot strong {
    font-size: 30px !important;
    font-weight: 600;
}

.company-snapshot span {
    font-size: 25px !important;
    font-weight: 300;
}

.snapshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.company-snapshot .snapshot-item {
    display: flex;
    align-items: center;
    width: 100%;
    height: 85px;
    text-align: center;
    gap: 38px !important;
    background-color: var(--white);
    padding: 1.5rem 2rem;
    border: 1px solid #E5E7EB;
    /* Light border */
    border-radius: 70px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.snapshot-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: var(--white);
    padding: 1.5rem 2rem;
    border: 1px solid #E5E7EB;
    /* Light border */
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-mission .info-card {
    width: 100%;
    border-radius: 24px;
    border: 1px solid #006337;
    background: rgba(255, 255, 255, 0.20);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(25px);
}

.vision-mission .info-card-single {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
}

.vision-mission ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    color: #000;
    font-weight: bold;
    list-style: none;
    margin-top: 148px;
}

.vision-mission .values-para {
    max-width: 764px;
    width: 100%;
    color: #000;
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
}

.vision-mission .vision-para {
    max-width: 636px;
    width: 100%;
    margin-top: 50px;
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
}

.vision-mission .values-heading {
    margin-bottom: 35px !important;
}

.vision-mission .info-card-single h3 {
    color: #000;
    font-family: Urbanist;
    font-size: 48px;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}

.vision-mission .info-card-single img {
    width: 100%;
    max-width: 371px;
    height: 100%;
    max-height: 371px;
    object-fit: contain;
}

.snapshot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.snapshot-item img {
    width: 40px;
    height: 40px;
}

.snapshot-info {
    display: flex;
    flex-direction: column;
}

.snapshot-info strong {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: normal;
    color: var(--text-dark);
}

.snapshot-info span {
    font-family: 'Urbanist', sans-serif;
    font-size: 1rem;
    color: var(--text-light);
}

/* Vision & Mission Section */
.vision-mission {
    padding: 0 8rem 6rem;
    /* No top padding */
    background-color: #F9FAFB;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.info-card {
    background-color: var(--white);
    padding: 3rem;
    border: 1px solid #E5E7EB;
    border-radius: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

.info-card::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 150px;
    height: 150px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05;
    z-index: 1;
}

.vision-card::after {
    background-image: url('/icons/eye-icon.svg');
}

.mission-card::after {
    background-image: url('/icons/target-icon.svg');
}

.info-card h3 {
    font-family: 'Urbanist', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.info-card p {
    font-family: 'Urbanist', sans-serif;
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

/* Values Section */
.values-section {
    padding: 0 8rem 6rem;
    background-color: #F9FAFB;
}

.values-card {
    text-align: center;
}

.values-card::after {
    background-image: url('/icons/diamond-icon.svg');
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.values-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    justify-content: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.values-list li {
    font-family: 'Urbanist', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
}



/* Responsive Styles */
@media (max-width: 1200px) {

    .company-snapshot,
    .vision-mission,
    .values-section {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

@media (max-width: 992px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .company-snapshot,
    .vision-mission,
    .values-section {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .snapshot-grid {
        grid-template-columns: 1fr;
    }
}


/* Hero Section */
.governance-hero-section .section-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 100px;
}

.governance-hero-title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
}

.governance-hero-title .text-green {
    color: #006337;
}

.governance-hero-content p {
    font-size: 18px;
    color: #555;
    max-width: 450px;
}

.governance-hero-image img {
    width: 50%;
}

/* Timeline Section */
.timeline-section {
    background-color: #f7f7f7;
    padding: 100px 0;
    background-image: url('../images/timeline-bg-pattern.svg');
    background-repeat: no-repeat;
    background-position: center;
}

.timeline {
    position: relative;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 16px;
    background-color: #006337;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -10px;
    border-radius: 20px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item.left {
    left: 0;
    padding-right: 100px;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    padding-left: 100px;
}

.timeline-content {
    background-color: transparent;
    position: relative;
    border-radius: 6px;
    max-width: 650px;
    width: 100%;
}

.timeline-item.left .timeline-content {
    text-align: right;
}

.timeline-year {
    color: #006337;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Snapshot Section */
.snapshot-section {
    padding: 100px 0;
}

.snapshot-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.snapshot-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.snapshot-card>p {
    max-width: 800px;
    margin-bottom: 40px;
}

.snapshot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.snapshot-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.snapshot-item img {
    height: 40px;
}

.snapshot-item span {
    font-size: 14px;
    font-weight: 300;
}

/* Vision & Mission Section */
.vision-mission-section .section-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vision-card,
.mission-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    min-height: 250px;
    background-repeat: no-repeat;
    background-position: bottom 20px right 20px;
    background-size: 100px;
}

.vision-card {
    background-image: url('../icons/vision-bg.svg');
}

.mission-card {
    background-image: url('../icons/mission-bg.svg');
}

.vision-card h3,
.mission-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}



/* Values Section */
.values-section {
    padding: 4rem 7rem;
}

.values-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.values-content {
    flex: 1;
}

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
}

.values-content p {
    font-size: 1.1rem;
    color: #eee;
    margin-bottom: 2rem;
    max-width: 80%;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 2;
    column-gap: 2rem;
}

.values-icon img {
    max-width: 120px;
    height: auto;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .timeline-item.right {
        padding-left: 20px;
        padding-right: 0;
    }

    .timeline-item.left {
        padding-right: 20px;
        padding-left: 0;
    }

    .timeline-content h3 {
        font-size: 16px;
    }

    .timeline-content {
        font-size: 12px;
    }
}

.objectives-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 100px;
    padding: 0 40px 100px;
}

.objectives-section h4 {
    color: #000;
    text-align: center;
    font-family: Urbanist;
    font-size: 32px;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 27px;
}

.objectives-section p {
    color: #5D5D5D;
    text-align: center;
    font-family: Urbanist;
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;

    max-width: 1025px;
    width: 100%;
    margin: 0 auto;
}

.objectives-section img {
    margin-top: 17px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    max-width: 1352px;
    width: 100%;
    margin-top: 0 auto;
}

/* Core Objectives Slider */
.core-objectives-section {
    padding: 60px 0;
}

.core-objectives-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-direction: row;
}

.core-objectives-section h4 {
    font-size: 28px;
    font-weight: 600;
}

.swiper-navigation-objectives {
    display: flex;
    gap: 10px;

}

.swiper-button-prev-obj,
.swiper-button-next-obj {
    width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s, border-color 0.3s;
    fill: #F0F0F0;
    stroke-width: 1px;
    stroke: rgba(0, 0, 0, 0.20);
}

.swiper-button-prev-obj::after,
.swiper-button-next-obj::after {
    font-size: 16px;
    color: #000;
    font-weight: bold;
}

.swiper-button-prev-obj::after {
    content: '←';
}

.swiper-button-next-obj::after {
    content: '→';

}


.objective-slide {
    position: relative;
    overflow: hidden;
    height: 556px;
    border-radius: 24px;
    border: 2px solid rgba(0, 0, 0, 0.00);
    background: #FFF;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.16);
}

.objective-slide-content h5,
.objective-slide-content p {
    color: white !important;
}

.objective-slide::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.objective-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}


.objective-slide-content {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    padding: 40px 20px 20px;
    z-index: 1;
    transition: transform 0.4s ease-in-out;
}

.objective-slide-description {
    opacity: 0;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
    font-family: Urbanist;
    font-size: 16px;
    line-height: 1.5;
    color: #5D5D5D;
    margin-top: 10px;
    position: relative;
    z-index: 1000;
}

.objective-slide:hover .objective-slide-content {
    transform: translateY(-60px);
}

.objective-slide:hover .objective-slide-description {
    opacity: 1;
    transform: translateY(0);
}

.objective-slide-content h5 {

    color: #000;
    font-family: Urbanist;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
}

/* Responsive for values section */
@media (max-width: 992px) {
    .values-section {
        padding: 3rem 2rem;
    }

    .values-card {
        flex-direction: column;
        text-align: center;
    }

    .values-content p {
        max-width: 100%;
    }

    .values-list {
        column-count: 1;
        text-align: left;
        display: inline-block;
    }

    .values-icon {
        margin-top: 2rem;
    }
}

/* Activities and Investments Section */
.activities-investments-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.activities-investments-section .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 60px;
}

.activities-timeline {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    padding-left: 50px;
}

.activities-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 7px;
    background-color: #006337;
}

.activity-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.activity-item-content::before {
    content: '';
    position: absolute;
    left: -52.5px;
    top: 50%;
    transform: translateY(-50%);
    width: 53px;
    height: 53px;
    border-radius: 50%;
    background-color: #006337;
}

@media (max-width: 1024px) {
    .activity-item-content::before {
        content: '';
        position: absolute;
        left: -42.5px;
        top: 50%;
        transform: translateY(-50%);
        width: 53px;
        height: 53px;
        border-radius: 50%;
        background-color: #006337;
    }
}

.activity-content {
    margin-left: 30px;
}

.activity-content h3 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 8px;
}

.activity-content .subtitle {
    color: #131313;
    font-family: Urbanist;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.activity-content p {
    color: #131313;
    font-family: Urbanist;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.activity-image {
    justify-self: end;
}

.activity-image img {
    max-width: 440px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    height: 536px;
    object-fit: cover;
}

/* Responsive for Activities Section */
@media (max-width: 992px) {
    .timeline-content li {
        font-size: 14px !important;

    }

    .company-snapshot .snapshot-item {
        gap: 20px !important;
    }

    .company-snapshot .snapshot-item strong {
        font-size: 24px !important;
    }

    .company-snapshot .snapshot-item p {
        font-size: 16px !important;
    }

    .company-snapshot .snapshot-item span {
        font-size: 16px !important;
    }

    .vision-mission .info-card-single {
        flex-direction: column;
    }

    .vision-mission .info-card-single .values-list {
        grid-template-columns: 2fr;
    }

    .objectives-section {
        padding: 0 20px;
    }

    .snapshot-grid {
        grid-template-columns: 1fr;
    }

    .vision-mission {
        padding: 0 10px;
    }

    .activity-content {
        margin-left: 30px;

    }

    .activity-item {
        grid-template-columns: 1fr;
    }

    .activity-image {
        order: -1;
        /* Move image to the top on mobile */
        margin-bottom: 20px;
        margin-left: 30px;
    }
}

@media (max-width: 768px) {
    .activities-timeline {
        padding-left: 30px;
    }

    .activities-timeline::before {
        left: 10px;
    }

    .activity-item::before {
        left: -44px;
    }
}

@media (min-width: 1024px) and (max-width: 1670px) {
    .snapshot-info strong {
        font-size: 18px !important;
    }

    .snapshot-info span {
        font-size: 16px !important;
    }
}

.company-snapshot .section-header {
    display: block;
}

.company-snapshot .section-header h2 {
    color: #131313 !important;
}

.company-snapshot {
    border-radius: 24px;
    border: 2px solid rgba(0, 0, 0, 0.20);
    background: #FFF;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.16);
    padding-top: 58px;
    padding-bottom: 69px;
}

.vision-mission {
    padding: 0;
}

.company-container-section{
    padding-bottom: 0 !important;
}

