/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    /* Adjust margin to allow space for the logo and tagline */

}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    /* Remove top padding */
}

/* Slides Container */
.slides-container {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Individual Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Slide Content - Full width overlay */
.slide-content {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    color: white;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
}

.slide-content-inner {
    width: 65%;
    padding: 30px 7%;
    /* Remove margin-top that was pushing content down */
}

.slide-content h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 0.5s, transform 0.5s ease 0.5s;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.slide-content .btn {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 0.7s, transform 0.5s ease 0.7s;
    background-color: var(--primary-color);
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 204, 191, 0.3);
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.slide-content .btn:hover {
    background-color: #00b5a9;
    box-shadow: 0 6px 15px rgba(0, 204, 191, 0.4);
    transform: translateY(-3px);
}

.slide.active .slide-content h2,
.slide.active .slide-content p,
.slide.active .slide-content .btn {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Image - Full Cover */
.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Slider Navigation Dots */
.slider-navigation {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

.nav-dot.active::after {
    opacity: 1;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.slider-arrow:hover {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 204, 191, 0.3);
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .slide-content-inner {
        width: 74%;
        padding: 30px 9%;
    }

    .slide-content h2 {
        font-size: 2.4rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 991px) {
    .hero-slider {
        height: 500px;

    }

    .slide-content-inner {
        width: 84%;
        padding: 30px 13%;
    }

    .slide-content h2 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 450px;

    }

    .slide-content {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.3) 100%);
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .slide-content-inner {
        width: 90%;
        padding: 20px 5%;
    }

    .slide-content h2 {
        font-size: 1.8rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .slide-content p {
        font-size: 1rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 400px;
        /
    }

    .slide-content-inner {
        width: 100%;
        padding: 24px 18%;
    }

    .slide-content h2 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .slide-content p {
        font-size: 0.7rem;
        /*margin-bottom: 1rem;*/
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
    }

    .nav-dot {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
}

/* Scrolling Certifications Section */
.certifications-section {
    padding: 60px 0;
    background: #ffffff;
    overflow: hidden;
}

.certifications-header {
    text-align: center;
    margin-bottom: 40px;
}

.certifications-header h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.certifications-header p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Scrolling container */
.certifications-track {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.certifications-track::before,
.certifications-track::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.certifications-track::before {
    left: 0;
    background: linear-gradient(to right, white 0%, transparent 100%);
}

.certifications-track::after {
    right: 0;
    background: linear-gradient(to left, white 0%, transparent 100%);
}

.certifications-scroll {
    display: flex;
    animation: scroll-left 30s linear infinite;
    width: fit-content;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 25px;
    min-width: 100px;
}

.cert-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.cert-item:hover .cert-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.cert-label {
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

/* Pause on hover */
.certifications-track:hover .certifications-scroll {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .certifications-section {
        padding: 50px 0;
    }

    .cert-item {
        margin: 0 20px;
    }

    .cert-logo {
        width: 70px;
        height: 70px;
    }
}

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

    .certifications-header h2 {
        font-size: 1.75rem;
    }

    .cert-item {
        margin: 0 15px;
        min-width: 80px;
    }

    .cert-logo {
        width: 60px;
        height: 60px;
    }

    .cert-label {
        font-size: 0.8rem;
    }

    .certifications-scroll {
        animation-duration: 25s;
    }
}

@media (max-width: 576px) {

    .certifications-track::before,
    .certifications-track::after {
        width: 50px;
    }

    .cert-item {
        margin: 0 10px;
        min-width: 70px;
    }

    .cert-logo {
        width: 50px;
        height: 50px;
    }

    .cert-label {
        font-size: 0.75rem;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .certifications-scroll {
        animation: none;
    }
}



/* Base Styles for Distinctive Why Choose Us Section */
.distinctive-why-choose {
    padding: 50px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    --primary-color: #00CCBF;
    --secondary-color: #ffffff;
    --accent-color: #FF9E6D;
    --text-dark: #444444;
    --text-light: #898989;
}

/* Background Elements */
.background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.03;
}

.circle-1 {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -150px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: -150px;
}

.dotted-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary-color) 1px, transparent 1px);
    background-size: 25px 25px;
    opacity: 0.04;
}

/* Section Header */
.section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 70px;
    text-align: left;
    display: flex;
    justify-content: flex-start;
}

.header-content {
    position: relative;
    display: inline-block;
}

.title-accent {
    width: 60px;
    height: 5px;
    background-color: var(--primary-color);
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 120px;
    height: 2px;
    background-color: rgba(0, 204, 191, 0.3);
}

/* Distinctive Grid */
.distinctive-grid {
    position: relative;
    z-index: 1;
}

.grid-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.grid-row:last-child {
    margin-bottom: 0;
}

.bottom-row {
    margin-top: 50px;
}

/* Feature Cards */
.feature-card {
    flex: 1;
    position: relative;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.card-inner {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border-top: 5px solid transparent;
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.feature-card:hover .card-inner {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

/* Card Content */
.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: transform 0.4s ease, background-color 0.4s ease;
}

.feature-card:hover .icon-wrapper {
    transform: scale(1.1);
}

.quality-icon {
    background-color: rgba(0, 204, 191, 0.1);
}

.commitment-icon {
    background-color: rgba(0, 204, 191, 0.1);
}

.reliability-icon {
    background-color: rgba(0, 204, 191, 0.1);
}

.speed-icon {
    background-color: rgba(0, 204, 191, 0.1);
}

.range-icon {
    background-color: rgba(0, 204, 191, 0.1);
}

.feature-card:hover .quality-icon,
.feature-card:hover .commitment-icon,
.feature-card:hover .reliability-icon,
.feature-card:hover .speed-icon,
.feature-card:hover .range-icon {
    background-color: var(--primary-color);
}

.feature-icon {
    width: 35px;
    height: 35px;
    color: var(--primary-color);
    transition: color 0.4s ease;
}

.feature-card:hover .feature-icon {
    color: #ffffff;
}

.content-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-text {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Wide Cards */
.wide-card .card-inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.wide-card .icon-wrapper {
    margin-right: 25px;
    margin-bottom: 0;
    flex-shrink: 0;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .section-title {
        font-size: 2.5rem;
    }

    .feature-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 991px) {
    .distinctive-why-choose {
        padding: 80px 0;
    }

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

    .grid-row {
        flex-wrap: wrap;
        gap: 25px;
    }

    .top-row .feature-card {
        flex: 0 0 calc(50% - 25px);
    }

    .feature-card {
        margin-bottom: 25px;
    }

    .bottom-row {
        margin-top: 0;
    }

    .wide-card {
        flex: 0 0 100%;
    }
}

@media (max-width: 767px) {
    .distinctive-why-choose {
        padding: 70px 0;
    }

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

    .grid-row {
        flex-direction: column;
        gap: 30px;
    }

    .top-row .feature-card {
        flex: 0 0 100%;
    }

    .wide-card .card-inner {
        flex-direction: column;
    }

    .wide-card .icon-wrapper {
        margin-right: 0;
        margin-bottom: 25px;
    }
}

@media (max-width: 575px) {
    .distinctive-why-choose {
        padding: 60px 0;
    }

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

    .title-accent {
        width: 50px;
        height: 4px;
    }

    .card-inner {
        padding: 25px 20px;
    }

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

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

    .feature-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
}


/* Journey Section Styles */
.journey-section {
    /* padding: 100px 0; */
    background-color: #ffffff;
    /* White background - 30% */
    position: relative;
    overflow: hidden;
}

/* Create teal wave background effect */
.journey-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(0, 204, 191, 0.05);
    /* Very light teal - 60% */
    z-index: 0;
}

.journey-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: rgba(0, 204, 191, 0.03);
    /* Very light teal - 60% */
    z-index: 0;
}

/* Typography */
.journey-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.journey-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    width: 60px;
    background-color: var(--primary-color);
    /* Teal accent - 60% */
}

.journey-title {
    color: var(--primary-color);
    /* Teal - 60% */
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    margin-top: 20px;
}

.journey-description {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Timeline Wrapper */
.timeline-wrapper {
    position: relative;
    padding: 50px 0;
    max-width: 1000px;
    margin: 0 auto;
}

/* Timeline Progress Bar */
.timeline-progress {
    position: relative;
    height: 120px;
    margin-bottom: 50px;
}

.progress-line {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #eeeeee;
    z-index: 1;
}

.progress-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    /* Start at 0%, will be animated with JS */
    height: 100%;
    background-color: var(--primary-color);
    /* Teal - 60% */
    transition: width 0.5s ease, height 0.5s ease;
}

/* Year Markers */
.year-markers {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 2;
}

.year-mark {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

/* Click instruction tooltip */
.year-mark:first-child::before {
    content: 'Click to explore our journey';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-10%);
    background-color: rgba(0, 204, 191, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: pulseTooltip 2s infinite;
}

.year-mark:first-child:hover::before {
    opacity: 1;
    visibility: visible;
    animation: none;
}

@keyframes pulseTooltip {
    0% {
        opacity: 0;
        visibility: hidden;
    }

    50% {
        opacity: 1;
        visibility: visible;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

.year-point {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 3px solid #dddddd;
    margin-bottom: 15px;
    margin-top: 42px;
    transition: all 0.3s ease;
}

.year-mark span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light);
    transition: all 0.3s ease;
}

/* Active year state */
.year-mark.active .year-point {
    border-color: var(--primary-color);
    /* Teal - 60% */
    background-color: #ffffff;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(0, 204, 191, 0.3);
}

.year-mark.active span {
    color: var(--primary-color);
    /* Teal - 60% */
    font-weight: 600;
}

.year-mark:hover .year-point {
    transform: scale(1.15);
}

/* Timeline Content */
.timeline-content {
    position: relative;
    min-height: 280px;
}

.timeline-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    transform: translateY(20px);
}

.timeline-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Progress indicator for auto-rotation */
.slide-progress {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #eeeeee;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 30px;
}

.slide-progress-bar {
    height: 100%;
    width: 0%;
    background-color: var(--primary-color);
    transition: width 0.1s linear;
}

/* Navigation controls */
.timeline-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    gap: 15px;
}

