        /* --- Our Story Section Scoped CSS --- */
        .our-story-section {
            padding: 100px 20px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .story-top-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 60px;
        }

        .story-image-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .story-image {
            width: 100%;
            max-width: 480px;
            aspect-ratio: 1 / 1;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .story-content h2 {
            color: #0b5ed7;
            font-size: 5rem;
            font-weight: 700;
            margin-top: 0;
            margin-bottom: 25px;
            letter-spacing: -0.5px;
        }

        .story-content p {
            color: #4a4a4a;
            line-height: 1.8;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .story-content .bold-paragraph {
            margin-top: 30px;
        }

        .story-content strong {
            color: #1a1a1a;
            font-weight: 700;
        }

        .story-content a {
            color: #0b5ed7;
            text-decoration: none;
            font-weight: 700;
        }

        .story-content a:hover {
            text-decoration: underline;
        }

        .story-bottom-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .feature-box {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background-color: #0b5ed7;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon svg {
            width: 32px;
            height: 32px;
            stroke: #ffffff;
            fill: none;
        }

        .feature-text h3 {
            margin-top: 0;
            margin-bottom: 12px;
            font-size: 2.6rem;
            color: #1a1a1a;
            font-weight: 700;
        }

        .feature-text p {
            color: #4a4a4a;
            line-height: 1.7;
            margin: 0;
            font-size: 1.5rem;
        }

        .fade-in-element {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .fade-in-element.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 900px) {
            .story-top-row {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
            .story-image {
                max-width: 400px;
            }
            .story-content h2 {
                font-size: 3rem;
            }
            .story-bottom-row {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .feature-box {
                text-align: left;
            }
        }

        @media (max-width: 480px) {
            .story-image {
                max-width: 300px;
            }
            .feature-box {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        }

/* --- Task / HR Section CSS --- */
    .hr-section {
        width: 100%;
        padding: 100px 20px;
        overflow: hidden; 
        background-color: #2887b3; /* Matching the blue background in your image */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hr-container {
        position: relative;
        max-width: 1100px;
        margin: 0 auto;
        width: 100%;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .hr-container.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .hr-content-card {
        background-color: #ffffff;
        border-radius: 40px;
        width: 75%; 
        padding: 80px 30% 80px 80px; 
        position: relative;
        z-index: 1;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .hr-content-card h2 {
        font-size: 42px;
        color: #1a1a1a;
        line-height: 1.2;
        margin-bottom: 25px;
        font-weight: 700;
        margin-top: 0;
    }

    .hr-content-card p {
        font-size: 16px;
        color: #4a4a4a;
        line-height: 1.6;
        margin-bottom: 40px;
    }

    .read-more-btn {
        display: inline-block;
        background-color: #2887b3;
        color: #ffffff;
        text-decoration: none;
        padding: 16px 36px;
        border-radius: 8px; 
        font-weight: 700;
        font-size: 14px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        transition: all 0.3s ease;
        border: none;
    }

    .read-more-btn:hover {
        background-color: #1a5a7a;
        transform: translateY(-2px);
    }

    .hr-image-card {
        position: absolute;
        right: 0;
        top: 50%; 
        transform: translateY(-50%);
        width: 45%;
        aspect-ratio: 1 / 1; /* Forces square shape */
        border-radius: 40px;
        overflow: hidden;
        z-index: 2;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .hr-image-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    @media (max-width: 768px) {
        .hr-content-card {
            width: 100%;
            padding: 40px 30px 200px 30px;
        }
        .hr-image-card {
            position: relative;
            top: auto;
            right: auto;
            transform: none;
            width: 80%;
            margin: -150px auto 0 auto;
        }
    }

        @media (max-width: 768px) {
            .hr-section {
                padding: 60px 20px;
            }
            .hr-container {
                display: flex;
                flex-direction: column;
                align-items: center;
                padding-bottom: 0;
            }
            .hr-content-card {
                width: 100%;
                padding: 50px 40px 120px 40px; 
                border-radius: 30px;
            }
            .hr-image-card {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .hr-content-card {
                padding: 40px 25px 100px 25px;
            }
            .hr-content-card h2 {
                font-size: 28px;
            }
        }

        /* --- Leadership Section CSS --- */
        .leadership-section {
            padding-top: 50px;
            width: 100%;
            display: flex;
            justify-content: center;
            background-color: #ffffff;
            overflow-x: hidden; 
        }

        .leadership-section.bg-light {
            background-color: #f9f9f9;
        }

        .leadership-container {
            max-width: 1100px;
            width: 100%;
            display: flex;
            align-items: center;
            gap: 60px;
            margin: 0 auto;
        }

        @keyframes slideUpFade {
            0% { opacity: 0; transform: translateY(60px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideLeftFade {
            0% { opacity: 0; transform: translateX(60px); }
            100% { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideRightFade {
            0% { opacity: 0; transform: translateX(-60px); }
            100% { opacity: 1; transform: translateX(0); }
        }

        .image-col {
            flex: 0.8;
            display: flex;
            justify-content: flex-end; 
            align-items: flex-end;
            opacity: 0; 
        }

        .image-col.align-start {
            justify-content: flex-start; 
        }

        .image-col.animate {
            animation: slideUpFade 0.8s ease-out forwards;
        }

        .image-col img {
            width: 100%;
            max-width: 400px;
            height: auto;
            object-fit: contain;
            background-color: transparent;
        }

        .content-col {
            flex: 1.2;
            display: flex;
            flex-direction: column;
            gap: 35px;
            opacity: 0;
        }

        .content-col.animate {
            animation: slideLeftFade 0.8s ease-out 0.2s forwards;
        }

        .content-col.slide-from-left.animate {
            animation: slideRightFade 0.8s ease-out 0.2s forwards;
        }

        .quote-box {
            font-size: 28px;
            color: #555555;
            font-weight: 300;
            line-height: 1.5;
            position: relative;
            display: inline-block;
        }

        .quote-icon {
            display: inline-block;
            vertical-align: top;
            margin-top: 5px;
        }

        .quote-icon.blue, .quote-icon.orange {
            margin-right: 10px;
        }

        .quote-icon.green {
            margin-left: 10px;
            vertical-align: bottom;
            margin-bottom: -5px;
        }

        .author-info {
            padding-left: 20px;
        }

        .author-info.blue-theme {
            border-left: 3px solid #2887b3;
        }

        .author-info.orange-theme {
            border-left: 3px solid #2887b3;
        }

        .author-info h2 {
            font-size: 28px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 5px;
            margin-top: 0;
        }

        .author-info p {
            font-size: 16px;
            color: #555555;
            font-weight: 500;
            margin-bottom: 0;
        }

        .button-group {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .leadership-btn {
            padding: 14px 28px;
            font-size: 16px;
            font-weight: 700;
            border-radius: 6px;
            cursor: pointer;
            background-color: transparent;
            transition: all 0.3s ease;
        }

        .btn-blue {
            border: 1px solid #2887b3;
            color: #2887b3;
        }

        .btn-blue:hover {
            background-color: #2887b3;
            color: #ffffff;
        }

        .btn-orange {
            border: 1px solid #2887b3;
            color: #2887b3;
        }

        .btn-orange:hover {
            background-color: #2887b3;
            color: #ffffff;
        }

        .btn-green {
            border: 1px solid #5ba14a;
            color: #5ba14a;
        }

        .btn-green:hover {
            background-color: #5ba14a;
            color: #ffffff;
        }

        #toast-container {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 9999;
        }

        .toast {
            background-color: #333;
            color: #fff;
            padding: 12px 24px;
            border-radius: 4px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            font-size: 14px;
            opacity: 0;
            transform: translateY(20px);
            animation: slideIn 0.3s forwards;
        }

        @media (max-width: 900px) {
            .leadership-container {
                flex-direction: column;
                text-align: left;
                gap: 40px;
            }
            .image-col {
                order: 1;
                justify-content: center !important;
                width: 100%;
            }
            .content-col {
                order: 2;
            }
            .author-info {
                order: 1;
                border-left: none !important;
                padding-left: 0;
                padding-top: 20px;
            }
            .author-info.blue-theme {
                border-top: 3px solid #2887b3;
            }
            .author-info.orange-theme {
                border-top: 3px solid #ff7b25;
            }
            .button-group {
                order: 2;
                display: flex;
                flex-direction: row;
                flex-wrap: nowrap;
                justify-content: space-between;
                gap: 10px;
                width: 100%;
            }
            .quote-box {
                order: 3;
                font-size: 24px;
            }
            .leadership-btn {
                flex: 1;
                padding: 12px 5px;
                font-size: 14px;
                text-align: center;
                display: flex;
                justify-content: center;
                align-items: center;
            }
        }
        
        /* --- Project Declaration / Management Mobile Fix --- */
        @media (max-width: 768px) {
            .ask-box {
                padding: 30px 20px !important; /* Decrease side padding to widen content */
            }
            .ask-info {
                padding: 0 !important;
            }
            .ask-info h2.text-white {
                font-size: 26px !important;
                line-height: 1.3;
                white-space: nowrap; /* Keep heading on one line */
            }
            .ask-info p.text-white {
                font-size: 16px !important;
                line-height: 1.6;
            }
            .ask-question .container {
                padding-left: 15px !important;
                padding-right: 15px !important;
            }
        }

        @media (max-width: 480px) {
            .ask-box {
                padding: 25px 15px !important; /* Extremely minimal padding on very small screens */
            }
            .ask-info h2.text-white {
                font-size: 23px !important; /* Smaller size to ensure it fits the line */
                white-space: nowrap; 
            }
            .ask-info p.text-white {
                font-size: 15px !important;
            }
            /* Removing excessive padding from column/container defaults */
            .ask-question .container .row > div {
                padding-left: 10px !important;
                padding-right: 10px !important;
            }
        }