        @font-face {
            font-family: 'Pluto Sans';
            src: url('../fonts/PlutoSansThin.otf') format('opentype');
            font-weight: 300;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Pluto Sans';
            src: url('../fonts/PlutoSansExtraLight.otf') format('opentype');
            font-weight: 200;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Pluto Sans';
            src: url('../fonts/PlutoSansLight.otf') format('opentype');
            font-weight: 300;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Pluto Sans';
            src: url('../fonts/PlutoSansRegular.otf') format('opentype');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Pluto Sans';
            src: url('../fonts/PlutoSansMedium.otf') format('opentype');
            font-weight: 500;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Pluto Sans';
            src: url('../fonts/Pluto Sans Bold.otf') format('opentype');
            font-weight: 700;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Pluto Sans';
            src: url('../fonts/PlutoSansHeavy.otf') format('opentype');
            font-weight: 900;
            font-style: normal;
            font-display: swap;
        }

        /* Keyframe Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

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

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

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

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }

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

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

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

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

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

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }

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

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }

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

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100%);
            }

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

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100%);
            }

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

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

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

        @keyframes rotateIn {
            from {
                opacity: 0;
                transform: rotate(-180deg) scale(0.5);
            }

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

        /* Scroll Animation Styles */
        .scroll-animate {
            opacity: 0;
        }

        .scroll-animate.animate-in {
            opacity: 1;
            animation-duration: 0.8s;
            animation-fill-mode: forwards;
            animation-timing-function: ease-out;
        }

        /* Fade In Animation */
        .fade-in {
            opacity: 0;
        }

        .fade-in.animate-in {
            animation: fadeIn 0.8s ease-out forwards;
        }

        /* Fade In Up Animation */
        .fade-in-up {
            opacity: 0;
        }

        .fade-in-up.animate-in {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        /* Fade In Down Animation */
        .fade-in-down {
            opacity: 0;
        }

        .fade-in-down.animate-in {
            animation: fadeInDown 0.8s ease-out forwards;
        }

        /* Fade In Left Animation */
        .fade-in-left {
            opacity: 0;
        }

        .fade-in-left.animate-in {
            animation: fadeInLeft 0.8s ease-out forwards;
        }

        /* Fade In Right Animation */
        .fade-in-right {
            opacity: 0;
        }

        .fade-in-right.animate-in {
            animation: fadeInRight 0.8s ease-out forwards;
        }

        /* Scale In Animation */
        .scale-in {
            opacity: 0;
        }

        .scale-in.animate-in {
            animation: scaleIn 0.8s ease-out forwards;
        }

        /* Zoom In Animation */
        .zoom-in {
            opacity: 0;
        }

        .zoom-in.animate-in {
            animation: zoomIn 1.2s ease-out forwards;
        }

        /* Slide In Left Animation */
        .slide-in-left {
            opacity: 0;
        }

        .slide-in-left.animate-in {
            animation: slideInLeft 0.8s ease-out forwards;
        }

        /* Slide In Right Animation */
        .slide-in-right {
            opacity: 0;
        }

        .slide-in-right.animate-in {
            animation: slideInRight 0.8s ease-out forwards;
        }

        /* Slide Up Animation */
        .slide-up {
            opacity: 0;
        }

        .slide-up.animate-in {
            animation: slideUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        }

        /* Staggered delays for slide-up items */
        .slide-up.delay-1.animate-in {
            animation-delay: 0.1s;
        }

        .slide-up.delay-2.animate-in {
            animation-delay: 0.2s;
        }

        .slide-up.delay-3.animate-in {
            animation-delay: 0.3s;
        }

        .slide-up.delay-4.animate-in {
            animation-delay: 0.4s;
        }

        .slide-up.delay-5.animate-in {
            animation-delay: 0.5s;
        }

        /* Rotate In Animation */
        .rotate-in {
            opacity: 0;
        }

        .rotate-in.animate-in {
            animation: rotateIn 1s ease-out forwards;
        }

        /* Stagger Animation Delays */
        .stagger-1 {
            transition-delay: 0.1s;
        }

        .stagger-2 {
            transition-delay: 0.2s;
        }

        .stagger-3 {
            transition-delay: 0.3s;
        }

        .stagger-4 {
            transition-delay: 0.4s;
        }

        .stagger-5 {
            transition-delay: 0.5s;
        }

        .stagger-6 {
            transition-delay: 0.6s;
        }

        .stagger-7 {
            transition-delay: 0.7s;
        }

        .stagger-8 {
            transition-delay: 0.8s;
        }

        .stagger-9 {
            transition-delay: 0.9s;
        }

        .stagger-10 {
            transition-delay: 1s;
        }

        html {
            overflow-x: hidden;
            width: 100%;
        }

        body {
            font-family: 'Pluto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            color: #103057;
            background-color: #ffffff;
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
        }

        body.menu-open {
            overflow: hidden;
        }

        /* Main wrapper to center content at 1920px max */
        .main-wrapper {
            max-width: 1920px;
            margin: 0 auto;
            position: relative;
            background-color: #ffffff;
        }

        /* Custom larger horizontal gutter utility */
        .gx-6 {
            --bs-gutter-x: 20rem;
        }

        /* When columns are full-width (stacked), remove horizontal gutter */
        @media (max-width: 767.98px) {
            .gx-6 {
                --bs-gutter-x: 0;
            }
        }


        /* Minimal custom CSS */
        .header {
            background-color: transparent;
            transition: background-color 0.3s ease;
            width: 100%;
            max-width: 1920px;
            left: 50%;
            transform: translateX(-50%);
            right: auto;
        }

        .header.scrolled {
            background-color: rgba(255, 255, 255);
        }

        /* Responsive Logo */
        .header .logo {
            max-width: 120px;
            height: auto;
        }

        /* @media (min-width: 768px) {
            .header .logo {
                max-width: 150px;
            }
        }

        @media (min-width: 1200px) {
            .header .logo {
                max-width: 180px;
            }
        } */

        .header-text {
            font-family: 'Pluto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            font-weight: 300;
            font-style: normal;
            font-size: 18px;
            line-height: 1.2;
        }

        @media (min-width: 768px) {
            .header-text {
                font-size: 24px;
            }
        }

        @media (min-width: 1200px) {
            .header-text {
                font-size: 30px;
            }
        }

        /* Responsive Menu Icons */
        /* .menu-icon {
            max-width: 40px;
            height: auto;
        }

        @media (min-width: 768px) {
            .menu-icon {
                max-width: 50px;
            }
        }

        @media (min-width: 1200px) {
            .menu-icon {
                max-width: 60px;
            }
        } */

        /* Fullscreen slide-in menu */
        .menu-overlay {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100vh;
            display: flex;
            z-index: 1050;
            transform: translateX(100%);
            transition: transform 0.4s ease-in-out;
        }

        .menu-overlay.menu-overlay-open {
            transform: translateX(0);
        }

        .menu-overlay .bg {
            flex: 1;
            height: 100%;
            background: url('../images/menu_bg.png') center center no-repeat;
            background-size: cover;
        }

        .menu-overlay .navigation {
            position: relative;
            height: 100%;
            width: 100%;
            max-width: 800px;
            margin-left: auto;
            background-color: #ffffff;
            padding: 4.5rem 1.5rem 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
        }

        .menu-overlay-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1px solid #00A3E0;
            background-color: #ffffff;
            color: #00A3E0;
            font-size: 1.2rem;
            line-height: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .menu-overlay-nav {
            text-align: right;
            max-width: 700px;
        }

        .menu-overlay-nav-title {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 1.5rem;
        }

        .menu-overlay-nav-title .year {
            font-weight: 700;
        }

        .menu-overlay-list {
            list-style: none;
            /*  padding: 0; */
            margin: 0 0 2rem;
            line-height: 2.8rem;
            padding-left: 1rem !important;
        }

        .menu-overlay-list li {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 500;
            font-size: 24.37px;
            color: #0098c8;
            margin-bottom: 0.6rem;
            cursor: pointer;
            position: relative;
            padding-left: 0;
            z-index: 2;
        }

        .menu-overlay-list li::before {
            content: '';
            position: absolute;
            left: -35px;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 30px;
            background-image: url('../images/menu_icon_text.svg');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            z-index: -1;
        }

        .menu-overlay-list li a {
            color: #0098c8;
            text-decoration: none;
        }

        /* Below 640px: tighter line-height for menu items */
        @media (max-width: 639.98px) {
            .menu-overlay-list {
                line-height: 2.1rem;

            }

            .menu-overlay-list li {
                font-size: 14px !important;
            }

            .menu-overlay-list li::before {
                width: 20px;
                height: 20px;
                left: -20px;
            }
        }

        @media (min-width: 768px) {
            .menu-overlay .navigation {
                padding: 2rem 3rem;
            }

            .menu-overlay-nav-title {
                font-size: 16px;
            }

            .menu-overlay-list li {
                font-size: 24.37px;
            }

            .menu-overlay-list li::before {
                width: 35px;
                height: 35px;
                left: -35px;
            }
        }

        /* Right side header content padding */
        .header-right-content {
            padding-top: 5px;
        }

        /* 
        @media (min-width: 768px) {
            .header-right-content {
                padding-top: 30px;
            }
        }

        @media (min-width: 1200px) {
            .header-right-content {
                padding-top: 40px;
            }
        } */

        .year {
            font-weight: 700;
        }


        /* Choose Your Viewing Experience Modal */
        .viewing-experience-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.5s ease, background-color 0.5s ease;
            overflow-y: auto;
            padding: 1rem;
        }

        .viewing-experience-modal.modal-show {
            opacity: 1;
            background-color: rgba(0, 0, 0, 0.5);
        }

        .viewing-experience-modal.modal-hiding {
            opacity: 0;
            background-color: rgba(0, 0, 0, 0);
            pointer-events: none;
        }

        .viewing-experience-modal-content {
            position: relative;
            background-color: #fdfdfd;
            background-image: url('../images/modal_bg.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border-radius: 20px;
            padding: 4rem 4rem 3rem;
            max-width: 1280px;
            width: 95%;
            min-height: 780px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            transform: scale(0.7) translateY(-50px);
            opacity: 0;
            transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .viewing-experience-close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 10;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .viewing-experience-close-btn:hover {
            opacity: 0.7;
            transform: scale(1.1);
        }

        .viewing-experience-close-btn img {
            width: 24px;
            height: 24px;
        }

        .viewing-experience-modal-content.image-loaded {
            background-color: transparent;
        }

        .viewing-experience-modal.modal-show .viewing-experience-modal-content {
            transform: scale(1) translateY(0);
            opacity: 1;
        }

        .viewing-experience-modal.modal-hiding .viewing-experience-modal-content {
            transform: scale(0.9) translateY(20px);
            opacity: 0;
        }

        /* Prevent body scroll when modal is open */
        body.modal-open {
            overflow: hidden;
        }

        /* Responsive adjustments */
        @media (max-width: 1440px) {
            .viewing-experience-modal-content {
                max-width: 1200px;
                min-height: 80%;
            }
        }

        @media (max-width: 1200px) {
            .viewing-experience-modal-content {
                max-width: 1000px;
                min-height: 75%;
                padding: 3.5rem 3rem 2.5rem;
            }
        }

        @media (max-width: 991.98px) {
            .viewing-experience-modal-content {
                padding: 3rem 2.5rem 2.5rem;
                max-width: 800px;
                min-height: 65%;
            }
        }

        @media (max-width: 770px) {
            .viewing-experience-modal-content {
                background-image: url('../images/hero_bg_500.jpg');
            }
        }

        @media (max-width: 767.98px) {
            .viewing-experience-modal {
                padding: 0.5rem;
            }

            .viewing-experience-modal-content {
                padding: 2.5rem 2rem;
                border-radius: 15px;
                max-width: 600px;
                min-height: 100%;
            }
        }

        @media (max-width: 575.98px) {
            .viewing-experience-modal-content {
                padding: 2rem 1.5rem;
                width: 95%;
                max-width: 500px;
                min-height: 100%;
                justify-content: space-around;
            }
        }


        @media (max-width: 480px) {
            .viewing-experience-modal-content {
                padding: 1.75rem 1.25rem;
                min-height: 100%;
                justify-content: space-around;
            }
        }

        .viewing-experience-title {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 500;
            font-size: 56px;
            color: #009CCB;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .viewing-experience-description {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 20px;
            color: #003258;
            margin-bottom: 3rem;
        }

        .viewing-experience-subtitle {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 500;
            font-size: 18px;
            color: #FFFFFF;
            margin-top: 1rem;
            margin-bottom: 0.5rem;
        }

        .viewing-experience-link {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 16px;
            color: #009CCB;
            margin-bottom: 0;
            line-height: 1.4;
        }

        .viewing-experience-button {
            background-color: #003258;
            color: #FFFFFF;
            border-radius: 50px;
            padding: 12px 40px;
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 500;
            font-size: 14px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
            margin-bottom: 1rem;
        }

        .viewing-experience-button:hover {
            background-color: #004A7C;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 50, 88, 0.3);
        }

        .viewing-experience-option {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            cursor: pointer;
            transition: transform 0.3s ease;
            padding: 1rem;
        }

        .viewing-experience-option:hover .viewing-experience-button {
            background-color: #004A7C;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 50, 88, 0.3);
        }

        /* Img-fluid Overide */
        .img-fluid {

            /* width:80%;!important;  */
        }

        /* Tablet and below */
        @media (max-width: 991.98px) {
            .viewing-experience-title {
                font-size: 44px;
                margin-bottom: 1rem;
            }

            .viewing-experience-description {
                font-size: 18px;
                margin-bottom: 2rem;
            }

            .viewing-experience-button {
                font-size: 16px;
                padding: 10px 35px;
            }

            .viewing-experience-subtitle {
                font-size: 16px;
            }

            .viewing-experience-link {
                font-size: 15px;
            }
        }

        /* Mobile landscape and below */
        @media (max-width: 767.98px) {
            .viewing-experience-title {
                font-size: 36px;
                margin-bottom: 0.75rem;
            }

            .viewing-experience-description {
                font-size: 16px;
                margin-bottom: 1.5rem;
            }

            .viewing-experience-button {
                font-size: 15px;
                padding: 9px 30px;
            }

            .viewing-experience-subtitle {
                font-size: 15px;
            }

            .viewing-experience-link {
                font-size: 14px;
            }

            .viewing-experience-option {
                padding: 0.75rem;
            }

            .option-row {
                background-color: #ffffffd1;
                border-radius: 10px;
            }
        }

        /* Small mobile */
        @media (max-width: 575.98px) {
            .viewing-experience-title {
                font-size: 28px;
                margin-bottom: 0.5rem;
            }

            .viewing-experience-description {
                font-size: 14px;
                margin-bottom: 1.25rem;
            }

            .viewing-experience-button {
                font-size: 14px;
                padding: 8px 25px;
            }

            .viewing-experience-subtitle {
                font-size: 14px;
            }

            .viewing-experience-link {
                font-size: 13px;
            }
        }

        /* Extra small mobile */
        @media (max-width: 375px) {
            .viewing-experience-title {
                font-size: 24px;
                margin-bottom: 0.5rem;
            }

            .viewing-experience-description {
                font-size: 13px;
                margin-bottom: 1rem;
            }

            .viewing-experience-button {
                font-size: 13px;
                padding: 7px 20px;
            }

            .viewing-experience-subtitle {
                font-size: 13px;
            }

            .viewing-experience-link {
                font-size: 12px;
            }
        }

        .hero-section {
            min-height: 100vh;
            height: auto;
            width: 100%;
            overflow: hidden;
            position: relative;
            display: flex;
            align-items: stretch;
            margin-top: 0%;
        }

        .hero-section img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .hero-text {
            margin-right: 3em;
            margin-bottom: 103px;
        }


        /* Responsive hero section heights */
        @media (min-width: 450px) {
            .hero-section {
                min-height: 100vh;
                margin-top: 0;
            }
        }

        @media (min-width: 502px) {
            .hero-section {
                min-height: 100vh;
                margin-top: 0;
            }
        }

        @media (min-width: 568px) {
            .hero-section {
                min-height: 100vh;
                margin-top: 0;
            }
        }

        @media (min-width: 603px) {
            .hero-section {
                min-height: 100vh;
                margin-top: 0;
            }
        }

        @media (min-width: 679px) {
            .hero-section {
                min-height: 100vh;
                margin-top: 0;
            }
        }

        @media (min-width: 811px) {
            .hero-section {
                min-height: 100vh;
                margin-top: 0;
            }
        }

        @media (min-width: 836px) {
            .hero-section {
                min-height: 100vh;
                margin-top: 8%;
            }
        }

        @media (min-width: 925px) {
            .hero-section {
                min-height: 100vh;
                margin-top: 0;
            }
        }

        @media (min-width: 1063px) {
            .hero-section {
                min-height: 100vh;
            }
        }

        @media (min-width: 1096px) {
            .hero-section {
                min-height: 100vh;
            }
        }

        @media (min-width: 1507px) {
            .hero-section {
                min-height: 100vh;
            }
        }

        .hero-text-content {
            font-size: 28px;
            font-weight: 300;
        }

        @media (min-width: 576px) {
            .hero-text-content {
                font-size: 36px;
            }
        }

        @media (min-width: 768px) {
            .hero-text-content {
                font-size: 31px;
            }
        }

        @media (min-width: 992px) {
            .hero-text-content {
                font-size: 52px;
            }
        }

        @media (min-width: 1200px) {
            .hero-text-content {
                font-size: 58px;
            }
        }

        .world,
        .all-feel-proud {
            font-weight: bold;
        }

        /* At a Glance Section */
        .glance-title {
            font-weight: 300;
            font-size: 28px;
            color: #0098c8;
            line-height: 1.2;
        }

        @media (min-width: 576px) {
            .glance-title {
                font-size: 32px;
            }
        }

        @media (min-width: 768px) {
            .glance-title {
                font-size: 38px;
            }
        }

        @media (min-width: 992px) {
            .glance-title {
                font-size: 42px;
            }
        }

        @media (min-width: 1200px) {
            .glance-title {
                font-size: 48px;
            }
        }

        .glance {
            font-weight: bold;
        }

        /* Glance Slider with Navigation */
        .glance-slider-with-nav {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            max-width: 1680px;
            margin: 0 auto;
            padding: 0 80px;
        }

        /* Slides Container - prevents overflow during animation */
        .glance-slides-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            /* Height is set dynamically by JavaScript */
        }

        .slide-2 {
            height: 650px;
        }

        .glance-slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #00A9CE;
            border: none;
            color: #FFFFFF;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease;
            flex-shrink: 0;
            z-index: 100;
        }

        .glance-slider-btn:hover {
            background-color: #0098c8;
        }

        .glance-slider-btn:disabled {
            background-color: #CCCCCC;
            cursor: not-allowed;
            opacity: 0.5;
        }

        #glancePrevBtn {
            left: 20px;
        }

        #glanceNextBtn {
            right: 20px;
        }

        .glance-slide {
            width: 100%;
            flex-shrink: 0;
            position: absolute;
            left: 0;
            top: 0;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: none;
        }

        .glance-slide.active {
            position: absolute;
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        /* Slide Animations */
        @keyframes slideOutLeft {
            from {
                transform: translateX(0);
                opacity: 1;
            }

            to {
                transform: translateX(-100%);
                opacity: 0;
            }
        }

        @keyframes slideOutRight {
            from {
                transform: translateX(0);
                opacity: 1;
            }

            to {
                transform: translateX(100%);
                opacity: 0;
            }
        }

        @keyframes slideInLeft {
            from {
                transform: translateX(-100%);
                opacity: 0;
            }

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

        @keyframes slideInRight {
            from {
                transform: translateX(100%);
                opacity: 0;
            }

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

        .glance-slide.slide-out-left {
            animation: slideOutLeft 0.6s ease-in-out forwards;
            opacity: 1;
            visibility: visible;
            position: absolute;
            z-index: 1;
        }

        .glance-slide.slide-out-right {
            animation: slideOutRight 0.6s ease-in-out forwards;
            opacity: 1;
            visibility: visible;
            position: absolute;
            z-index: 1;
        }

        .glance-slide.slide-in-left {
            animation: slideInLeft 0.6s ease-in-out forwards;
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            position: absolute;
            z-index: 2;
        }

        .glance-slide.slide-in-right {
            animation: slideInRight 0.6s ease-in-out forwards;
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            position: absolute;
            z-index: 2;
        }

        /* Glance Content Container */
        .glance-content {
            position: relative;
            width: 100%;
            min-height: 800px;
        }

        /* Parent container for both slides */
        .glance-slide .parent {
            position: relative;
            width: 100%;
            height: 800px;
            margin: 0 auto;
        }

        /* Absolute Positioning Layout */
        .parent {
            background: transparent;
            max-width: 1256px;
            width: 100%;
            height: 982px;
            margin: 0 auto;
            position: relative;
            box-sizing: border-box;
        }

        * {
            box-sizing: border-box;
        }

        @media (max-width: 1637px) {}

        .parent>div {
            position: absolute;
            border-radius: 12px;
            overflow: hidden;
            background-color: transparent;
            border: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .parent>div img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: bottom;
        }

        .glace-svg {
            padding: 10px;
            background-color: #efefef !important;
            width: 100%;
        }

        /* Text overlay for div2 */
        .div2 {
            position: relative;
        }

        .div2-text-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            padding: 20px;
            pointer-events: none;
            z-index: 2;
        }

        .div2-number {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 28px;
            color: #FFFFFF;
            line-height: 1;
            margin: 0;
        }

        /* Counter Column Styles */
        .counter-column {
            display: inline-flex;
            flex-direction: column;
            position: relative;
            height: 1em;
            overflow: hidden;
            line-height: 1;
            vertical-align: top;
        }

        .counter-column span {
            display: block;
            height: 1em;
            line-height: 1;
            flex-shrink: 0;
        }

        .div2-label {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 18px;
            color: #FFFFFF;
            line-height: 1.2;
            margin: 0;
        }

        /* Text overlay for div3 */
        .div3 {
            position: relative;
        }

        .div3-text-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: flex-end;
            padding: 20px;
            pointer-events: none;
            z-index: 2;
        }

        .div3-number {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 28px;
            color: #FFFFFF;
            line-height: 1;
            margin: 0;
            text-align: right;
        }

        .div3-label {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 18px;
            color: #FFFFFF;
            line-height: 1.2;
            margin: 0;
            text-align: right;
        }

        /* Text overlay for div4 */
        .div4 {
            position: relative;
        }

        .div4-text-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            padding: 20px;
            pointer-events: none;
            z-index: 2;
        }

        .div4-number {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 28px;
            color: #FFFFFF;
            line-height: 1;
            margin: 0;
        }

        .div4-label {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 18px;
            color: #FFFFFF;
            line-height: 1.2;
            margin: 0;
        }

        /* Text overlay for div6 */
        .div6 {
            position: relative;
        }

        .div6-text-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            padding: 20px;
            pointer-events: none;
            z-index: 2;
        }

        .div6-number {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 28px;
            color: #FFFFFF;
            line-height: 1;
            margin: 0;
        }

        .div6-label {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 18px;
            color: #FFFFFF;
            line-height: 1.2;
            margin: 0;
        }

        /* Text overlay for div7 */
        .div7 {
            position: relative;
        }

        .div7-text-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            padding: 20px;
            pointer-events: none;
            z-index: 2;
        }

        .div7-top-row {
            display: flex;
            align-items: baseline;
            gap: 5px;
            margin-bottom: 5px;
        }

        .div7-prefix {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 12px;
            color: #103057;
            line-height: 1;
            margin: 0;
        }

        .div7-number {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 28px;
            color: #103057;
            line-height: 1;
            margin: 0;
        }

        .div7-suffix {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 12px;
            color: #103057;
            line-height: 1;
            margin: 0;
        }

        .div7-label {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 18px;
            color: #103057;
            line-height: 1.2;
            margin: 0 0 auto 0;
        }

        .div7-icon {
            align-self: flex-end;
            width: 150px;
            height: auto;
            margin-top: -20%;
            object-fit: none !important;
            margin-right: -24%;
        }

        /* Text overlay for div8 */
        .div8 {
            position: relative;
        }

        .div8-text-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            padding: 20px;
            pointer-events: none;
            z-index: 2;
        }

        .div8-number {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 28px;
            color: #0098c8;
            line-height: 1;
            margin: 0 0 5px 0;
        }

        .div8-label {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 18px;
            color: #0098c8;
            line-height: 1.2;
            margin: 0 0 auto 0;
            text-align: left;
        }

        .div8-icon {
            align-self: flex-end;
            width: 76px !important;
            height: auto !important;
            margin-top: -17%;
        }

        /* Text overlay for div11 */
        .div11 {
            position: relative;
        }

        .div11-text-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            padding: 20px;
            pointer-events: none;
            z-index: 2;
        }

        .div11-number {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 28px;
            color: #103057;
            line-height: 1;
            margin: 0 0 5px 0;
        }

        .div11-label {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 21px;
            color: #103057;
            line-height: 1.2;
            margin: 0 0 auto 0;
        }

        .div11-icon {
            align-self: flex-end;
            width: 163px !important;
            height: auto !important;
            margin-top: -17%;
        }

        /* Text overlay for div9 */
        .div9 {
            position: relative;
        }

        .div9-text-overlay {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: flex-start;
            padding: 20px;
            pointer-events: none;
            z-index: 2;
        }

        .div9-number {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 28px;
            color: #FFFFFF;
            line-height: 1;
            margin: 0;
        }

        .div9-label {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 18px;
            color: #FFFFFF;
            line-height: 1.2;
            margin: 0;
        }

        /* Text overlay for div10 */
        .div10 {
            position: relative;
        }

        .div10-text-overlay {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: flex-start;
            padding: 20px;
            pointer-events: none;
            z-index: 2;
        }

        .div10-top-row {
            display: flex;
            align-items: baseline;
            gap: 5px;
            margin-bottom: 5px;
        }

        .div10-prefix {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 12px;
            color: #103057;
            line-height: 1;
            margin: 0;
        }

        .div10-number {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 28px;
            color: #103057;
            line-height: 1;
            margin: 0;
        }

        .div10-suffix {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 12px;
            color: #103057;
            line-height: 1;
            margin: 0;
        }

        .div10-label {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 21px;
            color: #103057;
            line-height: 1.3;
            margin: 0;
            text-align: right;
        }

        /* Individual positions and sizes - using percentages for responsiveness */
        .div1 {
            width: 23.7%;
            height: 25.76%;
            left: 0;
            top: 0;
        }

        .div2 {
            width: 20.65%;
            height: 25.76%;
            left: 24.62%;
            top: 0;
        }

        .div3 {
            width: 28.1%;
            height: 25.76%;
            left: 46.19%;
            top: 0;
        }

        .div4 {
            width: 23.95%;
            height: 45%;
            left: 75.5%;
            top: 0;
        }

        .div5 {
            width: 23.7%;
            height: 31.77%;
            left: 0;
            top: 27.29%;
        }

        .div6 {
            width: 12.7%;
            height: 57%;
            left: 24.62%;
            top: 27.29%;
        }

        .div7 {
            width: 18.02%;
            height: 17.92%;
            left: 38.24%;
            top: 27.29%;
        }

        .div8 {
            width: 17.1%;
            height: 17.92%;
            left: 57.18%;
            top: 27.29%;
        }

        .div9 {
            width: 36.16%;
            height: 37.68%;
            left: 62.86%;
            left: 38.24%;
            top: 46.74%;
        }

        .div10 {
            width: 23.95%;
            height: 37.68%;
            left: 38.24%;
            left: 75.5%;
            top: 46.74%;
        }

        .div11 {
            width: 23.7%;
            height: 23.83%;
            left: 0;
            top: 60.59%;
        }

        /* Responsive Media Queries */
        /* Note: Removed transitions on .parent>div and .parent>div img to prevent delay on window resize */


        /* Below 1420px - Custom positioning with animation */
        @media (max-width: 1421px) {
            #at-a-glance {
                height: auto;
                padding-bottom: 50px;
            }

            .parent {
                height: 982px;
            }

            .div1 {
                width: 30.7%;
                height: 25.76%;
                left: 0;
                top: 0;
            }

            .div2 {
                width: 30.7%;
                height: 25.76%;
                left: 32%;
                top: 0;
            }

            .div3 {
                width: 35.9%;
                height: 25.76%;
                left: 64.1%;
                top: 0;
            }

            .div4 {
                width: 40%;
                height: 44.72%;
                left: 0%;
                top: 86.5%;
            }

            .div5 {
                width: 30.7%;
                height: 31.77%;
                left: 0;
                top: 27.29%;
            }

            .div6 {
                width: 17.7%;
                height: 57.43%;
                left: 32.1%;
                top: 27.29%;
            }

            .div7 {
                width: 23.02%;
                height: 17.92%;
                left: 51%;
                top: 27.29%;
            }

            .div8 {
                width: 25%;
                height: 17.92%;
                left: 75%;
                top: 27.29%;
            }

            .div9 {
                width: 49%;
                height: 37.68%;
                left: 51%;
                top: 46.74%;
            }

            .div10 {
                width: 58.5%;
                height: 44.68%;
                left: 41.5%;
                top: 86.5%;
            }

            .div11 {
                width: 30.7%;
                height: 23.83%;
                left: 0;
                top: 60.59%;
            }

        }

        /* Below 950px */
        @media (max-width: 950px) {
            #at-a-glance {
                height: auto;
                padding-bottom: 50px;
            }

            .parent {
                height: 982px;
            }

            .div1 {
                width: 48%;
                height: 27.76%;
                left: 0%;
                top: 86.5%;
            }

            .div2 {
                width: 39%;
                height: 25.76%;
                left: 0%;
                top: 0;
            }

            .div3 {
                width: 59.5%;
                height: 25.76%;
                left: 40.5%;
                top: 0;
            }

            .div4 {
                width: 50%;
                height: 44.72%;
                left: 50%;
                top: 86.5%;
            }

            .div5 {
                width: 48%;
                height: 31.77%;
                left: 0%;
                top: 115.5%;
            }

            .div6 {
                width: 30%;
                height: 57.43%;

                left: 0%;
                top: 27.29%;
            }

            .div7 {
                width: 30.02%;
                height: 17.92%;
                left: 31.5%;
                top: 27.29%;
            }

            .div8 {
                width: 36.5%;
                height: 17.92%;
                left: 63.3%;
                top: 27.29%;
            }

            .div9 {
                width: 68.5%;
                height: 37.68%;
                left: 31.5%;
                top: 46.74%;
            }

            .div10 {
                width: 50%;
                height: 39.68%;
                left: 50%;
                top: 132.5%;
            }

            .div11 {
                width: 48%;
                height: 23.83%;
                left: 0%;
                top: 148.5%;
            }

        }

        /* Below 750px */
        @media (max-width: 750px) {
            #at-a-glance {
                height: auto;
                padding-bottom: 50px;
            }

            .parent {
                height: 982px;
            }

            .div1 {
                width: 39%;
                height: 21%;
                left: 0%;
                top: 23.5%;
            }

            .div2 {
                width: 56%;
                height: 21.76%;
                left: 0%;
                top: 0%;
            }

            .div3 {
                width: 59%;
                height: 21%;
                left: 41%;
                top: 23.5%;
            }

            .div4 {
                width: 47%;
                height: 51%;
                left: 0%;
                top: 46%;
            }

            .div5 {
                width: 42%;
                height: 22%;
                left: 58%;
                top: 0%;
            }

            .div6 {
                width: 51%;
                height: 72.5%;
                left: 49%;
                top: 46%;
            }

            .div7 {
                width: 42%;
                height: 19%;
                left: 58.5%;
                top: 151.5%;
            }

            .div8 {
                width: 56%;
                height: 19%;
                left: 0%;
                top: 151.5%;
            }

            .div9 {
                width: 47%;
                height: 30%;
                left: 0%;
                top: 120%;
            }

            .div10 {
                width: 51%;
                height: 30%;
                left: 49%;
                top: 120%;
            }

            .div11 {
                width: 47%;
                height: 20%;
                left: 0%;
                top: 98.5%;
            }

        }

        /* Below 550px */
        @media (max-width: 550px) {
            #at-a-glance {
                height: auto;
                padding-bottom: 50px;
            }

            .parent {
                height: 982px;
            }

            .div1 {
                width: 100%;
                height: 28%;
                left: 0%;
                top: 0%;
            }

            .div2 {
                width: 100%;
                height: 21.76%;
                left: 0%;
                top: 29%;
            }

            .div3 {
                width: 100%;
                height: 21%;
                left: 0%;
                top: 52%;
            }

            .div4 {
                width: 100%;
                height: 51%;
                left: 0%;
                top: 74%;
            }

            .div5 {
                width: 100%;
                height: 33%;
                left: 0%;
                top: 126%;
            }

            .div6 {
                width: 100%;
                height: 56.5%;
                left: 0%;
                top: 160%;
            }

            .div7 {
                width: 100%;
                height: 19%;
                left: 0%;
                top: 217.5%;
            }

            .div8 {
                width: 100%;
                height: 19%;
                left: 0%;
                top: 237.5%;
            }

            .div9 {
                width: 100%;
                height: 30%;
                left: 0%;
                top: 257.5%;
            }

            .div10 {
                width: 100%;
                height: 30%;
                left: 0%;
                top: 288.5%;
            }

            .div11 {
                width: 100%;
                height: 20%;
                left: 0%;
                top: 319.5%;
            }

        }



        /* Tablet - 3 Columns */
        @media (max-width: 1024px) {
            .parent {
                grid-template-columns: repeat(3, 1fr);
                gap: 18px;
            }
        }

        /* Small Tablet - 2 Columns */
        @media (max-width: 768px) {
            .parent {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
        }

        /* Responsive Text - Below 600px */
        @media (max-width: 600px) {

            .div2-number,
            .div3-number,
            .div4-number,
            .div6-number,
            .div7-number,
            .div8-number,
            .div9-number,
            .div11-number {
                font-size: 36px !important;
            }

            .div10-number {
                font-size: 36px !important;
            }

            .div10-prefix,
            .div10-suffix {
                font-size: 12px !important;
            }

            .div2-label,
            .div3-label,
            .div4-label,
            .div6-label,
            .div7-label,
            .div8-label,
            .div9-label,
            .div10-label,
            .div11-label {
                font-size: 16px !important;
            }
        }

        /* Mobile - 1 Column */
        @media (max-width: 480px) {
            .parent {
                grid-template-columns: 1fr;
                padding: 15px;
                gap: 12px;
            }

            .div2-number,
            .div3-number,
            .div4-number,
            .div6-number,
            .div7-number,
            .div8-number,
            .div9-number,
            .div11-number {
                font-size: 28px !important;
            }

            .div10-number {
                font-size: 28px !important;
            }

            .div10-prefix,
            .div10-suffix {
                font-size: 10px !important;
            }

            .div2-label,
            .div3-label,
            .div4-label,
            .div6-label,
            .div7-label,
            .div8-label,
            .div9-label,
            .div10-label,
            .div11-label {
                font-size: 14px !important;
            }
        }

        .glance {
            color: #0098c8;
            font-weight: bold;
        }

        /* Letter from Chairman Section */
        .chairman-section {
            display: flex;
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
            width: 100%;
            gap: 36px;
            /*  margin-bottom: 80px; */
        }

        @media (max-width: 790px) {
            .chairman-section {
                flex-direction: column;
                height: auto;
            }

            .sustainability-inner {
                flex-direction: column !important;
                height: auto;
            }

            .sustainability-image-wrapper {
                order: 1 !important;
            }

            .sustainability-card {
                order: 2 !important;
            }


        }

        @media (max-width: 1025px) {
            .chairman-section {
                margin-top: 5rem;
            }
        }



        .chairman-image-col {
            background-color: #ffffff;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding: 0;
            margin: 0;
            position: relative;
            overflow: visible;
        }

        .chairman-image {
            height: 100%;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            position: relative;
        }

        .chairman-image img {
            object-fit: cover;
            object-position: center bottom;
            display: block;
        }

        .chairman-content-col {
            flex: 0 0 48%;
            background-color: #EFF9FD;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px 40px;
            margin: 0;
            height: 658px;
            border-radius: 2%;
        }

        @media (min-width: 768px) {
            .chairman-content-col {
                padding: 80px 60px;
            }
        }

        @media (min-width: 1200px) {
            .chairman-content-col {
                padding: 30px 30px;
            }
        }

        /* Specific heights for insights and digital-transformation sections */
        #insights .chairman-content-col {
            /* height: 881px; */
        }

        #digital-transformation .chairman-content-col {
            /* height: 881px; */
        }

        .chairman-content {
            display: flex;
            flex-direction: column;
            gap: 10px;
            width: 100%;
            max-width: 600px;
            text-align: center;
            align-items: center;
        }

        .chairman-title {
            display: flex;
            flex-direction: column;
            gap: 0;
            line-height: 1;
            margin-bottom: 10px;
        }

        .chairman-title-light {
            font-weight: 300;
            font-size: 36px;
            color: #0098c8;
        }

        @media (min-width: 768px) {
            .chairman-title-light {
                font-size: 28px;
            }
        }

        @media (min-width: 1200px) {
            .chairman-title-light {
                font-size: 36px;
            }

        }

        @media (min-width: 1440px) {
            .chairman-content-col {
                padding: 30px !important;
            }
        }

        .chairman-title-bold {
            font-weight: 700;
            font-size: 36px;
            color: #0098c8;
        }

        @media (min-width: 768px) {
            .chairman-title-bold {
                /* font-size: 42px; */
            }
        }

        @media (min-width: 1200px) {
            .chairman-title-bold {
                /* font-size: 30px; */
            }
        }

        .chairman-greeting {
            font-weight: 600;
            font-size: 18px;
            color: #103057;
            margin-top: 5px;
        }

        @media (min-width: 768px) {
            .chairman-greeting {
                font-size: 20px;
            }
        }

        @media (min-width: 1200px) {
            .chairman-greeting {
                font-size: 22px;
            }
        }

        .chairman-text {
            font-weight: 400;
            font-size: 14px;
            color: #595B60;
            line-height: 1.7;
            margin-top: 10px;
        }

        @media (min-width: 768px) {
            .chairman-text {
                font-size: 15px;
            }
        }

        @media (min-width: 1200px) {
            .chairman-text {
                font-size: 15px;
            }
        }

        .chairman-signature {
            /* display: flex;
            flex-direction: row; */
            gap: 6px;
            margin-top: 15px;
            align-items: baseline;
        }

        .chairman-name-light {
            font-weight: 400;
            font-size: 20px;
            color: #0098c8;
        }

        @media (min-width: 768px) {
            .chairman-name-light {
                font-size: 22px;
            }
        }

        @media (min-width: 1200px) {
            .chairman-name-light {
                font-size: 24px;
            }
        }

        .chairman-name-bold {
            font-weight: 700;
            font-size: 20px;
            color: #0098c8;
        }

        @media (min-width: 768px) {
            .chairman-name-bold {
                font-size: 22px;
            }
        }

        @media (min-width: 1200px) {
            .chairman-name-bold {
                font-size: 24px;
            }
        }

        .read-more-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: #103057;
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            font-size: 13px;
            margin-top: 0;
            transition: all 0.3s ease;
            width: fit-content;
            white-space: nowrap;
        }

        @media (max-width: 1000.98px) {
            .read-more-btn {
                font-size: 13px;
                padding: 12px 28px;
            }
        }

        @media (max-width: 767.98px) {
            .read-more-btn {
                font-size: 13px;
                padding: 12px 28px;
            }
        }

        .read-more-btn:hover {
            background-color: #0098c8;
            color: white;
            text-decoration: none;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(43, 165, 209, 0.3);
        }

        /* Group Chief Executive Section */
        .group-chief-executive-section {
            background-color: #F8F8F8;
            padding: 4rem 0 0 0;
        }

        .group-chief-executive-container {
            display: flex;
            max-width: 1280px;
            margin-left: auto;
            margin-right: auto;
            width: 100%;
            gap: 36px;
            flex-direction: row;
            align-items: flex-start;
        }

        @media (max-width: 790px) {
            .group-chief-executive-container {
                flex-direction: column;
                align-items: center;
            }

            .group-chief-executive-content-col {
                order: 2 !important;

            }

            .group-chief-executive-image-col {
                order: 1 !important;
            }

            .group-chief-executive-content-col {
                width: 100%;
            }




        }



        @media (max-width: 768px) {
            .chairman-section {
                max-width: 550px !important;
            }

            .group-chief-executive-container {
                max-width: 550px !important;
            }

            .business-inner {
                max-width: 550px !important;
            }

            .capital-allocation-inner {
                max-width: 550px !important;
            }

            .sustainability-inner {
                max-width: 550px !important;
            }
        }

        .group-chief-executive-content-col {
            flex: 0 0 49.3%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0;
            border-radius: 2%;

        }

        @media (min-width: 768px) {
            .group-chief-executive-content-col {}
        }

        @media (min-width: 1200px) {
            .group-chief-executive-content-col {}
        }

        @media (max-width: 1490px) {
            .group-chief-executive-content-col {
                order: 1;
                min-height: auto;
            }
        }

        .group-chief-executive-image-col {
            flex: 1;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding: 0;
            margin: 0;
            position: relative;
            overflow: visible;
            /*  min-height: 854px; */
        }

        @media (max-width: 1490px) {
            .group-chief-executive-image-col {
                order: 2;
                min-height: auto;
            }
        }

        .group-chief-executive-image {

            display: flex;
            align-items: flex-end;
            justify-content: center;
            position: relative;
        }

        .group-chief-executive-image img {
            object-fit: cover;
            object-position: center bottom;
            display: block;
        }

        .group-chief-executive-content {
            display: flex;
            flex-direction: column;
            width: 100%;
            text-align: center;
            align-items: center;
            background-color: #E0F6FF;
            border-radius: 2%;
            border: 1px solid #A6E8FF;
            padding: 4.5rem 3rem;
            gap: 5px;
        }

        .group-chief-executive-title {
            display: flex;
            flex-direction: column;
            gap: 0;
            line-height: 1.2;
            margin-bottom: 10px;
        }

        .group-chief-executive-title-light {
            font-family: 'Pluto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            font-weight: 370;
            font-size: 32px;
            color: #0098c8;
        }

        @media (min-width: 768px) {
            .group-chief-executive-title-light {
                font-size: 36px;
            }
        }

        @media (min-width: 1200px) {
            .group-chief-executive-title-light {
                /* font-size: 56px; */
            }
        }

        .group-chief-executive-title-bold {
            font-family: 'Pluto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            font-weight: 500;
            font-size: 32px;
            color: #0098c8;
        }

        @media (min-width: 768px) {
            .group-chief-executive-title-bold {
                /* font-size: 42px;*/
            }
        }

        @media (min-width: 1200px) {
            .group-chief-executive-title-bold {
                font-size: 36px;
            }
        }

        .group-chief-executive-greeting {
            font-family: 'Pluto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            font-weight: 500;
            font-size: 17px;
            color: #103057;
            margin-top: 5px;
        }

        @media (min-width: 768px) {
            .group-chief-executive-greeting {
                font-size: 20px;
            }
        }

        @media (min-width: 1200px) {
            .group-chief-executive-greeting {
                font-size: 20px;
            }
        }

        .group-chief-executive-text {
            font-family: 'Pluto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            font-weight: 400;
            font-size: 14px;
            color: #595B60;
            line-height: 1.7;
            margin-top: 10px;
        }

        @media (min-width: 768px) {
            .group-chief-executive-text {
                font-size: 14px;
            }
        }

        @media (min-width: 1200px) {
            .group-chief-executive-text {
                font-size: 14px;
            }
        }

        .group-chief-executive-signature {
            display: flex;
            flex-direction: column;
            gap: 0;
            margin-top: 15px;
            align-items: center;
        }

        .group-chief-executive-name {
            font-family: 'Pluto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            font-weight: 400;
            font-size: 20px;
            color: #0098c8;
        }

        @media (min-width: 768px) {
            .group-chief-executive-name {
                font-size: 24px;
            }
        }

        @media (min-width: 1200px) {
            .group-chief-executive-name {
                font-size: 27px;
            }
        }

        .group-chief-executive-buttons {
            display: flex;
            gap: 20px;
            margin-top: 30px;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
        }

        @media (max-width: 767.98px) {
            .group-chief-executive-buttons {
                flex-direction: column-reverse;
                gap: 15px;
            }
        }

        .watch-video-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            padding: 3px 17px 3px 6px;
            background-color: #003258;
            color: #ffffff;
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 500;
            font-size: 13px;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            white-space: nowrap;
        }

        .watch-video-btn:hover {
            background-color: #004A7C;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 50, 88, 0.3);
            color: #ffffff;
        }

        .watch-video-icon {
            width: 48px;
            height: 48px;
            object-fit: contain;
            flex-shrink: 0;
            border-radius: 50%;
        }

        @media (min-width: 768px) {
            .watch-video-btn {
                font-size: 13px;
                padding: 3px 17px 3px 6px;
                gap: 18px;
            }

            .watch-video-icon {
                width: 39px;
                height: 39px;
            }
        }

        @media (max-width: 767.98px) {
            .watch-video-btn {
                font-size: 13px;
                padding: 3px 17px 3px 6px;
                gap: 12px;
            }

            .watch-video-icon {
                width: 42px;
                height: 42px;
            }
        }

        /* Discover the Report Slider Section */
        .discover-slider-section {
            padding: 80px 15px 100px;
            background-color: #FFFFFF;
            overflow: hidden;
        }

        .discover-slider-title {
            text-align: center;
            margin-bottom: 60px;
            font-family: 'Pluto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            font-size: 18px;
            color: #103057;
            font-weight: 300;
        }

        .discover-slider-title-bold {
            font-weight: 300;
            color: #103057;
        }

        .discover-slider-with-nav {
            display: flex;
            align-items: center;
            gap: 30px;
            max-width: 1800px;
            margin: 0 auto;
        }

        .discover-slider-container {
            position: relative;
            flex: 1;
            overflow: hidden;
        }

        .discover-slider-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .discover-slide {
            flex: 0 0 25%;
            max-width: 25%;
            padding: 0 15px;
            box-sizing: border-box;
        }

        .discover-slide-inner {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease;
            width: 384px;
            height: 529px;
            margin: 0 auto;
        }

        .discover-slide-inner:hover {
            transform: translateY(-10px);
        }

        .discover-slide-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .discover-slide-overlay {
            position: absolute;
            bottom: 16px;
            left: 16px;
            right: 16px;
            height: 70px;
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid #b2b2b236;
            border-radius: 16px;
            padding: 0 20px;
        }

        .discover-slide-title {
            font-family: 'Pluto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            font-size: 18px;
            font-weight: 400;
            color: #FFFFFF;
            margin: 0;
            line-height: 1.3;
        }

        .discover-slider-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #00A9CE;
            border: none;
            color: #FFFFFF;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease;
            flex-shrink: 0;
        }

        .discover-slider-btn:hover {
            background-color: #0098c8;
        }

        .discover-slider-btn:disabled {
            background-color: #CCCCCC;
            cursor: not-allowed;
        }

        @media (max-width: 1770px) {
            .discover-slide {
                flex: 0 0 25%;
                max-width: 25%;
            }

            .discover-slider-title {
                font-size: 20px;
            }
        }

        @media (max-width: 1400px) {
            .discover-slide {
                flex: 0 0 25%;
                max-width: 25%;
            }

            .discover-slider-title {
                font-size: 16px;
            }
        }

        @media (max-width: 991.98px) {
            .discover-slide {
                flex: 0 0 50%;
                max-width: 50%;
            }

            .discover-slider-title {
                font-size: 16px;
            }

            .discover-slide-inner {
                width: 340px;
                height: 468px;
            }
        }

        @media (max-width: 880px) {
            .discover-slider-section {
                padding: 60px 15px 80px;
            }

            .discover-slider-with-nav {
                gap: 15px;
            }

            .discover-slider-btn {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .discover-slide {
                flex: 0 0 100%;
                max-width: 100%;
            }

            .discover-slider-title {
                font-size: 20px;
                margin-bottom: 40px;
            }

            .discover-slide-inner {
                width: 300px;
                height: 413px;
            }


        }

        @media (max-width: 575.98px) {
            .discover-slider-title {
                font-size: 16px;
            }

            .discover-slide-inner {
                width: 280px;
                height: 385px;
            }

            .discover-slider-btn {
                width: 45px;
                height: 45px;
                font-size: 20px;
            }
        }

        /* Desktop: 4 cards with gap, no overlap */
        @media (min-width: 996px) {
            .discover-slide {
                flex: 0 0 25%;
                max-width: 25%;
                padding: 0 12px;
                /* horizontal gap between images */
                box-sizing: border-box;
            }

            .discover-slide-inner {
                width: 100%;
                /* fit inside the 25% column */
                height: 480px;
                /* adjust height as you like */
            }


        }

        /* Footer Section */
        .site-footer {
            background-color: #ECF5FA;
            padding: 24px 15px;
        }

        .site-footer-text {
            margin: 0;
            font-family: 'Pluto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            font-weight: 400;
            font-size: 10px;
            text-align: center;
            color: #0098c8;
        }



        /* Our Business Principles Section */
        .business-section {
            padding: 80px 15px 100px;
            background-color: #FFFFFF;
            display: flex;
            justify-content: center;
        }

        .business-inner {
            width: 100%;
            max-width: 1280px;
            display: flex;
            gap: 30px;
            align-items: stretch;
        }

        .business-image-wrapper {
            flex: 1 1 50%;
            display: flex;
            align-items: flex-start;
            justify-content: center;
        }

        .business-image-wrapper img {
            width: 100%;
            height: auto;
            border-radius: 15px;
            display: block;
        }

        .business-content {
            flex: 1 1 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .business-title {
            margin-bottom: 12px;
            line-height: 1.1;
            text-align: center;
        }

        .business-title-light,
        .business-title-bold {
            font-family: 'Pluto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            font-size: 32px;
            color: #0098c8;
        }

        .business-title-light {
            font-weight: 300;
        }

        .business-title-bold {
            font-weight: 500;
        }

        @media (min-width: 768px) {

            .business-title-light,
            .business-title-bold {
                font-size: 36px;
            }
        }

        @media (min-width: 1200px) {

            .business-title-light,
            .business-title-bold {
                font-size: 36px;
            }
        }

        .business-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 21px;
        }

        .business-item {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            background-color: #e7f6fb;
            border-radius: 16px;
            padding: 18px 22px;
        }

        .business-item-icon {
            flex: 0 0 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .business-item-icon img {}

        .business-item-text {
            font-family: 'Pluto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            font-size: 16px;
            font-weight: normal;
            color: #103057;
            text-align: left;
        }

        .business-cta-btn {
            align-self: center;
            border-radius: 999px;
            background-color: #103057;
            color: #FFFFFF;
            font-family: 'Pluto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            font-weight: 300;
            font-size: 22px;
            padding: 12px 40px;
            border: none;
            outline: none;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin: 10px auto 0;
        }

        .business-cta-btn:hover {
            background-color: #0098c8;
            color: #FFFFFF;
            text-decoration: none;
        }

        @media (max-width: 1490px) {
            .business-inner {
                order: 1;
                min-height: auto;
            }

            .business-image-wrapper,
            .business-content {
                flex: 1 1 100%;
                width: 100%;
            }

            .business-section {
                padding-top: 60px;
                padding-bottom: 80px;

            }


            .value-model-section {
                padding: 80px 15px 100px;
                background-color: #FFFFFF;
                display: flex;
                justify-content: center;
            }

            .value-model-inner {
                width: 100%;
                text-align: center;
            }

            .value-model-title {
                margin-bottom: 6rem;
                line-height: 1.1;
            }

            .value-model-title-light,
            .value-model-title-bold {
                font-family: 'Pluto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
                font-size: 32px;
                color: #0098c8;
            }

            .value-model-title-light {
                font-weight: 300;
            }

            .value-model-title-bold {
                font-weight: 500;
            }

            @media (min-width: 1200px) {

                .value-model-title-light,
                .value-model-title-bold {
                    font-size: 48px;
                }
            }

            .value-model-flow {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 16px;
                flex-wrap: wrap;
                margin-bottom: 30px;
            }

            .value-model-box {
                background-color: #EFF9FD;
                border-radius: 10px;
                padding: 14px 32px;
                font-family: 'Pluto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
                font-weight: 500;
                font-size: 20px;
                color: #0098c8;
                white-space: nowrap;
            }

            @media (min-width: 992px) {
                .value-model-box {
                    font-size: 29.91px;
                }
            }

            .value-model-arrow {
                width: 20px;
                height: auto;
            }

            .value-model-cta {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                border-radius: 999px;
                background-color: #103057;
                color: #FFFFFF;
                font-family: 'Pluto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
                font-weight: 300;
                font-size: 16px;
                padding: 10px 34px;
                text-decoration: none;
                margin-top: 10px;
            }

            @media (min-width: 768px) {
                .value-model-cta {
                    font-size: 18px;
                    padding: 12px 40px;
                }
            }

            .value-model-cta:hover {
                background-color: #0098c8;
                color: #FFFFFF;
                text-decoration: none;
            }

        }




        @media (max-width: 790px) {
            .business-inner {
                order: 1;
                min-height: auto;
                flex-direction: column;
            }

        }


        /* Viewing mode visibility helper */
        .view-mode-hidden {
            display: none !important;
        }

        .business-content .value-model-section {
            display: none;
        }




        /* Our Capital Allocation And Investment Approach Section */
        .capital-allocation-section {
            padding: 80px 15px 0px;
            background-color: #F8F8F8;
            display: flex;
            justify-content: center;
        }

        .capital-allocation-inner {
            width: 100%;
            max-width: 1636px;
            margin: 0 auto;
            text-align: center;
        }

        .capital-allocation-title {
            margin-bottom: 40px;
            line-height: 1.1;
        }

        .capital-allocation-title-prefix,
        .capital-allocation-title-main {
            font-family: 'Pluto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            font-size: 32px;
            color: #0098c8;
        }

        .capital-allocation-title-prefix {
            font-weight: 300;
        }

        .capital-allocation-title-main {
            font-weight: 500;
        }

        .capital-allocation-image {
            max-width: 900px;
            width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
        }

        @media (min-width: 1200px) {

            .capital-allocation-title-prefix,
            .capital-allocation-title-main {
                font-size: 36px;
            }
        }

        /* Evolving Through Our Sustainability Journey Section */
        .sustainability-section {
            padding: 80px 15px 0px;
            background-color: #FFFFFF;
            display: flex;
            justify-content: center;
        }

        .sustainability-inner {
            width: 100%;
            max-width: 1280px;
            display: flex;
            flex-direction: column-reverse;
            gap: 40px;
            align-items: center;
            align-items: flex-start;
        }

        .sustainability-card {
            background-color: #eff9fd;
            /*  background-image: url('../images/bg_sustainability_texture.jpg'); */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border-radius: 12px;
            padding: 100px 32px;
            text-align: center;
            color: #103057;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .sustainability-title {
            margin-bottom: 45px;
        }

        .sustainability-title-light,
        .sustainability-title-bold {
            /*  display: block; */
            font-size: 36px;
            color: #0098c8;
        }

        .sustainability-title-light {
            font-weight: 300;
        }

        .sustainability-title-bold {
            font-weight: 500;
        }

        .sustainability-quote-wrapper {
            position: relative;
            max-width: 540px;
            margin: 4px auto 0px;
            text-align: center;
        }

        .sustainability-quote-mark {
            position: absolute;
            top: -38px;
            left: -23px;
            font-weight: 500;
            font-size: 61px;
            color: #103057;
        }



        .sustainability-quote-mark.closing {
            position: relative;
            top: -4rem;
            left: 16rem;
            display: inline;
            margin-left: 4px;
        }

        @media (max-width: 1150px) {
            .sustainability-quote-mark.closing {

                top: -3rem;
                left: 14rem;

            }
        }

        @media (max-width: 767px) {
            .sustainability-quote-mark.closing {

                top: -3rem;
                left: 12rem;

            }
        }

        @media (max-width: 575px) {
            .sustainability-quote-mark.closing {

                top: -3rem;
                left: 9rem;

            }
        }

        .sustainability-text {
            font-weight: 400;
            font-size: 14px;
            color: #595B60;
            line-height: 1.7;
            margin-top: 10px;
        }

        .sustainability-signature {
            display: flex;
            flex-direction: row;
            gap: 6px;
            margin-top: 15px;
            align-items: baseline;
            justify-content: center;
            padding: 20px 0;
        }

        .sustainability-image-wrapper {
            flex: 1;
            display: flex;
        }

        .sustainability-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
            display: block;
        }


        .sustainability-inner {
            flex-direction: row;

        }

        .sustainability-card {
            flex: 0 0 45%;
        }

        .sustainability-image-wrapper {
            flex: 1;
        }


        @media (min-width: 1280px) and (max-width: 1499px) {
            .sustainability-card {
                height: 700px;
            }
        }

        @media (min-width: 1500px) {
            .sustainability-card {
                height: 730px;
            }


            /* Sustainability Section Responsive Styles */
            @media (max-width: 1200px) {
                .sustainability-section {
                    padding: 60px 15px 80px;
                }
            }

            .sustainability-card {
                padding: 80px 35px;
            }

            .sustainability-title-light,
            .sustainability-title-bold {
                font-size: 38px;
            }

            .sustainability-text {
                font-size: 14px;
            }

            .sustainability-quote-mark {
                font-size: 54px;
                top: -34px;
                left: -20px;
            }

            .sustainability-quote-wrapper {
                max-width: 480px;
            }
        }

        @media (max-width: 991.98px) {
            .sustainability-section {
                padding: 50px 15px 70px;
            }

            .sustainability-inner {
                gap: 30px;
            }

            .sustainability-card {
                padding: 60px 30px;
                width: 100%;
            }

            .sustainability-image-wrapper {
                width: 100%;
            }

            .sustainability-title-light,
            .sustainability-title-bold {
                font-size: 34px;
            }

            .sustainability-text {
                font-size: 14px;
            }

            .sustainability-quote-mark {
                font-size: 48px;
                top: -30px;
                left: -18px;
            }

            .sustainability-quote-wrapper {
                max-width: 450px;
                margin: 20px auto 28px;
            }

            .sustainability-title {
                margin-bottom: 20px;
            }
        }

        @media (max-width: 767.98px) {
            .sustainability-section {
                padding: 40px 15px 60px;
            }

            .sustainability-inner {
                gap: 25px;
            }

            .sustainability-card {
                padding: 50px 25px;
                border-radius: 10px;
            }

            .sustainability-title-light,
            .sustainability-title-bold {
                font-size: 28px;
            }

            .sustainability-text {
                font-size: 14px;
            }

            .sustainability-quote-mark {
                font-size: 42px;
                top: -26px;
                left: -15px;
            }

            .sustainability-quote-wrapper {
                max-width: 400px;
                margin: 18px auto 24px;
            }

            .sustainability-title {
                margin-bottom: 18px;
            }

            .sustainability-image {
                border-radius: 10px;
            }
        }

        @media (max-width: 575.98px) {
            .sustainability-section {
                padding: 30px 10px 50px;
            }

            .sustainability-inner {
                gap: 20px;
            }

            .sustainability-card {
                padding: 40px 20px;
                border-radius: 8px;
            }

            .sustainability-title-light,
            .sustainability-title-bold {
                font-size: 24px;
            }

            .sustainability-text {
                font-size: 14px;

            }

            .sustainability-quote-mark {
                font-size: 36px;
                top: -22px;
                left: -12px;
            }

            .sustainability-quote-wrapper {
                max-width: 100%;
                margin: 16px auto 20px;
            }

            .sustainability-title {
                margin-bottom: 16px;
            }

            .sustainability-image {
                border-radius: 8px;
            }
        }

        @media (max-width: 375px) {
            .sustainability-section {
                padding: 25px 8px 40px;
            }

            .sustainability-inner {
                gap: 15px;
            }

            .sustainability-card {
                padding: 30px 15px;
                border-radius: 8px;
            }

            .sustainability-title-light,
            .sustainability-title-bold {
                font-size: 20px;
            }

            .sustainability-text {
                font-size: 14px;

            }

            .sustainability-quote-mark {
                font-size: 32px;
                top: -20px;
                left: -10px;
            }

            .sustainability-quote-wrapper {
                margin: 14px auto 18px;
            }

            .sustainability-title {
                margin-bottom: 14px;
            }
        }

        /* ========================================
   SLIDE 2: FINANCIAL DATA CARDS - CSS
   ======================================== */

        /* Financial Cards Base Styles */
        .financial-card {
            background: #FFFFFF;
            border: 2px solid #0091C0;
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 4px 12px rgba(0, 145, 192, 0.1);
            z-index: 10 !important;
        }

        .financial-card-left {
            background: #FFFFFF;
            border: 2px solid #0091C0;
            border-radius: 16px;
            overflow: hidden;
            position: relative;

            z-index: 10 !important;
        }

        .financial-card-content {
            position: relative;
            z-index: 2;
            padding: 10px 21px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            text-align: left;
            width: 100%;
            background: #FFFFFF;
            ;
        }

        /* Line 1: MUR */
        .financial-line-1 {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 18px;
            color: #0091C0;
            line-height: 1.2;
        }

        /* Line 2: 38,030 M */
        .financial-line-2 {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 28px;
            color: #003158;
            line-height: 1.2;
        }

        .financial-line-2 .financial-m {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 20px;
            color: #0091C0;
        }

        /* Line 3: Group Consolidated */
        .financial-line-3 {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 18px;
            color: #0091C0;
            line-height: 1.2;
        }

        /* Line 4: Revenue */
        .financial-line-4 {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 18px;
            color: #0091C0;
            line-height: 1.2;
            margin-bottom: auto;
        }

        /* Financial Period (MUR 35,176M - 30 JUNE 2024) */
        .financial-period {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 15px;
            color: #003158;
            line-height: 1.2;
            margin-top: auto;
        }

        /* Financial Footnote */
        .financial-footnote {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 8px;
            color: #003158;
            line-height: 1.3;
            margin-top: 8px;
        }

        /* FDiv5: Revenue Chart Styles */
        .fdiv5-content {
            position: relative;
            z-index: 2;
            padding: 25px;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;

        }

        .fdiv5-title {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 20px;
            color: #0091C0;
            margin: 0 0 20px 0;
            line-height: 1.2;
        }

        .fdiv5-chart {

            max-width: 323px;
            height: auto;
            margin-bottom: 15px;
        }

        .fdiv5-legend {
            display: flex;
            gap: 20px;
            justify-content: center;
            align-items: center;
        }

        .fdiv5-legend-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .fdiv5-legend-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .fdiv5-legend-dot.mauritius {
            background-color: #003158;
        }

        .fdiv5-legend-dot.africa {
            background-color: #FDB913;
        }

        .fdiv5-legend-dot.asia {
            background-color: #0091C0;
        }

        .fdiv5-legend-text {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 14px;
            color: #003158;
            line-height: 1;
        }

        /* FDiv8: Group Earnings per Share Styles */
        .fdiv8-content {
            position: relative;
            z-index: 2;
            padding: 20px;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .fdiv8-title {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 18px;
            color: #0091C0;
            margin: 0 0 20px 0;
            line-height: 1.2;
            text-align: left;
        }

        .fdiv8-bars {
            display: flex;
            flex-direction: column;
            gap: 10px;
            width: 100%;
        }

        .fdiv8-bar-item {
            display: flex;
            align-items: center;
            gap: 8px;
            width: 100%;
        }

        .fdiv8-year {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 15px;
            color: #58595B;
            min-width: 50px;
            flex-shrink: 0;
        }

        .fdiv8-bar-bg {
            flex: 1;
            height: 32px;
            background-color: #EDEFF0;
            border-radius: 4px 15px 15px 4px;
            position: relative;
            overflow: hidden;
        }

        .fdiv8-bar {
            height: 100%;
            border-radius: 4px 15px 15px 4px;
            display: flex;
            align-items: center;
            padding: 0 12px;
            position: absolute;
            top: 0;
            left: 0;
        }

        .fdiv8-bar-2025 {
            background-color: #FDB913;
            width: 46%;
        }

        .fdiv8-bar-2024 {
            background-color: #003158;
            width: 54%;
        }

        .fdiv8-value {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 500;
            font-size: 14px;
            color: #FFFFFF;
            line-height: 1;
            white-space: nowrap;
        }

        /* FDiv9-15: Copy fdiv8 styles with different class names */
        .fdiv9-content,
        .fdiv10-content,
        .fdiv11-content,
        .fdiv12-content,
        .fdiv13-content,
        .fdiv14-content,
        .fdiv15-content {
            position: relative;
            z-index: 2;
            padding: 20px;

            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            text-align: left;
        }

        .fdiv9-title,
        .fdiv10-title,
        .fdiv11-title,
        .fdiv12-title,
        .fdiv13-title,
        .fdiv14-title,
        .fdiv15-title {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 18px;
            color: #0091C0;
            margin: 0 0 20px 0;
            line-height: 1.2;
        }

        .fdiv9-bars,
        .fdiv10-bars,
        .fdiv11-bars,
        .fdiv12-bars,
        .fdiv13-bars,
        .fdiv14-bars,
        .fdiv15-bars {
            display: flex;
            flex-direction: column;
            gap: 10px;
            width: 100%;
        }

        .fdiv9-bar-item,
        .fdiv10-bar-item,
        .fdiv11-bar-item,
        .fdiv12-bar-item,
        .fdiv13-bar-item,
        .fdiv14-bar-item,
        .fdiv15-bar-item {
            display: flex;
            align-items: center;
            gap: 8px;
            width: 100%;
        }

        .fdiv9-year,
        .fdiv10-year,
        .fdiv11-year,
        .fdiv12-year,
        .fdiv13-year,
        .fdiv14-year,
        .fdiv15-year {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 400;
            font-size: 15px;
            color: #58595B;
            min-width: 50px;
            flex-shrink: 0;
        }

        .fdiv9-bar-bg,
        .fdiv10-bar-bg,
        .fdiv11-bar-bg,
        .fdiv12-bar-bg,
        .fdiv13-bar-bg,
        .fdiv14-bar-bg,
        .fdiv15-bar-bg {
            flex: 1;
            height: 32px;
            background-color: #EDEFF0;
            border-radius: 4px 15px 15px 4px;
            position: relative;
            overflow: hidden;
        }

        .fdiv9-bar,
        .fdiv10-bar,
        .fdiv11-bar,
        .fdiv12-bar,
        .fdiv13-bar,
        .fdiv14-bar,
        .fdiv15-bar {
            height: 100%;
            border-radius: 4px 15px 15px 4px;
            display: flex;
            align-items: center;
            padding: 0 12px;
            position: absolute;
            top: 0;
            left: 0;
        }

        .fdiv9-value,
        .fdiv10-value,
        .fdiv11-value,
        .fdiv12-value,
        .fdiv13-value,
        .fdiv14-value,
        .fdiv15-value {
            font-family: 'Pluto Sans', sans-serif;
            font-weight: 500;
            font-size: 14px;
            color: #FFFFFF;
            line-height: 1;
            white-space: nowrap;
        }

        /* FDiv9: Dividend per Share - Bar widths */
        .fdiv9-bar-2025 {
            background-color: #FDB913;
            width: 100%;
        }

        .fdiv9-bar-2024 {
            background-color: #003158;
            width: 100%;
        }

        /* FDiv10: Group EBITDA Margin - Bar widths */
        .fdiv10-bar-2025 {
            background-color: #FDB913;
            width: 89%;
        }

        .fdiv10-bar-2024 {
            background-color: #003158;
            width: 100%;
        }

        /* FDiv11: Group Net Debt to EBITDA - Bar widths */
        .fdiv11-bar-2025 {
            background-color: #FDB913;
            width: 100%;
        }

        .fdiv11-bar-2024 {
            background-color: #003158;
            width: 75%;
        }

        /* FDiv12: Group Gearing - Bar widths */
        .fdiv12-bar-2025 {
            background-color: #FDB913;
            width: 100%;
        }

        .fdiv12-bar-2024 {
            background-color: #003158;
            width: 85%;
        }

        /* FDiv13: Group Return on Capital Employed - Bar widths */
        .fdiv13-bar-2025 {
            background-color: #FDB913;
            width: 76%;
        }

        .fdiv13-bar-2024 {
            background-color: #003158;
            width: 100%;
        }

        /* FDiv14: Group NAV per Share - Bar widths */
        .fdiv14-bar-2025 {
            background-color: #FDB913;
            width: 100%;
        }

        .fdiv14-bar-2024 {
            background-color: #003158;
            width: 95%;
        }

        /* FDiv15: Company NAV per Share - Bar widths */
        .fdiv15-bar-2025 {
            background-color: #FDB913;
            width: 100%;
        }

        .fdiv15-bar-2024 {
            background-color: #003158;
            width: 98%;
        }

        /* ========================================
   FINANCIAL CARDS POSITIONING - DESKTOP
   ======================================== */

        /* Default Desktop Layout */
        .fdiv1 {
            width: 21.7%;
            height: 25.76%;
            left: 1%;
            top: 1.7%;
        }

        .fdiv2 {
            width: 21.7%;
            height: 25.76%;
            left: 23.62%;
            top: 1.7%;
        }

        .fdiv3 {
            width: 21.7%;
            height: 25.76%;
            left: 1%;
            top: 29.29%;
        }

        .fdiv4 {
            width: 21.7%;
            height: 25.76%;
            left: 23.62%;
            top: 29.29%;
        }

        .fdiv5 {
            width: 44.32%;
            height: 41.77%;
            left: 1%;
            top: 56.58%;
            background-color: #FFFFFF !important;
        }

        .fdiv6 {
            width: 46.5%;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
            z-index: 0;
            pointer-events: none;
        }

        .fdiv6 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
        }

        .fdiv7 {
            width: 51.5%;
            height: 100%;
            left: 47.5%;
            top: 0;
            background-color: #f7f8f9 !important;
        }

        .fdiv8 {
            width: 23.7%;
            height: 25.76%;
            left: 48.3%;
            top: 0%;
        }

        .fdiv9 {
            width: 23.7%;
            height: 25.76%;
            left: 74.3%;
            top: 0%;
        }

        .fdiv10 {
            width: 23.7%;
            height: 25.76%;
            left: 48.3%;
            top: 21.5%;
        }

        .fdiv11 {
            width: 23.7%;
            height: 25.76%;
            left: 74.3%;
            top: 21.5%;
        }

        .fdiv12 {
            width: 23.7%;
            height: 25.76%;
            left: 48.3%;
            top: 42%;
        }

        .fdiv13 {
            width: 23.7%;
            height: 25.76%;
            left: 74.3%;
            top: 42%;
        }

        .fdiv14 {
            width: 23.7%;
            height: 25.76%;
            left: 48.3%;
            top: 62%;
        }

        .fdiv15 {
            width: 23.7%;
            height: 25.76%;
            left: 74.3%;
            top: 62%;
        }

        .fdiv16 {
            width: 0%;
            height: 0%;
            left: 0%;
            top: 0;

        }


        /* Ensure financial cards are above the background */
        .fdiv1,
        .fdiv2,
        .fdiv3,
        .fdiv4,
        .fdiv5,
        .fdiv8,
        .fdiv9,
        .fdiv10,
        .fdiv11,
        .fdiv12,
        .fdiv13,
        .fdiv14,
        .fdiv15 {
            position: absolute;
            z-index: 1;
        }

        /* ========================================
   GLANCE SLIDER RESPONSIVE
   ======================================== */

        @media (max-width: 880px) {
            .glance-slider-with-nav {
                gap: 15px;
                max-width: 100%;
            }

            .glance-slider-btn {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
        }

        @media (max-width: 575.98px) {
            .glance-slider-btn {
                width: 45px;
                height: 45px;
                font-size: 20px;
            }
        }

        /* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

        /* Below 1200px */
        @media (max-width: 1199.98px) {
            .fdiv1 {
                width: 30.7%;
                height: 22%;
                left: 1%;
                top: 1.2%;
            }

            .fdiv2 {
                width: 30.7%;
                height: 22%;
                left: 32.5%;
                top: 1.2%;
            }

            .fdiv3 {
                width: 30.7%;
                height: 22%;
                left: 1%;
                top: 24.29%;
            }

            .fdiv4 {
                width: 30.7%;
                height: 22%;
                left: 32.5%;
                top: 24.29%;
            }

            .fdiv5 {
                width: 61.7%;
                height: 40.77%;
                left: 1%;
                top: 47.58%;
            }

            .fdiv6 {
                width: 64%;
                height: 90%;
                left: 0;
                top: 0;
            }

            .fdiv7 {
                width: 30.5%;
                height: 90%;
                left: 65.5%;
                top: 0;
                background-color: #f7f8f9 !important;
            }

            .fdiv16 {
                width: 96%;
                height: 45%;
                left: 0%;
                top: 92%;
                background-color: #f7f8f9 !important;
            }

            .fdiv8 {
                width: 30.7%;
                height: 25.76%;
                left: 66%;
                top: -3%;
            }

            .fdiv9 {
                width: 30.7%;
                height: 25.76%;
                left: 66%;
                top: 16.29%;
            }

            .fdiv10 {
                width: 30.7%;
                height: 25.76%;
                left: 66%;
                top: 37.58%;
            }

            .fdiv11 {
                width: 30.7%;
                height: 25.76%;
                left: 66%;
                top: 59.87%;
            }

            .fdiv12 {
                width: 40%;
                height: 25.76%;
                left: 1%;
                top: 90.16%;
            }

            .fdiv13 {
                width: 40%;
                height: 25.76%;
                left: 1%;
                top: 111.45%;
            }

            .fdiv14 {
                width: 40%;
                height: 25.76%;
                left: 56%;
                top: 90.16%;
            }

            .fdiv15 {
                width: 40%;
                height: 25.76%;
                left: 56%;
                top: 111.45%;
            }
        }

        /* Below 950px */
        @media (max-width: 950px) {



            .fdiv1 {
                width: 48%;
                height: 23%;
                left: 1%;
                top: 1%;
            }

            .fdiv2 {
                width: 48%;
                height: 23%;
                left: 51%;
                top: 1%;
            }

            .fdiv3 {
                width: 48%;
                height: 23%;
                left: 1%;
                top: 25.29%;
            }

            .fdiv4 {
                width: 48%;
                height: 23%;
                left: 51%;
                top: 25.29%;
            }

            .fdiv5 {
                width: 98%;
                height: 39.77%;
                left: 1%;
                top: 49.58%;
            }

            .fdiv6 {
                width: 100%;
                height: 90%;
                left: 0;
                top: 0;
            }

            .fdiv7 {
                width: 0;
                height: 0;
                left: 0;
                top: 0;
                background-color: #f7f8f9 !important;
            }

            .fdiv8 {
                width: 48%;
                height: 25.76%;
                left: 0%;
                top: 88%;
            }

            .fdiv9 {
                width: 48%;
                height: 25.76%;
                left: 52%;
                top: 88%;
            }

            .fdiv10 {
                width: 48%;
                height: 25.76%;
                left: 0%;
                top: 107.29%;
            }

            .fdiv11 {
                width: 48%;
                height: 25.76%;
                left: 52%;
                top: 107.29%;
            }

            .fdiv12 {
                width: 48%;
                height: 25.76%;
                left: 0%;
                top: 126.58%;
            }

            .fdiv13 {
                width: 48%;
                height: 25.76%;
                left: 52%;
                top: 126.58%;
            }

            .fdiv14 {
                width: 48%;
                height: 25.76%;
                left: 0%;
                top: 146.87%;
            }

            .fdiv15 {
                width: 48%;
                height: 25.76%;
                left: 52%;
                top: 146.87%;
            }

            .fdiv16 {
                width: 100%;
                height: 81%;
                left: 0%;
                top: 92%;
                background-color: #f7f8f9 !important;
            }
        }

        /* Below 750px */
        @media (max-width: 750px) {

            /* Reduce all fdiv font sizes by 4px */
            .financial-line-1 {
                font-size: 16px;
                /* was 20px */
            }

            .financial-line-2 {
                font-size: 26px;
                /* was 42px */
            }

            .financial-line-2 .financial-m {
                font-size: 16px;
                /* was 20px */
            }

            .financial-line-3 {
                font-size: 16px;
                /* was 20px */
            }

            .financial-line-4 {
                font-size: 16px;
                /* was 20px */
            }

            .financial-period {
                font-size: 12px;
                /* was 16px */
            }

            .financial-footnote {
                font-size: 4px;
                /* was 8px */
            }

            .fdiv5-title {
                font-size: 16px;
                /* was 20px */
            }

            .fdiv5-legend-text {
                font-size: 10px;
                /* was 14px */
            }

            .fdiv8-title,
            .fdiv9-title,
            .fdiv10-title,
            .fdiv11-title,
            .fdiv12-title,
            .fdiv13-title,
            .fdiv14-title,
            .fdiv15-title {
                font-size: 14px;
                /* was 18px */
            }

            .fdiv8-year,
            .fdiv9-year,
            .fdiv10-year,
            .fdiv11-year,
            .fdiv12-year,
            .fdiv13-year,
            .fdiv14-year,
            .fdiv15-year {
                font-size: 11px;
                /* was 15px */
            }

            .fdiv8-value,
            .fdiv9-value,
            .fdiv10-value,
            .fdiv11-value,
            .fdiv12-value,
            .fdiv13-value,
            .fdiv14-value,
            .fdiv15-value {
                font-size: 10px;
                /* was 14px */
            }

            .fdiv1 {
                width: 48%;
                height: 23%;
                left: 1%;
                top: 1%;
            }

            .fdiv2 {
                width: 48%;
                height: 23%;
                left: 51%;
                top: 1%;
            }

            .fdiv3 {
                width: 48%;
                height: 23%;
                left: 1%;
                top: 25.29%;
            }

            .fdiv4 {
                width: 48%;
                height: 23%;
                left: 51%;
                top: 25.29%;
            }

            .fdiv5 {
                width: 98%;
                height: 39.77%;
                left: 1%;
                top: 49.58%;
            }

            .fdiv6 {
                width: 100%;
                height: 90%;
                left: 0;
                top: 0;
            }

            .fdiv7 {
                width: 0;
                height: 0;
                left: 0;
                top: 0;
                background-color: #f7f8f9 !important;
            }

            .fdiv8 {
                width: 48%;
                height: 25.76%;
                left: 0%;
                top: 88%;
            }

            .fdiv9 {
                width: 48%;
                height: 25.76%;
                left: 52%;
                top: 88%;
            }

            .fdiv10 {
                width: 48%;
                height: 25.76%;
                left: 0%;
                top: 107.29%;
            }

            .fdiv11 {
                width: 48%;
                height: 25.76%;
                left: 52%;
                top: 107.29%;
            }

            .fdiv12 {
                width: 48%;
                height: 25.76%;
                left: 0%;
                top: 126.58%;
            }

            .fdiv13 {
                width: 48%;
                height: 25.76%;
                left: 52%;
                top: 126.58%;
            }

            .fdiv14 {
                width: 48%;
                height: 25.76%;
                left: 0%;
                top: 146.87%;
            }

            .fdiv15 {
                width: 48%;
                height: 25.76%;
                left: 52%;
                top: 146.87%;
            }

            .fdiv16 {
                width: 100%;
                height: 81%;
                left: 0%;
                top: 92%;
                background-color: #f7f8f9 !important;
            }
        }

        /* Below 480px - Mobile */
        @media (max-width: 480px) {
            .fdiv1 {
                width: 96%;
                height: 21%;
                left: 2%;
                top: 1%;
            }

            .fdiv2 {
                width: 96%;
                height: 21%;
                left: 2%;
                top: 23%;
            }

            .fdiv3 {
                width: 96%;
                height: 21%;
                left: 2%;
                top: 45%;
            }

            .fdiv4 {
                width: 96%;
                height: 21%;
                left: 2%;
                top: 67%;
            }

            .fdiv5 {
                width: 96%;
                height: 35%;
                left: 2%;
                top: 89%;
            }

            .fdiv6 {
                width: 100%;
                height: 125%;
                left: 0;
                top: 0;
            }

            .fdiv7 {
                width: 0;
                height: 0;
                left: 0;
                top: 0;
                background-color: #f7f8f9 !important;
            }

            .fdiv8 {
                width: 100%;
                height: 21%;
                left: 0%;
                top: 125%;
            }

            .fdiv9 {
                width: 100%;
                height: 21%;
                left: 0%;
                top: 148%;
            }

            .fdiv10 {
                width: 100%;
                height: 21%;
                left: 0%;
                top: 171%;
            }

            .fdiv11 {
                width: 100%;
                height: 21%;
                left: 0%;
                top: 194%;
            }

            .fdiv12 {
                width: 100%;
                height: 21%;
                left: 0%;
                top: 217%;
            }

            .fdiv13 {
                width: 100%;
                height: 21%;
                left: 0%;
                top: 240%;
            }

            .fdiv14 {
                width: 100%;
                height: 21%;
                left: 0%;
                top: 263%;
            }

            .fdiv15 {
                width: 100%;
                height: 21%;
                left: 0%;
                top: 286%;
            }

            .fdiv16 {
                width: 100%;
                height: 179%;
                left: 0%;
                top: 126%;
                background-color: #f7f8f9 !important;
            }

        }

        #digital-transformation .chairman-content-col {
            height: 688px;
        }



        @media (max-width: 1500px) {
            /* .image-scale {
                transform: scale(0.9);
            }

            .image-scale {
            transform: scale(0.8);
            }

            .image-scale-glance {
                transform: scale(0.9);
            } */
        }

        @media (max-width: 1500px) {

            .viewing-experience-modal-content {
                min-height: 95%;
            }

            .chairman-section {
                max-width: 1063px;
            }

            .chairman-image {
                align-items: flex-start;
            }

            .chairman-content-col {
                padding: 30px 30px;
            }

            .chairman-content {
                gap: 0px;
            }

            .chairman-content-col {
                height: 100%;
            }

            .chairman-signature {
                margin: 15px;
            }

            /* .viewing-experience-button {
                padding: 7px 40px;
                font-size: 13px;
            } */

            .viewing-experience-link {
                font-size: 12px;
            }

            .viewing-experience-modal-content {

                padding: 2rem 3rem 0rem;
            }

            .hero-text-content {
                font-size: 1.5rem !important;
            }

            .hero-text {

                margin-bottom: 84px;
            }



            .group-chief-executive-image-col {

                align-items: flex-start;
                min-height: 0px;

            }


            .group-chief-executive-container {
                max-width: 1063px;
            }

            .group-chief-executive-content {
                padding: 2rem;
            }

            .group-chief-executive-text {
                font-size: 14px;
                margin-top: 1px;
            }

            .group-chief-executive-greeting {
                font-size: 17px;
            }

            .group-chief-executive-signature {
                margin-top: 0px;
            }

            .group-chief-executive-buttons {
                margin-top: 10px;
            }

            .group-chief-executive-section {
                padding: 4rem 0 0 0;
            }

            .group-chief-executive-title-light,
            .group-chief-executive-title-bold {
                font-size: 30px !important;
            }

            .business-inner {
                max-width: 1063px;

            }

            .business-image-wrapper {
                align-items: flex-start;
            }

            .business-title,
            .business-title-light,
            .business-title-bold {
                font-size: 1.5rem !important;
            }

            .business-item-text {
                font-size: 14px !important;
            }

            .business-item {

                padding: 10px 22px;
            }

            .business-list {
                margin-bottom: 17px;
                gap: 10px;
            }

            #insights .chairman-content-col {
                height: 552px;
            }

            #insights .chairman-title-light,
            #insights .chairman-title-bold {
                font-size: 30px !important;
            }

            #insights .chairman-content {
                gap: 18px;
            }

            #insights .chairman-title {
                margin-top: 10px;
            }

            .header-right-content {
                padding-top: 1px;
            }

            .header {
                padding-top: 0.5rem !important;
                padding-bottom: 0.5rem !important;
            }

            .header-text {
                font-size: 1.25rem !important;
            }

            .header .logo {
                max-width: 90px;

            }

            .capital-allocation-image {
                max-width: 780px;
            }

            .sustainability-inner {
                max-width: 1063px;
            }

            .sustainability-card {

                padding: 15px 30px;
            }



            .sustainability-title-light,
            .sustainability-title-bold {
                /*  font-size: 1.4rem !important; */
            }

            .sustainability-quote-mark {

                font-size: 47px;

            }

            .sustainability-quote-mark.closing {

                top: -3rem;
                left: 11rem;

            }

            .sustainability-quote-wrapper {

                /*  margin: 30px auto 30px; */
            }

            .sustainability-title {
                margin-top: 34px;
            }

            #digital-transformation .chairman-content-col {
                height: 100%;
            }

            #digital-transformation .chairman-title-light,
            #digital-transformation .chairman-title-bold {
                font-size: 2.3rem !important;
            }

            #digital-transformation .chairman-text {
                margin-top: 1px;
            }



            #digital-transformation .chairman-signature {
                margin-top: 0px;
            }


            .sustainability-section {
                padding: 40px 15px 54px;
            }

            .discover-slider-title {
                margin-bottom: 16px;
            }
        }

        @media (max-width: 430px) {
            #at-a-glance {
                padding: 0 !important;
            }

            .glance-slider-btn {
                width: 25px !important;
                height: 25px !important;
            }

            #glanceNextBtn {
                right: 2px !important;
            }

            #glancePrevBtn {
                left: 2px !important;
            }

            .glance-slider-with-nav {

                padding: 0 29px !important;
            }

            .discover-slider-with-nav {
                gap: 4px !important;
            }

            #at-a-glance {
                padding-top: 21px !important;
            }

            .chairman-section {
                gap: 0 !important;
                margin-bottom: 40px !important;
            }

            .group-chief-executive-container {
                gap: 0 !important;
            }

            .sustainability-inner {
                gap: 0px !important;
            }

            .business-section {
                padding-top: 40px !important;
                padding-bottom: 30px !important;
            }

            .chairman-title-light,
            .chairman-title-bold {
                font-size: 19px !important;
            }

            .group-chief-executive-title-light,
            .group-chief-executive-title-bold {
                font-size: 19px !important;
            }

            #insights .chairman-title-light,
            #insights .chairman-title-bold {
                font-size: 19px !important;
            }

            .capital-allocation-title-prefix,
            .capital-allocation-title-main {

                font-size: 19px !important;

            }

            .capital-allocation-section {
                padding: 20px 15px 20px;
            }

            #digital-transformation .chairman-title-light,
            #digital-transformation .chairman-title-bold {
                font-size: 19px !important;
            }

            section#digital-transformation {
                padding: 14px !important;
                margin-top: 10px !important;
            }

            .discover-slider-title {
                margin-bottom: 19px !important;
            }

            .discover-slider-section {
                padding: 6px 15px 80px !important;
            }


            .sustainability-quote-mark {
                font-size: 35px !important;
            }

            .sustainability-quote-wrapper {
                margin: 20px auto 0px !important;
            }

            .sustainability-quote-mark.closing {
                top: -2.3rem !important;
                left: 8rem !important;
            }

            .site-footer-text {
                font-size: 12px !important;
            }


        }

        .fdiv5-title {

            margin-top: 15px;
        }
        }
        
        /* PDF Link Mobile/Desktop Visibility */
        /* Mobile: show section links, hide PDF links */
        .pdf-link-mobile {
            display: inline-block !important;
        }
        
        .pdf-link-desktop {
            display: none !important;
        }

        /* For menu links - mobile default */
        .menu-pdf-link-mobile {
            display: inline !important;
        }

        .menu-pdf-link-desktop {
            display: none !important;
        }

        /* For discover slider links - mobile default */
        .discover-slide .pdf-link-mobile {
            display: block !important;
        }

        .discover-slide .pdf-link-desktop {
            display: none !important;
        }

        /* Tablet and up: show PDF links, hide section links */
        @media (min-width: 768px) {
            .pdf-link-desktop {
                display: inline-block !important;
            }
            .pdf-link-mobile {
                display: none !important;
            }

            .menu-pdf-link-desktop {
                display: inline !important;
            }
            .menu-pdf-link-mobile {
                display: none !important;
            }

            .discover-slide .pdf-link-desktop {
                display: block !important;
            }
            .discover-slide .pdf-link-mobile {
                display: none !important;
            }
        }

        /* .chairman-section {*/

        /* .chairman-section {*/