* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.divider {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #000000, green, #ff9900, #ff0000, #000000);
    margin: 0.1rem auto 2rem auto !important;
    border-radius: 3px;
}

.journey-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.button-group-2 {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin: 0;
}

.btn-2 {
    display: inline-block;
    background-color: var(--primary-blue);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.btn-2::before,
.btn-2::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            #000000,
            green,
            #ff9900,
            #ff0000,
            #000000);
    transform: scaleX(0);
    transition: transform 0.5s ease-out;
    z-index: 1;
}

.btn-2::before {
    top: -6px;
    transform-origin: right center;
}

.btn-2::after {
    bottom: -6px;
    transform-origin: left center;
}

.btn-2:hover {
    color: black;
    background-color: transparent;
    box-shadow: none;
    font-size: 1.1rem;
}

.btn-2:hover::before {
    transform: scaleX(1);
    transition-delay: 0.1s;
}

.btn-2:hover::after {
    transform: scaleX(1);
    transition-delay: 0.15s;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 5rem auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-blue), #34a853);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 4px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    box-sizing: border-box;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background: linear-gradient(45deg, var(--primary-blue), #34a853);
    border-radius: 50%;
    top: 30px;
    z-index: 1;
}

.left {
    width: calc(50% + 150px);
    left: -150px;
    text-align: center;
}

.right {
    width: calc(50% + 150px);
    left: 50%;
    text-align: center;
}

.left::after {
    right: -12px;
}

.right::after {
    left: -12px;
}

.timeline-content-wrapper {
    position: relative;
    padding: 3px;
    border-radius: 15px;
    background: transparent;
}