.timeline-control-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-control-btn:hover {
    color: var(--primary-color);
}

.timeline-pause-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 204, 191, 0.3);
}

.timeline-pause-btn:hover {
    background-color: #00a99e;
    color: white;
}

/* Timeline Cards */
.timeline-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border: 1px solid rgba(0, 204, 191, 0.1);
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.timeline-card-inner {
    position: relative;
    padding: 40px;
    padding-left: 120px;
}

/* Timeline Icons */
.timeline-icon {
    position: absolute;
    left: 40px;
    top: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00a99e 100%);
    /* Teal gradient - 60% */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 204, 191, 0.3);
}

/* Timeline Event Content */
.timeline-event-title {
    color: var(--text-dark);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-event-description {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Custom Button */
.btn-view-details {
    display: inline-block;
    background-color: var(--accent-color);
    /* Peach - 10% */
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(255, 158, 109, 0.3);
}

.btn-view-details:hover {
    background-color: #ff8a50;
    /* Darker peach on hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 158, 109, 0.4);
    color: white;
    text-decoration: none;
}

/* Unique color for each year card */
[data-year="2021"] .timeline-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, #00a99e 100%);
    /* Teal */
}

[data-year="2022"] .timeline-icon {
    background: linear-gradient(135deg, #4DB6AC 0%, #26A69A 100%);
    /* Teal variant */
}

[data-year="2023"] .timeline-icon {
    background: linear-gradient(135deg, #00BFA5 0%, #00897B 100%);
    /* Teal variant */
}

[data-year="2024"] .timeline-icon {
    background: linear-gradient(135deg, #26C6DA 0%, #00ACC1 100%);
    /* Teal-blue */
}

[data-year="2025"] .timeline-icon {
    background: linear-gradient(135deg, var(--accent-color) 0%, #FF7043 100%);
    /* Peach - 10% */
}

/* Responsive Styles */
@media (max-width: 991px) {
    .journey-title {
        font-size: 2.3rem;
    }

    .timeline-card-inner {
        padding: 30px;
        padding-left: 100px;
    }

    .timeline-icon {
        left: 30px;
        top: 30px;
        width: 50px;
        height: 50px;
    }

    .timeline-icon svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 767px) {
    .journey-section {
        padding: 70px 0;
    }

    .journey-title {
        font-size: 2rem;
    }

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

    .year-mark span {
        font-size: 0.9rem;
    }

    .timeline-event-title {
        font-size: 1.4rem;
    }

    .timeline-card-inner {
        padding: 25px;
        padding-top: 90px;
    }

    .timeline-icon {
        left: 25px;
        top: 25px;
    }

    /* Stack the icon above title on mobile */
    .timeline-icon {
        left: 50%;
        top: 25px;
        transform: translateX(-50%);
    }
}

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

    .year-markers {
        justify-content: space-between;
    }

    .year-mark {
        margin: 0 5px;
    }

    .year-mark span {
        font-size: 0.8rem;
    }

    .timeline-content {
        min-height: 320px;
    }

    .timeline-card-inner {
        text-align: center;
    }
}


/* Products Section Styles */
.products-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

/* Section Title Styling */
.pre-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.title-decoration {
    width: 80px;
    height: 4px;
    margin: 0 auto 20px;
    position: relative;
}

.title-decoration span {
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    position: relative;
}

.title-decoration span:before,
.title-decoration span:after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
    top: -2px;
}

.title-decoration span:before {
    left: -10px;
}

.title-decoration span:after {
    right: -10px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Product Card Styling */
.product-card {
    perspective: 1000px;
    height: 320px;
}

.product-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.product-card:hover .product-card-inner {
    transform: rotateY(180deg);
}

.product-front,
.product-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.product-front {
    background-color: white;
    display: flex;
    flex-direction: column;
}

.product-back {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(0, 204, 191, 0.8) 100%);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Product Image */
.product-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: rgba(0, 204, 191, 0.05);
    border-bottom: 1px solid rgba(0, 204, 191, 0.1);
}

.division-icon {
    width: 160px;
    height: 160px;
    background-color: var(--primary-color);
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.icon-svg {
    width: 140px;
    height: 140px;
    fill: white;
}

/* Product Content */
.product-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title {
    margin: 0 0 5px;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-dark);
}

.product-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.btn-explore {
    display: inline-block;
    padding: 8px 20px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-explore:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Back Content Styling */
.back-content {
    width: 100%;
}

.back-content h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 600;
}

.product-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    text-align: left;
}

.product-list li {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.product-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.product-list a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: block;
    padding: 5px;
}

.product-list a:hover {
    padding-left: 10px;
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-back {
    display: inline-block;
    padding: 8px 20px;
    background-color: white;
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-back:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* View All Button */
.btn-view-all {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 204, 191, 0.3);
}

.btn-view-all:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 158, 109, 0.4);
}

/* Division Specific Colors */
.product-card[data-division="cocoon"] .division-icon {
    background-color: #00CCBF;
}

.product-card[data-division="cradle"] .division-icon {
    background-color: #00B8A9;
}

.product-card[data-division="budding"] .division-icon {
    background-color: #00A299;
}

.product-card[data-division="trust"] .division-icon {
    background-color: #008C82;
}

.product-card[data-division="feedfort"] .division-icon {
    background-color: #007671;
}

.product-card[data-division="florish"] .division-icon {
    background-color: #006660;
}

.product-card[data-division="natural"] .division-icon {
    background-color: #005650;
}

/* Hover Effects */
.product-card:hover {
    z-index: 1;
}

/* Animation for card flip */
@keyframes cardEntrance {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

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

.product-card {
    animation: cardEntrance 0.5s ease forwards;
    opacity: 0;
}

.product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.3s;
}

.product-card:nth-child(4) {
    animation-delay: 0.4s;
}

.product-card:nth-child(5) {
    animation-delay: 0.5s;
}

.product-card:nth-child(6) {
    animation-delay: 0.6s;
}

.product-card:nth-child(7) {
    animation-delay: 0.7s;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

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

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

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }

    .product-card {
        height: 300px;
    }

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

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

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .product-card {
        height: 280px;
    }

    .product-image {
        height: 140px;
    }

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

    .icon-svg {
        width: 30px;
        height: 30px;
    }

    .product-title {
        font-size: 1.2rem;
    }

    .product-category {
        font-size: 0.7rem;
    }

    .btn-explore {
        padding: 6px 15px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        height: 260px;
    }
}


/* Global Presence Section Styles */
.global-presence {
    position: relative;
    background-color: var(--secondary-color);
    padding: 60px 0;
}

.section-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.map-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    background-color: #f8f9fa;
}

.world-map {
    width: 100%;
    height: 100%;
    background-color: #f1f8f7;
}

.map-legend {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.legend-item:last-child {
    margin-bottom: 0;
}

.legend-dot {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
}

.legend-text {
    font-size: 0.85rem;
    color: var(--text-dark);
}

.map-stats {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.stat-item {
    margin-right: 20px;
    text-align: center;
}

.stat-item:last-child {
    margin-right: 0;
}

.stat-item h3 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0;
}

.stat-item p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
    white-space: nowrap;
}

.presence-card {
    background-color: white;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.presence-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.presence-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 204, 191, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.presence-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.presence-card h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.presence-card p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .map-container {
        height: 400px;
    }

    .map-stats {
        flex-direction: column;
        top: 20px;
        left: 20px;
        right: auto;
    }

    .stat-item {
        margin-right: 0;
        margin-bottom: 10px;
        text-align: left;
    }

    .stat-item:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .map-container {
        height: 350px;
    }

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

    .map-legend,
    .map-stats {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 15px;
    }

    .map-stats {
        flex-direction: row;
        justify-content: space-around;
        padding: 15px;
    }

    .map-legend {
        display: flex;
        justify-content: center;
        margin-bottom: 15px;
    }

    .legend-item {
        margin-bottom: 0;
        margin-right: 15px;
    }
}