.timeline-content {
    padding: 12px;
    background: linear-gradient(135deg, #ecfefc, #e0f2fe);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 2.3px solid transparent;
    box-sizing: border-box;
    transition: border-color 0s;
}

.timeline-content:hover {
    border-color: var(--primary-blue);
    transform: none;
}

.timeline-date {
    font-weight: 600;
    color: black;
    margin-bottom: 12px;
    font-size: 1.35rem;
    display: inline-block;
    border-bottom: 2.4px solid #0077b6;
    padding-bottom: 2px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.mission,
.vision {
    position: relative;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mission::before,
.vision::before,
.mission::after,
.vision::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.mission::before {
    border-top-color: #34a853;
    border-right-color: #34a853;
    top: 0;
    right: 0;
}

.vision::before {
    border-top-color: var(--primary-blue);
    border-right-color: var(--primary-blue);
    top: 0;
    right: 0;
}

.mission::after {
    border-bottom-color: #34a853;
    border-left-color: #34a853;
    bottom: 0;
    left: 0;
}

.vision::after {
    border-bottom-color: var(--primary-blue);
    border-left-color: var(--primary-blue);
    bottom: 0;
    left: 0;
}

.mission:hover,
.vision:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    animation: subtlePulse 3s ease infinite;
}

.mission:hover::before,
.mission:hover::after,
.vision:hover::before,
.vision:hover::after {
    width: 100%;
    height: 100%;
    border-width: 2px;
    opacity: 1;
}

.mission:hover::before,
.mission:hover::after {
    border-color: #34a853;
}

.vision:hover::before,
.vision:hover::after {
    border-color: var(--primary-blue);
}

.mission h2,
.vision h2 {
    color: black;
}

.mission:hover h2,
.vision:hover h2 {
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
}

@keyframes subtlePulse {

    0%,
    100% {
        background-color: white;
    }

    50% {
        background-color: #f8f9fa;
    }
}

@media (max-width: 1024px) {
    .section-header h1 {
        font-size: 2.5rem;
    }

    .journey-content {
        font-size: 1.2rem;
    }

    .mission h2,
    .vision h2 {
        font-size: 1.8rem;
    }

    .mission p,
    .vision p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 7rem 5% 5rem;
    }

    .section-header h1 {
        font-size: 2.2rem;
    }

    .timeline::after {
        left: 33px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 21px;
    }

    .left,
    .right {
        left: 0;
        text-align: left;
    }

    .mission-vision {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission,
    .vision {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .section-header h1 {
        font-size: 2rem;
    }

    .journey-content {
        font-size: 1.1rem;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-content h3 {
        font-size: 1.3rem;
    }

    .timeline-content p {
        font-size: 1rem;
    }

    .mission h2,
    .vision h2 {
        font-size: 1.5rem;
    }
}

.values {
    position: relative;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.values::before,
.values::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.values::before {
    border-top-color: #ff3b30;
    border-right-color: #ff3b30;
    top: 0;
    right: 0;
}

.values::after {
    border-bottom-color: #ff3b30;
    border-left-color: #ff3b30;
    bottom: 0;
    left: 0;
}

/* Hover Effects (Red) */
.values:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    animation: subtlePulse 3s ease infinite;
}

.values:hover::before,
.values:hover::after {
    width: 100%;
    height: 100%;
    border-width: 2px;
    opacity: 1;
    border-color: #ff3b30;
}


.values h2 {
    color: black;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.values p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}


.values:hover h2 {
    transition: all 0.4s ease;
    letter-spacing: 0.5px;
}


@media (max-width: 1024px) {
    .values {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .values {
        width: 90%;
        padding: 1.1rem;
    }

    .values h2 {
        font-size: 1.5rem;
    }

    .values p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .values {
        width: 95%;
        padding: 1rem;
    }

    .values h2 {
        font-size: 1.4rem;
    }

    .values p {
        font-size: 0.95rem;
    }
}


.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}


.sustainability-modal .modal-container {
    width: 90vw;
    height: 90vh;
    max-width: 1400px;
    max-height: 900px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}


.modal-header {
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}


.modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #666;
    padding: 0.5rem;
    position: absolute;
    right: 1rem;
    top: 1rem;
    z-index: 2;
}

.sustainability-content {
    background: linear-gradient(135deg, #f5fff5 0%, #e8f5e9 100%);
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: calc(100% - 60px);
    /* Ensures content never exceeds container */
}

.sdg-title {
    text-align: center;
    margin: 0 0 2rem;
    color: #2e7d32;
    font-size: 2.2rem;
}

.sdg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    flex: 1;
    padding: 0 1rem;
    max-height: 60vh;
    margin: 0 auto;
    overflow-y: auto;
}

.sdg-grid img {
    width: 100%;
    height: 100%;
    max-width: 160px;
    max-height: 160px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin: auto;
    display: block;
}

.sdg-grid img:hover {
    transform: scale(1.03);
}

@media (max-width: 1200px) {
    .sdg-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 2rem;
        padding: 0 2rem 3rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 900px) {
    .sdg-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 1.8rem;
        padding: 0 2rem 3rem;
        margin-bottom: 1rem;
    }

    .sustainability-modal .modal-container {
        width: 95vw;
        height: 95vh;
        overflow-y: auto;
        padding-bottom: 2rem;
    }
}

@media (max-width: 600px) {
    .sdg-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(4, auto);
        gap: 1.5rem;
        padding: 0 1.5rem 2.5rem;
        margin-bottom: 1rem;
        width: 90%;
    }

    .sdg-grid img {
        max-width: 130px;
        max-height: 130px;
        width: auto;
    }

    .sustainability-modal .modal-container {
        width: 100vw;
        height: 100vh;
        max-height: none;
        border-radius: 0;
        overflow-y: auto;
        padding-bottom: 4rem;
    }

    .sustainability-content {
        padding: 1rem 0.5rem 2rem;
        overflow-y: auto;
    }
}


@media (max-width: 400px) {
    .sdg-grid {
        gap: 1.2rem;
        padding: 0 1rem 2rem;
        margin-bottom: 0.5rem;
    }

    .sdg-grid img {
        max-width: 110px;
        max-height: 110px;
    }

    .sustainability-content {
        padding: 0.5rem 0.5rem 1.5rem;
    }

    .sustainability-modal .modal-container {
        padding-bottom: 3rem;
    }
}


.partners-toggle-sectionb {
    padding: 2rem 1rem;
    background-color: white;
}

.containerb {
    max-width: 1200px;
    margin: 0 auto;
}


.section-titleb::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #3498db;
    margin: 1rem auto 0;
    border-radius: 2px;
}

.toggle-window-containerb {
    background: white;
    border-radius: 12px;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.05),
        0 8px 25px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.toggle-buttonsb {
    display: flex;
    background-color: white;
    padding: 0 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.toggle-btnb {
    padding: 1.2rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    background-color: transparent;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
    margin-right: 1rem;
}

.toggle-btnb:hover {
    color: #3498db;
}

.toggle-btnb.activeb {
    color: #3498db;
}

.toggle-btnb.activeb::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #3498db;
}

.content-windowb {
    background-color: white;
    padding: 2.5rem 2rem;
    min-height: 300px;
}

@media (max-width: 767px) {
    .toggle-btnb.activeb::after {
        content: none;
    }
}

.logo-gridb {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.logo-containerb {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.logo-containerb:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.15);
    border-color: rgba(52, 152, 219, 0.1);
}