@media (max-width: 576px) {
    .map-container {
        height: 300px;
    }

    .presence-card {
        padding: 20px 15px;
    }

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

    .presence-icon i {
        font-size: 24px;
    }

    .presence-card h4 {
        font-size: 1.1rem;
    }
}


/* Blog Section Styles */
    .blog-section {
        padding: 80px 0;
        background-color: var(--secondary-color);
    }
    
    .section-title {
        color: var(--text-dark);
        font-weight: 700;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }
    
    .section-title:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background-color: var(--primary-color);
    }
    
    .section-subtitle {
        color: var(--text-light);
        margin-bottom: 40px;
    }
    
    /* Blog Card Styles */
    .blog-card {
        background-color: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        height: 100%;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .blog-card-link {
        text-decoration: none;
        color: inherit;
        display: block;
        height: 100%;
    }
    
    .blog-image-wrapper {
        position: relative;
        overflow: hidden;
        padding-top: 65%; /* Aspect ratio for image */
    }
    
    .blog-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .blog-card:hover .blog-image {
        transform: scale(1.05);
    }
    
    .category-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background-color: var(--primary-color);
        color: white;
        padding: 5px 12px;
        border-radius: 30px;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 600;
    }
    
    .blog-content {
        padding: 25px 20px;
    }
    
    .blog-title {
        font-size: 1.15rem;
        margin-bottom: 12px;
        color: var(--text-dark);
        font-weight: 600;
        line-height: 1.4;
        transition: color 0.3s ease;
    }
    
    .blog-card:hover .blog-title {
        color: var(--primary-color);
    }
    
    .blog-excerpt {
        font-size: 0.9rem;
        color: var(--text-light);
        margin-bottom: 15px;
        line-height: 1.6;
    }
    
    .blog-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #f0f0f0;
        padding-top: 15px;
        font-size: 0.85rem;
    }
    
    .blog-date {
        color: var(--text-light);
    }
    
    .read-more {
        color: var(--primary-color);
        font-weight: 600;
        display: flex;
        align-items: center;
    }
    
    .read-more:after {
        content: '→';
        margin-left: 5px;
        transition: transform 0.3s ease;
    }
    
    .blog-card:hover .read-more:after {
        transform: translateX(3px);
    }
    
    /* Button Styles */
    .btn-primary {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        padding: 10px 28px;
        border-radius: 30px;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
        background-color: transparent;
        color: var(--primary-color);
        box-shadow: 0 5px 15px rgba(0, 204, 191, 0.2);
    }
    
    /* Responsive Adjustments */
    @media (max-width: 991px) {
        .blog-title {
            font-size: 1.1rem;
        }
    }
    
    @media (max-width: 767px) {
        .blog-section {
            padding: 60px 0;
        }
        
        .blog-image-wrapper {
            padding-top: 60%;
        }
    }
    
    @media (max-width: 576px) {
        .section-title {
            font-size: 1.5rem;
        }
        
        .blog-content {
            padding: 20px 15px;
        }
    }