@media (max-width: 768px) {
    .toggle-buttonsb {
        flex-direction: column;
        padding: 0;
    }

    .toggle-btnb {
        width: 100%;
        margin-right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .toggle-btnb.activeb::after {
        width: 4px;
        height: 100%;
        left: 0;
        bottom: auto;
    }
}

.content-paneb {
    display: none;
    animation: fadeInb 0.5s ease;
}

.content-paneb.activeb {
    display: block;
}

/* Logo Grid */
.logo-gridb {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    place-items: center;
}

.logo-containerb {
    width: 100%;
    max-width: 220px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
}

.logo-containerb:hover {
    transform: scale(1.05);
}

.logo-containerb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Animations */
@keyframes fadeInb {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .toggle-buttonsb {
        flex-direction: column;
        align-items: center;
        padding: 1rem 0 0;
    }

    .toggle-btnb {
        width: 100%;
        max-width: 250px;
        border-radius: 0;
        padding: 0.8rem;
    }

    .logo-gridb {
        grid-template-columns: 1fr;
    }
}

.kardle-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    animation: kardleFadeIn 0.3s ease-out;
    overflow: hidden;
}

.kardle-modal-container {
    position: relative;
    width: 90%;
    max-width: 800px;
    height: 80vh;
    background: white;
    border-radius: 10px;
    padding: 30px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    animation: kardleSlideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.kardle-modal-header {
    text-align: center;
    margin-bottom: 25px;
    flex-shrink: 0;
    width: 100%;
}

.kardle-modal-title {
    color: #222;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.kardle-title-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background:
        linear-gradient(90deg,
            transparent 0%,
            #0066ff 20%,
            #00a1ff 50%,
            #0066ff 80%,
            transparent 100%);
    background-size: 200% 100%;
    border-radius: 2px;
    transition: all 0.4s ease;
    transform: scaleX(0.7);
}

.kardle-modal-header:hover .kardle-title-underline {
    transform: scaleX(0.9);
    background-position: 100% 0;
}

.kardle-scroll-container {
    flex: 1;
    overflow-y: auto;
    padding: 5px 15px 5px 5px;
    margin: -5px;
}

.kardle-achievements-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 10px 0;
}

.kardle-achievement-item {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.kardle-achievement-badge {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 118, 255, 0.25);
    position: relative;
    z-index: 1;
}

.kardle-achievement-card {
    flex: 1;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    min-height: 60px;
    display: flex;
    align-items: center;
    border-left: 3px solid #0066ff;
}

.kardle-achievement-text {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.5;
}

.kardle-achievement-year {
    color: #666;
    font-size: 0.85rem;
    margin-top: 4px;
    font-style: italic;
}

.kardle-achievement-item:hover .kardle-achievement-badge {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 118, 255, 0.35);
    background: linear-gradient(135deg, #005ce6, #00c2e6);
    cursor: pointer;
}

.kardle-achievement-item:hover .kardle-achievement-card {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: white;
    border-left-width: 4px;
    cursor: pointer;
}

.kardle-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: transparent;
    color: #999;
    border: none;
    width: 36px;
    height: 36px;
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.kardle-modal-close:hover {
    color: #333;
    transform: rotate(90deg);
    cursor: pointer;
}

@keyframes kardleFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes kardleSlideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.kardle-scroll-container {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.kardle-scroll-container::-webkit-scrollbar {
    width: 6px;
}

.kardle-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.kardle-scroll-container::-webkit-scrollbar-thumb {
    background: #0066ff;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .kardle-modal-container {
        width: 92%;
        padding: 25px 30px;
        height: 85vh;
    }

    .kardle-modal-title {
        font-size: 1.6rem;
    }

    .kardle-achievements-list {
        gap: 20px;
    }

    .kardle-achievement-badge {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }

    .kardle-achievement-card {
        padding: 14px 18px;
    }

    .kardle-achievement-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .kardle-modal-container {
        padding: 20px 15px;
        height: 90vh;
        width: 95%;
    }

    .kardle-modal-title {
        font-size: 1.4rem;
        padding-bottom: 10px;
    }

    .kardle-title-underline {
        width: 100%;
        height: 3px;
    }

    .kardle-achievement-item {
        gap: 15px;
    }

    .kardle-achievement-badge {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .kardle-achievement-card {
        padding: 12px 16px;
        min-height: 55px;
    }

    .kardle-achievement-text {
        font-size: 0.95rem;
    }

    .kardle-modal-close {
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        font-size: 1.4rem;
    }
}

@media (max-width: 400px) {
    .kardle-modal-title {
        font-size: 1.3rem;
        padding-bottom: 8px;
    }

    .kardle-achievement-text {
        font-size: 0.92rem;
    }

    .kardle-achievement-year {
        font-size: 0.8rem;
    }
}


#awards-btn {
    cursor: pointer;
}


.investors-section {
    padding: 40px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.investors-heading {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: #333;
    font-weight: 600;
}

.investors-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .investors-slider {
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .investors-track {
        display: flex;
        animation: scroll 30s linear infinite;
        width: max-content;
    }

    .investors-slider:hover .investors-track {
        animation-play-state: paused;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .desktop-only {
        display: block;
    }
}



@media screen and (max-width: 768px) {
    .button-group-2 {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .button-group-2 .btn-2 {
        width: 100%;
    }
}