  *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {

            font-family: "Inter", sans-serif;
            overflow-x: hidden;
            width: 100%;
        }

        #slider-root {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 650px;
            overflow: hidden;
            background: #111;
        }

        #s-slides {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }

        .s-slide {
            position: absolute;
            inset: 0;

            width: 100%;
            height: 100%;

            background-repeat: no-repeat;

            /* IMPORTANT */
            background-size: 100% 100%;
            background-position: center center;

            opacity: 0;
            visibility: hidden;

            transition: opacity 0.8s ease;
        }

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

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

        /* Dark overlay only on banner */
        .s-overlay {
            position: absolute;
            inset: 0;
            z-index: 3;

            background:
                linear-gradient(90deg,
                    rgba(0, 0, 0, 0.70) 0%,
                    rgba(0, 0, 0, 0.35) 45%,
                    rgba(0, 0, 0, 0.08) 100%);

            pointer-events: none;
        }

        /* =========================================================
            BANNER CONTENT
            ========================================================= */

        .s-content {
            position: absolute;

            left: 7%;
            bottom: 18%;

            z-index: 10;

            width: min(560px, 90%);
            max-width: 560px;
        }

        /* Location */
        .s-place {
            color: rgba(255, 255, 255, 0.85);
            font-size: 13px;
            font-weight: 600;

            letter-spacing: 2px;
            text-transform: uppercase;

            margin-bottom: 12px;

            display: flex;
            align-items: center;
            gap: 10px;

            transform: translateY(20px);
            opacity: 0;

            transition:
                transform 0.5s ease,
                opacity 0.5s ease;
        }

        .s-place::before {
            content: "";

            width: 35px;
            height: 2px;

            background: #ecad29;

            border-radius: 20px;
        }

        /* Main title */
        .s-title,
        .s-title2 {
            margin: 0;

            color: #fff;

            font-size: clamp(42px, 6vw, 78px);
            line-height: 0.95;

            font-weight: 800;

            letter-spacing: 1px;

            text-transform: uppercase;

            transform: translateY(30px);
            opacity: 0;

            transition:
                transform 0.6s ease,
                opacity 0.6s ease;
        }

        .s-title2 {
            margin-bottom: 18px;
        }

        /* Description */
        .s-desc {
            max-width: 480px;

            color: rgba(255, 255, 255, 0.78);

            font-size: 14px;
            line-height: 1.7;

            transform: translateY(20px);
            opacity: 0;

            transition:
                transform 0.5s ease 0.2s,
                opacity 0.5s ease 0.2s;
        }

        /* Content animation */
        .s-content.in .s-place,
        .s-content.in .s-title,
        .s-content.in .s-title2,
        .s-content.in .s-desc,
        .s-content.in .s-cta {
            opacity: 1;
            transform: translateY(0);
        }

        /* Buttons */
        .s-cta {
            margin-top: 25px;

            display: flex;
            align-items: center;
            gap: 12px;

            transform: translateY(20px);
            opacity: 0;

            transition:
                transform 0.5s ease 0.35s,
                opacity 0.5s ease 0.35s;
        }

        .s-btn-bookmark {
            width: 45px;
            height: 45px;

            border: none;
            border-radius: 50%;

            background: #ecad29;
            color: #fff;

            display: flex;
            align-items: center;
            justify-content: center;

            cursor: pointer;

            font-size: 17px;

            transition: 0.3s ease;
        }

        .s-btn-bookmark:hover {
            background: #fff;
            color: #111;
        }

        .s-btn-discover {
            padding: 12px 25px;

            border: 1px solid rgba(255, 255, 255, 0.6);
            border-radius: 50px;

            background: transparent;
            color: #fff;

            font-size: 11px;
            font-weight: 600;

            letter-spacing: 1px;
            text-transform: uppercase;

            cursor: pointer;

            transition: 0.3s ease;
        }

        .s-btn-discover:hover {
            background: #fff;
            color: #111;
        }

        /* =========================================================
           THUMBNAILS
            ========================================================= */

        .s-thumbs {
            position: absolute;

            right: 35px;
            bottom: 70px;

            z-index: 10;

            display: flex;
            gap: 10px;
        }

        .s-thumb {
            width: 75px;
            height: 95px;

            border-radius: 8px;

            background-size: cover;
            background-position: center;

            border: 2px solid transparent;

            cursor: pointer;

            overflow: hidden;

            transition: 0.3s ease;
        }

        .s-thumb:hover {
            transform: translateY(-5px);
        }

        .s-thumb.active-thumb {
            border-color: #ecad29;
            transform: translateY(-8px);
        }


        /* =========================================================
           BOTTOM CONTROLS
            ========================================================= */

        .s-bottom {
            position: absolute;

            left: 7%;
            bottom: 35px;

            z-index: 10;

            display: flex;
            align-items: center;

            gap: 18px;
        }

        .s-arrows {
            display: flex;
            gap: 8px;
        }

        .s-arrow {
            width: 42px;
            height: 42px;

            border-radius: 50%;

            border: 1px solid rgba(255, 255, 255, 0.35);

            background: transparent;
            color: #fff;

            display: flex;
            align-items: center;
            justify-content: center;

            cursor: pointer;

            transition: 0.3s ease;
        }

        .s-arrow:hover {
            border-color: #ecad29;
            color: #ecad29;
        }

        /* Progress */
        .s-progress {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .s-progress-bar {
            width: 150px;
            height: 3px;

            background: rgba(255, 255, 255, 0.25);

            border-radius: 20px;
        }

        .s-progress-fill {
            height: 100%;
            width: 0;

            background: #ecad29;

            border-radius: 20px;

            transition: width 0.4s ease;
        }

        .s-count {
            min-width: 50px;

            color: rgba(255, 255, 255, 0.75);

            font-size: 12px;
        }

        /* Top progress */
        .s-indicator {
            position: absolute;

            top: 0;
            left: 0;

            height: 3px;

            width: 0;

            background: #ecad29;

            z-index: 20;
        }

        /* =========================================================
           TABLET
            ========================================================= */
        @media (max-width: 991px) {

            #slider-root {
                height: 70vh;
                min-height: 350px;
                max-height: 550px;
            }

            .s-content {
                left: 5%;
                bottom: 15%;
                width: 500px;
            }

            .s-thumbs {
                right: 20px;
                bottom: 60px;
            }

            .s-thumb {
                width: 60px;
                height: 78px;
            }
        }


        /* =========================================================
           MOBILE
            ========================================================= */

        @media (max-width: 767px) {

            #slider-root {
                height: 65vh;
                min-height: 450px;
                max-height: 580px;
            }

            .s-overlay {
                background:
                    linear-gradient(to top,
                        rgba(0, 0, 0, 0.82) 0%,
                        rgba(0, 0, 0, 0.45) 45%,
                        rgba(0, 0, 0, 0.10) 100%);
            }

            .s-content {
                left: 20px;
                right: 20px;
                bottom: 105px;

                width: auto;
                max-width: none;
            }

            .s-place {
                font-size: 10px;
                letter-spacing: 1.5px;
            }

            .s-title,
            .s-title2 {
                font-size: clamp(34px, 11vw, 52px);
            }

            .s-desc {
                font-size: 12px;
                line-height: 1.6;

                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;

                overflow: hidden;
            }

            .s-cta {
                margin-top: 15px;
            }

            .s-btn-bookmark {
                width: 40px;
                height: 40px;
            }

            .s-btn-discover {
                padding: 10px 18px;
            }

            .s-thumbs {
                display: none;
            }

            .s-bottom {
                left: 20px;
                right: 20px;
                bottom: 20px;

                justify-content: space-between;
            }

            .s-progress-bar {
                width: 80px;
            }

            .s-arrow {
                width: 38px;
                height: 38px;
            }

            .s-dots {
                display: flex;
            }
        }


        /* =========================================================
           SMALL MOBILE
            ========================================================= */

        @media (max-width: 480px) {

            #slider-root {
                height: 58vh;
                min-height: 400px;
                max-height: 500px;
            }

            .s-content {
                left: 16px;
                right: 16px;
                bottom: 90px;
            }

            .s-title,
            .s-title2 {
                font-size: clamp(30px, 10vw, 44px);
            }

            .s-desc {
                font-size: 11px;
                line-height: 1.5;
            }

        }

        /* Overlay */
        .event-popup-overlay {
            position: fixed;
            inset: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.65);

            display: flex;
            align-items: center;
            justify-content: center;

            z-index: 99999;

            opacity: 0;
            visibility: hidden;
            transition: all 0.35s ease;

            padding: 20px;
        }

        /* Show popup */
        .event-popup-overlay.active {
            opacity: 1;
            visibility: visible;
        }


        /* Popup */
        .event-popup {
            position: relative;

            width: 850px;
            max-width: 100%;

            background: #fff;

            display: flex;

            border-radius: 16px;

            overflow: hidden;

            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);

            transform: scale(0.85) translateY(20px);

            transition: all 0.4s ease;
        }


        .event-popup-overlay.active .event-popup {
            transform: scale(1) translateY(0);
        }


        /* Image */
        .event-popup-image {
            width: 45%;
            min-height: 360px;
            min-height: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .event-popup-image img {
            width: 80%;
            height: 60%;

            object-fit: cover;

            display: block;
        }


        /* Content */
        .event-popup-content {
            width: 55%;

            padding: 45px 40px;

            background: #fff;

            color: #111;
        }


        /* Label */
        .event-popup-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;

            font-size: 13px;
            font-weight: 700;

            text-transform: uppercase;

            letter-spacing: 1px;

            color: #b08a2e;

            margin-bottom: 15px;
        }


        /* Heading */
        .event-popup-content h2 {
            margin: 0 0 15px;

            font-size: 42px;
            line-height: 1.05;

            font-weight: 800;

            color: #111;
        }


        /* Event Name */
        .event-popup-content p {
            margin: 0 0 22px;

            font-size: 16px;
            line-height: 1.6;

            color: #555;
        }


        /* Location */
        .event-popup-location {
            display: flex;

            align-items: flex-start;

            gap: 12px;

            margin-bottom: 15px;

            font-size: 15px;

            line-height: 1.5;

            color: #333;
        }

        .event-popup-location i {
            color: #b08a2e;

            font-size: 18px;

            margin-top: 3px;
        }


        /* Date */
        .event-popup-date {
            display: flex;

            align-items: center;

            gap: 12px;

            font-size: 15px;

            color: #333;

            margin-bottom: 28px;
        }

        .event-popup-date i {
            color: #b08a2e;

            font-size: 18px;
        }


        /* Buttons */
        .event-popup-buttons {
            display: flex;

            flex-wrap: wrap;

            gap: 10px;
        }

        .event-popup-buttons a {
            display: inline-flex;

            align-items: center;

            justify-content: center;

            min-height: 45px;

            padding: 0 18px;

            border-radius: 6px;

            text-decoration: none;

            font-size: 13px;

            font-weight: 700;

            transition: all 0.3s ease;
        }


        .event-register-btn {
            background: #b08a2e;

            color: #fff;
        }

        .event-register-btn:hover {
            background: #947222;

            color: #fff;

            transform: translateY(-2px);
        }


        .event-download-btn {
            background: #111;

            color: #fff;
        }

        .event-download-btn:hover {
            background: #333;

            color: #fff;

            transform: translateY(-2px);
        }


        /* Close */
        .event-popup-close {
            position: absolute;

            top: 15px;
            right: 15px;

            width: 38px;
            height: 38px;

            border: none;

            border-radius: 50%;

            background: rgba(255, 255, 255, 0.95);

            color: #111;

            display: flex;

            align-items: center;

            justify-content: center;

            cursor: pointer;

            z-index: 10;

            font-size: 17px;

            box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);

            transition: all 0.3s ease;
        }

        .event-popup-close:hover {
            background: #111;

            color: #fff;

            transform: rotate(90deg);
        }


        /* ================= MOBILE ================= */

        @media (max-width: 768px) {

            .event-popup {
                width: 95%;

                max-height: 90vh;

                overflow-y: auto;

                flex-direction: column;
            }

            .event-popup-image {
                width: 100%;

                height: 220px;

                min-height: auto;
            }

            .event-popup-content {
                width: 100%;

                padding: 30px 25px;
            }

            .event-popup-content h2 {
                font-size: 32px;
            }

            .event-popup-buttons {
                flex-direction: column;
            }

            .event-popup-buttons a {
                width: 100%;
            }
        }

        .about-us-img-2 img {
            width: 60%;
            aspect-ratio: 1 / 1.39;
            object-fit: cover;
            border: 8px solid var(--white-color);
            border-radius: 16px;
        }

        .s-thumb-label {
            color: black;
            font-size: 14px;
        }

        /* =========================================================
           EVENT HERO
          ========================================================= */

        .event-hero {
            position: relative;

            min-height: 590px;

            overflow: visible;

            background: #0c2741;
        }


        /* =========================================================
           BACKGROUND IMAGE
         ========================================================= */

        .event-hero-bg {
            position: absolute;
            inset: 0;

            background-image: url("{{ asset('images/event-banner.jpg') }}");
            background-size: cover;
            background-position: center;

            z-index: 0;
        }


        /* =========================================================
           DARK BLUE OVERLAY
          ========================================================= */

        .event-hero-overlay {
            position: absolute;
            inset: 0;

            background:
                linear-gradient(90deg,
                    rgba(5, 28, 50, .96) 0%,
                    rgba(6, 39, 67, .88) 42%,
                    rgba(7, 43, 70, .60) 72%,
                    rgba(5, 28, 50, .45) 100%);

            z-index: 1;
        }


        /* =========================================================
           DIAGONAL DESIGN
         ========================================================= */

        .event-shape-one {
            position: absolute;

            top: -100px;
            right: 18%;

            width: 150px;
            height: 750px;

            background: rgba(255, 255, 255, .08);

            transform: rotate(43deg);

            z-index: 2;

            pointer-events: none;
        }

        .event-shape-two {
            position: absolute;

            right: -100px;
            top: -80px;

            width: 250px;
            height: 180px;

            background: rgba(255, 205, 50, .08);

            transform: skewX(-35deg);

            z-index: 2;

            pointer-events: none;
        }


        /* =========================================================
           CONTAINER
         ========================================================= */

        .event-hero-container {
            position: relative;

            z-index: 5;

            padding-top: 82px;
            padding-bottom: 115px;
        }


        /* =========================================================
           LEFT CONTENT
         ========================================================= */

        .event-hero-content {
            position: relative;

            max-width: 610px;

            padding-right: 30px;
        }


        /* =========================================================
           BADGE
         ========================================================= */

        .event-badge {
            display: inline-flex;
            align-items: center;

            gap: 9px;

            padding: 9px 16px;

            margin-bottom: 18px;

            border: 1px solid rgba(255, 255, 255, .18);

            border-radius: 30px;

            background: rgba(255, 255, 255, .08);

            backdrop-filter: blur(8px);

            color: #ffd044;

            font-size: 12px;
            font-weight: 700;

            letter-spacing: .8px;
            text-transform: uppercase;
        }

        .event-badge i {
            font-size: 14px;
        }


        /* =========================================================
           HERO HEADING
          ========================================================= */

        .event-hero-content h1 {
            margin: 0;

            color: #050505;

            font-size: clamp(65px, 6.2vw, 88px);

            line-height: .84;

            font-weight: 900;

            letter-spacing: -4px;

            text-transform: uppercase;
        }

        .event-hero-content h1 span {
            color: #ffd13b;
        }


        /* =========================================================
           DESCRIPTION
            ========================================================= */

        .event-hero-description {
            max-width: 590px;

            margin: 28px 0 27px;

            color: rgba(255, 255, 255, .92);

            font-size: 16px;

            line-height: 1.8;

            text-shadow: 0 1px 2px rgba(0, 0, 0, .3);
        }


        /* =========================================================
           BUTTONS
          ========================================================= */

        .event-hero-buttons {
            display: flex;

            align-items: center;

            gap: 12px;
        }

        .event-btn {
            display: inline-flex;

            align-items: center;
            justify-content: center;

            gap: 9px;

            min-height: 46px;

            padding: 0 21px;

            border-radius: 7px;

            font-size: 13px;

            font-weight: 700;

            text-decoration: none;

            transition: all .3s ease;
        }

        .event-btn-primary {
            color: #fff;

            background: #f9a321;

            border: 1px solid #f9a321;

            box-shadow: 0 8px 20px rgba(249, 163, 33, .20);
        }

        .event-btn-primary:hover {
            color: #fff;

            background: #e98f0c;

            border-color: #e98f0c;

            transform: translateY(-2px);
        }

        .event-btn-outline {
            color: #fff;

            background: rgba(255, 255, 255, .05);

            border: 1px solid rgba(255, 255, 255, .38);

            backdrop-filter: blur(5px);
        }

        .event-btn-outline:hover {
            color: #fff;

            background: rgba(255, 255, 255, .14);

            transform: translateY(-2px);
        }


        /* =========================================================
           RIGHT EVENT CARD
            ========================================================= */

        .event-info-card {
            position: relative;

            max-width: 505px;

            margin-left: auto;

            padding: 28px;

            border-radius: 22px;

            background: rgba(255, 255, 255, .96);

            box-shadow:
                0 25px 60px rgba(0, 0, 0, .22),
                0 5px 20px rgba(0, 0, 0, .08);

            backdrop-filter: blur(15px);

            z-index: 6;
        }


        /* =========================================================
           CARD LABEL
          ========================================================= */

        .event-card-label {
            margin-bottom: 10px;

            color: #f18f16;

            font-size: 11px;

            font-weight: 800;

            letter-spacing: 1.2px;

            text-transform: uppercase;
        }


        /* =========================================================
           CARD TITLE
           ========================================================= */

        .event-info-card h2 {
            max-width: 430px;

            margin: 0;

            color: #0c447e;

            font-size: 25px;

            line-height: 1.28;

            font-weight: 800;
        }


        /* =========================================================
           DIVIDER
            ========================================================= */

        .event-card-divider {
            height: 1px;

            margin: 18px 0 3px;

            background: #e5e8ec;
        }


        /* =========================================================
           EVENT DETAIL
           ========================================================= */

        .event-detail {
            display: flex;

            align-items: center;

            gap: 13px;

            padding: 13px 0;

            border-bottom: 1px solid #e8ebef;
        }

        .event-detail:last-of-type {
            border-bottom: 0;
        }

        .event-detail-icon {
            flex: 0 0 43px;

            width: 43px;
            height: 43px;

            display: flex;

            align-items: center;
            justify-content: center;

            border-radius: 10px;

            background: #edf5fc;

            color: #084c89;

            font-size: 17px;
        }

        .event-detail-content {
            min-width: 0;
        }

        .event-detail-content span {
            display: block;

            margin-bottom: 3px;

            color: #8797a8;

            font-size: 9px;

            font-weight: 700;

            letter-spacing: .6px;
        }

        .event-detail-content strong {
            display: block;

            color: #172a3d;

            font-size: 12px;

            line-height: 1.5;

            font-weight: 700;
        }


        /* =========================================================
           REGISTRATION STATUS
         ========================================================= */

        .registration-status {
            display: flex;

            align-items: center;

            gap: 8px;

            margin-top: 13px;

            padding: 11px 13px;

            border-radius: 8px;

            background: #edf9f1;

            color: #27894d;

            font-size: 11px;

            font-weight: 700;
        }

        .status-dot {
            width: 9px;
            height: 9px;

            flex: 0 0 9px;

            border-radius: 50%;

            background: #35ad63;

            box-shadow: 0 0 0 4px rgba(53, 173, 99, .12);
        }


        /* =========================================================
           BOTTOM INFORMATION CARD
           ========================================================= */

        .event-bottom-wrapper {
            position: absolute;

            left: 0;
            right: 0;

            bottom: -21px;

            z-index: 20;
        }

        .event-bottom-card {
            display: grid;

            grid-template-columns: repeat(3, 1fr);

            min-height: 86px;

            overflow: hidden;

            border: 1px solid #e1e7ed;

            border-radius: 15px;

            background: #fff;

            box-shadow:
                0 12px 35px rgba(17, 38, 58, .12);
        }


        /* =========================================================
           BOTTOM ITEM
         ========================================================= */

        .event-bottom-item {
            display: flex;

            align-items: center;

            gap: 14px;

            padding: 15px 23px;

            border-right: 1px solid #e2e7ec;
        }

        .event-bottom-item:last-child {
            border-right: 0;
        }


        /* =========================================================
           BOTTOM ICON
         ========================================================= */

        .event-bottom-icon {
            width: 46px;
            height: 46px;

            flex: 0 0 46px;

            display: flex;

            align-items: center;
            justify-content: center;

            border-radius: 12px;

            font-size: 17px;
        }

        .date-icon {
            color: #f29b1e;
            background: #fff3df;
        }

        .location-icon {
            color: #15518b;
            background: #edf5fc;
        }

        .category-icon {
            color: #28a05b;
            background: #edf9f1;
        }


        /* =========================================================
           BOTTOM TEXT
          ========================================================= */

        .event-bottom-item span {
            display: block;

            margin-bottom: 4px;

            color: #91a0af;

            font-size: 9px;

            font-weight: 700;

            letter-spacing: .6px;
        }

        .event-bottom-item strong {
            display: block;

            color: #1c2d3d;

            font-size: 12px;

            font-weight: 700;
        }


        /* =========================================================
           LARGE TABLET
         ========================================================= */

        @media (max-width: 1199px) {

            .event-hero-content h1 {
                font-size: 72px;
            }

            .event-info-card {
                max-width: 470px;
            }

        }


        /* =========================================================
           TABLET
          ========================================================= */

        @media (max-width: 991px) {

            .event-hero {
                min-height: auto;
            }

            .event-hero-container {
                padding-top: 65px;
                padding-bottom: 100px;
            }

            .event-hero-content {
                max-width: 100%;
                padding-right: 0;
                margin-bottom: 35px;
            }

            .event-hero-content h1 {
                font-size: 68px;
            }

            .event-info-card {
                max-width: 100%;
                margin: 0;
            }

            .event-bottom-wrapper {
                bottom: -35px;
            }

            .event-bottom-card {
                grid-template-columns: 1fr;
            }

            .event-bottom-item {
                min-height: 70px;

                border-right: 0;
                border-bottom: 1px solid #e2e7ec;
            }

            .event-bottom-item:last-child {
                border-bottom: 0;
            }

        }


        /* =========================================================
           MOBILE
            ========================================================= */

        @media (max-width: 767px) {

            .event-hero-container {
                padding-top: 45px;
                padding-bottom: 70px;
            }

            .event-badge {
                padding: 8px 12px;

                font-size: 9px;
            }

            .event-hero-content h1 {
                font-size: 52px;

                letter-spacing: -2px;
            }

            .event-hero-description {
                margin: 22px 0;

                font-size: 13px;

                line-height: 1.7;
            }

            .event-hero-buttons {
                flex-wrap: wrap;
            }

            .event-btn {
                min-height: 43px;

                padding: 0 15px;

                font-size: 11px;
            }

            .event-info-card {
                padding: 21px;

                border-radius: 17px;
            }

            .event-info-card h2 {
                font-size: 21px;
            }

            .event-bottom-wrapper {
                position: relative;

                bottom: auto;

                margin-top: -35px;

                padding-bottom: 0;
            }

            .event-bottom-card {
                margin: 0 15px;
            }

        }


        /* =========================================================
           SMALL MOBILE
         ========================================================= */

        @media (max-width: 480px) {

            .event-hero-content h1 {
                font-size: 44px;
            }

            .event-hero-buttons {
                display: grid;

                grid-template-columns: 1fr;
            }

            .event-btn {
                width: 100%;
            }

            .event-detail-content strong {
                font-size: 11px;
            }

            .event-bottom-item {
                padding: 13px 16px;
            }

        }

         .uma-purpose {
        background-color: #faf8f2;
        padding: 70px 0;
    }
 
    .uma-purpose__eyebrow {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 18px;
    }
 
    .uma-purpose__eyebrow-line {
        width: 28px;
        height: 2px;
        background-color: #e0642a;
        display: inline-block;
    }
 
    .uma-purpose__eyebrow span:last-child {
        color: #e0642a;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
 
    .uma-purpose__heading {
        color: #0a1a33;
        font-size: 38px;
        line-height: 1.25;
        font-weight: 600;
        margin: 0;
    }
 
    .uma-purpose__accent {
        color: #e0642a;
    }
 
    .uma-purpose__stats {
        display: flex;
        align-items: center;
        gap: 24px;
        margin-top: 32px;
    }
 
    .uma-purpose__stat {
        display: flex;
        flex-direction: column;
    }
 
    .uma-purpose__stat-num {
        color: #0a1a33;
        font-size: 24px;
        font-weight: 700;
        line-height: 1;
    }
 
    .uma-purpose__stat-label {
        color: #6b7280;
        font-size: 12px;
        margin-top: 6px;
    }
 
    .uma-purpose__stat-divider {
        width: 1px;
        height: 32px;
        background-color: #e2ddd1;
    }
 
    .uma-purpose__card {
        background-color: #ffffff;
        border: 1px solid #eae5d8;
        border-radius: 14px;
        padding: 32px;
        box-shadow: 0 1px 3px rgba(10, 26, 51, 0.05);
    }
 
    .uma-purpose__card-text {
        color: #28313f;
        font-size: 16px;
        line-height: 1.7;
        margin: 0 0 20px;
    }
 
    .uma-purpose__card-row {
        display: flex;
        gap: 14px;
        margin-bottom: 16px;
    }
 
    .uma-purpose__card-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
        border-radius: 8px;
        background-color: #e7f4ea;
        display: flex;
        align-items: center;
        justify-content: center;
    }
 
    .uma-purpose__card-icon i {
        color: #2f8a4e;
        font-size: 16px;
    }
 
    .uma-purpose__card-desc {
        color: #6b7280;
        font-size: 14px;
        line-height: 1.7;
        margin: 0;
        padding-top: 4px;
    }
 
    .uma-purpose__link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #e0642a;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        border-bottom: 1px solid #e0642a;
        padding-bottom: 3px;
        transition: gap 0.2s ease;
    }
 
    .uma-purpose__link:hover {
        color: #e0642a;
        gap: 12px;
    }
 
    .uma-purpose__link i {
        font-size: 13px;
    }
 
    @media (max-width: 991px) {
        .uma-purpose__heading {
            font-size: 30px;
        }
 
        .uma-purpose {
            padding: 50px 0;
        }
    }
 
    @media (max-width: 575px) {
        .uma-purpose__stats {
            gap: 16px;
        }
 
        .uma-purpose__card {
            padding: 24px;
        }



         .uma-steps {
        background-color: #faf8f2;
        /* padding: 70px 0; */
    }
 
    .uma-steps__card {
        background-color: #ffffff;
        border: 1px solid #eae5d8;
        border-radius: 14px;
        padding: 28px 24px;
        box-shadow: 0 1px 3px rgba(10, 26, 51, 0.05);
        height: 100%;
    }
 
    .uma-steps__top {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 16px;
    }
 
    .uma-steps__icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
 
    .uma-steps__icon i {
        font-size: 16px;
    }
 
    .uma-steps__icon--orange {
        background-color: #fbe6d9;
    }
 
    .uma-steps__icon--orange i {
        color: #e0642a;
    }
 
    .uma-steps__icon--blue {
        background-color: #e2edf9;
    }
 
    .uma-steps__icon--blue i {
        color: #3d7bc4;
    }
 
    .uma-steps__icon--green {
        background-color: #e7f4ea;
    }
 
    .uma-steps__icon--green i {
        color: #2f8a4e;
    }
 
    .uma-steps__label {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
    }
 
    .uma-steps__label--orange {
        color: #e0642a;
    }
 
    .uma-steps__label--blue {
        color: #3d7bc4;
    }
 
    .uma-steps__label--green {
        color: #2f8a4e;
    }
 
    .uma-steps__title {
        color: #0a1a33;
        font-size: 20px;
        font-weight: 600;
        margin: 0 0 8px;
    }
 
    .uma-steps__text {
        color: #6b7280;
        font-size: 14px;
        line-height: 1.7;
        margin: 0;
    }
 
    .uma-steps .col-md-4:nth-child(1) .uma-steps__card {
        border-top: 3px solid #e0642a;
    }
 
    .uma-steps .col-md-4:nth-child(2) .uma-steps__card {
        border-top: 3px solid #3d7bc4;
    }
 
    .uma-steps .col-md-4:nth-child(3) .uma-steps__card {
        border-top: 3px solid #2f8a4e;
    }
 
    @media (max-width: 767px) {
        .uma-steps {
            padding: 50px 0;
        }
    }
    
    }


      .uma-steps {
        background-color: #faf8f2;
        padding: 70px 0;
    }
 
    .uma-steps__card {
        background-color: #ffffff;
        border: 1px solid #eae5d8;
        /* border-radius: 14px; */
        padding: 28px 24px;
        box-shadow: 0 1px 3px rgba(10, 26, 51, 0.05);
        height: 100%;
    }
 
    :xr-overlay {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 16px;
    }
 
    .uma-steps__icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
 
    .uma-steps__icon i {
        font-size: 16px;
    }
 
    .uma-steps__icon--orange {
        background-color: #fbe6d9;
    }
 
    .uma-steps__icon--orange i {
        color: #e0642a;
    }
 
    .uma-steps__icon--blue {
        background-color: #e2edf9;
    }
 
    .uma-steps__icon--blue i {
        color: #3d7bc4;
    }
 
    .uma-steps__icon--green {
        background-color: #e7f4ea;
    }
 
    .uma-steps__icon--green i {
        color: #2f8a4e;
    }
 
    .uma-steps__label {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
    }
 
    .uma-steps__label--orange {
        color: #e0642a;
    }
 
    .uma-steps__label--blue {
        color: #3d7bc4;
    }
 
    .uma-steps__label--green {
        color: #2f8a4e;
    }
 
    .uma-steps__title {
        color: #0a1a33;
        font-size: 20px;
        font-weight: 600;
        margin: 0 0 8px;
    }
 
    .uma-steps__text {
        color: #6b7280;
        font-size: 14px;
        line-height: 1.7;
        margin: 0;
    }
 
    .uma-steps .col-md-4:nth-child(1) .uma-steps__card {
        border-top: 3px solid #e0642a;
    }
 
    .uma-steps .col-md-4:nth-child(2) .uma-steps__card {
        border-top: 3px solid #3d7bc4;
    }
 
    .uma-steps .col-md-4:nth-child(3) .uma-steps__card {
        border-top: 3px solid #2f8a4e;
    }
 
    @media (max-width: 767px) {
        .uma-steps {
            padding: 50px 0;
        }
    }


    .uma-events {
        background-color: #faf8f2;
        padding: 70px 0;
    }
 
    .uma-events__header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        flex-wrap: wrap;
        gap: 16px;
        margin-bottom: 28px;
    }
 
    .uma-events__eyebrow {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 14px;
    }
 
    .uma-events__eyebrow-line {
        width: 28px;
        height: 2px;
        background-color: #e0642a;
        display: inline-block;
    }
 
    .uma-events__eyebrow span:last-child {
        color: #e0642a;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
 
    .uma-events__heading {
        color: #0a1a33;
        font-size: 30px;
        font-weight: 600;
        margin: 0;
    }
 
    .uma-events__link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #0a1a33;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        border-bottom: 1px solid #0a1a33;
        padding-bottom: 3px;
        white-space: nowrap;
    }
 
    .uma-events__link i {
        font-size: 12px;
    }
 
    .uma-events__list {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
 
    .uma-events__card {
        background-color: #ffffff;
        border: 1px solid #eae5d8;
        border-radius: 14px;
        padding: 24px;
        display: flex;
        align-items: center;
        gap: 20px;
        box-shadow: 0 1px 3px rgba(10, 26, 51, 0.05);
    }
 
    .uma-events__badge {
        width: 64px;
        height: 64px;
        min-width: 64px;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
 
    .uma-events__badge--orange {
        background-color: #fbe6d9;
    }
 
    .uma-events__badge--orange .uma-events__badge-top,
    .uma-events__badge--orange .uma-events__badge-bottom {
        color: #e0642a;
    }
 
    .uma-events__badge--blue {
        background-color: #e2edf9;
    }
 
    .uma-events__badge--blue .uma-events__badge-top,
    .uma-events__badge--blue .uma-events__badge-bottom {
        color: #3d7bc4;
    }
 
    .uma-events__badge-top {
        font-size: 10px;
        font-weight: 600;
    }
 
    .uma-events__badge-bottom {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }
 
    .uma-events__body {
        flex: 1;
        min-width: 0;
    }
 
    .uma-events__status {
        display: inline-block;
        font-size: 11px;
        font-weight: 600;
        padding: 3px 10px;
        border-radius: 20px;
        margin-bottom: 8px;
    }
 
    .uma-events__status--green {
        background-color: #e7f4ea;
        color: #2f8a4e;
    }
 
    .uma-events__status--orange {
        background-color: #fbe6d9;
        color: #e0642a;
    }
 
    .uma-events__title {
        color: #0a1a33;
        font-size: 18px;
        font-weight: 600;
        margin: 0 0 6px;
    }
 
    .uma-events__text {
        color: #6b7280;
        font-size: 13px;
        margin: 0 0 10px;
    }
 
    .uma-events__meta {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }
 
    .uma-events__meta span {
        display: flex;
        align-items: center;
        gap: 6px;
        color: #3d7bc4;
        font-size: 12px;
        font-weight: 500;
    }
 
    .uma-events__meta i {
        font-size: 12px;
    }
 
    .uma-events__arrow {
        width: 38px;
        height: 38px;
        min-width: 38px;
        border-radius: 50%;
        border: 1px solid #dcd6c8;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #0a1a33;
        text-decoration: none;
        transition: background-color 0.2s ease;
    }
 
    .uma-events__arrow:hover {
        background-color: #faf8f2;
        color: #0a1a33;
    }
 
    .uma-events__arrow i {
        font-size: 14px;
    }
 
    .uma-events__note {
        color: #9a978c;
        font-size: 12px;
        margin-top: 20px;
        padding-top: 16px;
        border-top: 1px solid #eae5d8;
    }
 
    @media (max-width: 767px) {
        .uma-events {
            padding: 50px 0;
        }
 
        .uma-events__card {
            flex-wrap: wrap;
        }
 
        .uma-events__arrow {
            margin-left: auto;
        }
    }


      .uma-highlights {
        background-color: #faf8f2;
        padding: 70px 0;
    }
 
    .uma-highlights__header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 28px;
    }
 
    .uma-highlights__eyebrow {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 14px;
    }
 
    .uma-highlights__eyebrow-line {
        width: 28px;
        height: 2px;
        background-color: #e0642a;
        display: inline-block;
    }
 
    .uma-highlights__eyebrow span:last-child {
        color: #e0642a;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
 
    .uma-highlights__heading {
        color: #0a1a33;
        font-size: 32px;
        font-weight: 600;
        margin: 0;
    }
 
    .uma-highlights__subtitle {
        color: #6b7280;
        font-size: 13px;
        margin: 0;
    }
 
    /* hero */
    .uma-highlights__hero {
        position: relative;
        border-radius: 18px;
        overflow: hidden;
        height: 340px;
        margin-bottom: 20px;
    }
 
    .uma-highlights__hero-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
 
    .uma-highlights__hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(0deg, rgba(10, 26, 51, 0.85) 0%, rgba(10, 26, 51, 0.15) 55%, transparent 100%);
    }
 
    .uma-highlights__hero-icon {
        position: absolute;
        top: 20px;
        left: 20px;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(4px);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }
 
    .uma-highlights__hero-icon i {
        color: #ffffff;
        font-size: 15px;
    }
 
    .uma-highlights__hero-body {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 28px 32px;
        z-index: 2;
    }
 
    .uma-highlights__tag--solid {
        display: inline-block;
        background-color: #e0642a;
        color: #ffffff;
        font-size: 11px;
        font-weight: 600;
        padding: 4px 12px;
        border-radius: 20px;
        margin-bottom: 12px;
    }
 
    .uma-highlights__hero-title {
        color: #ffffff;
        font-size: 24px;
        font-weight: 600;
        margin: 0 0 6px;
    }
 
    .uma-highlights__hero-text {
        color: #d9dde5;
        font-size: 13.5px;
        margin: 0;
        max-width: 480px;
    }
 
    /* editorial row */
    .uma-highlights__row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-bottom: 16px;
    }
 
    .uma-highlights__story {
        background-color: #ffffff;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 1px 3px rgba(10, 26, 51, 0.05);
    }
 
    .uma-highlights__story-img {
        position: relative;
        height: 150px;
    }
 
    .uma-highlights__story-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }
 
    .uma-highlights__index {
        position: absolute;
        top: 12px;
        left: 12px;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background-color: #0a1a33;
        color: #ffffff;
        font-size: 11px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
    }
 
    .uma-highlights__story-body {
        padding: 1rem;
    }
 
    .uma-highlights__label {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }
 
    .uma-highlights__label--blue {
        color: #3d7bc4;
    }
 
    .uma-highlights__label--green {
        color: #2f8a4e;
    }
 
    .uma-highlights__story-title {
        color: #0a1a33;
        font-size: 15px;
        font-weight: 600;
        margin: 6px 0 4px;
    }
 
    .uma-highlights__story-text {
        color: #6b7280;
        font-size: 12px;
        margin: 0;
    }
 
    .uma-highlights__stat {
        background-color: #0a1a33;
        border-radius: 14px;
        padding: 1.25rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
 
    .uma-highlights__stat-num {
        color: #f5a623;
        font-size: 30px;
        font-weight: 700;
        line-height: 1;
    }
 
    .uma-highlights__stat-text {
        color: #a9b6cc;
        font-size: 12.5px;
        margin: 10px 0 0;
        line-height: 1.6;
    }
 
    /* filmstrip */
    .uma-highlights__strip {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
 
    .uma-highlights__thumb {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        aspect-ratio: 1 / 1;
    }
 
    .uma-highlights__thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }
 
    .uma-highlights__thumb-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(0deg, rgba(10, 26, 51, 0.85), transparent);
        padding: 8px 10px;
    }
 
    .uma-highlights__thumb-overlay p {
        color: #ffffff;
        font-size: 11px;
        font-weight: 500;
        margin: 0;
    }
 
    @media (max-width: 991px) {
        .uma-highlights__row {
            grid-template-columns: 1fr 1fr;
        }
 
        .uma-highlights__stat {
            grid-column: span 2;
        }
    }
 
    @media (max-width: 767px) {
        .uma-highlights {
            padding: 50px 0;
        }
 
        .uma-highlights__hero {
            height: 260px;
        }
 
        .uma-highlights__row {
            grid-template-columns: 1fr;
        }
 
        .uma-highlights__stat {
            grid-column: span 1;
        }
 
        .uma-highlights__strip {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    


/* =========================================================
   VISION SECTION
========================================================= */

.vision-section {
    position: relative;

    padding: 100px 0;

    background: #fff;

    overflow: hidden;
}


/* =========================================================
   IMAGE AREA
========================================================= */

.vision-images {
    position: relative;

    width: 100%;
    min-height: 550px;

    padding: 25px 45px 40px 0;
}


/* Decorative Gold Shape */

.vision-shape {
    position: absolute;

    top: 0;
    left: -25px;

    width: 150px;
    height: 150px;

    border: 2px solid #c59a35;

    border-radius: 50%;

    opacity: .35;
}


/* Main Image */

.vision-main-image {
    position: relative;

    width: 78%;
    height: 450px;

    margin-left: auto;

    overflow: hidden;

    border-radius: 8px;

    z-index: 2;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}


.vision-main-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 55%,
        rgba(0, 0, 0, .22)
    );
}


.vision-main-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .6s ease;
}


.vision-main-image:hover img {
    transform: scale(1.05);
}


/* =========================================================
   SMALL IMAGE
========================================================= */

.vision-small-image {
    position: absolute;

    left: 0;
    bottom: 15px;

    width: 45%;
    height: 230px;

    padding: 8px;

    background: #fff;

    border-radius: 8px;

    z-index: 4;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .18);
}


.vision-small-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 5px;
}


/* =========================================================
   BADGE
========================================================= */

.vision-badge {
    position: absolute;

    right: 25px;
    bottom: 55px;

    width: 125px;
    height: 125px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    background: #c59a35;

    color: #fff;

    border-radius: 50%;

    z-index: 5;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .2);

    text-align: center;
}


.vision-badge strong {
    display: block;

    font-size: 34px;
    font-weight: 800;

    line-height: 1;
}


.vision-badge span {
    margin-top: 6px;

    font-size: 11px;
    font-weight: 600;

    line-height: 1.3;

    text-transform: uppercase;
}


/* =========================================================
   CONTENT
========================================================= */

.vision-content {
    padding-left: 20px;
}


/* =========================================================
   LABEL
========================================================= */

.vision-label {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 14px;
}


.vision-label span {
    width: 35px;
    height: 2px;

    background: #c59a35;
}


.vision-label p {
    margin: 0;

    color: #c59a35;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* =========================================================
   HEADING
========================================================= */

.vision-content h2 {
    margin: 0 0 18px;

    color: #171717;

    font-size: 48px;
    font-weight: 800;

    line-height: 1.1;
}


.vision-content h2 span {
    color: #c59a35;
}


/* =========================================================
   INTRO
========================================================= */

.vision-intro {
    max-width: 600px;

    margin: 0 0 30px;

    color: #666;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   VISION POINTS
========================================================= */

.vision-points {
    display: flex;

    flex-direction: column;

    gap: 24px;
}


.vision-point {
    display: flex;

    align-items: flex-start;

    gap: 17px;
}


.vision-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #faf7ef;

    color: #c59a35;

    border-radius: 8px;

    font-size: 18px;

    border: 1px solid rgba(197, 154, 53, .25);
}


.vision-point h4 {
    margin: 0 0 7px;

    color: #222;

    font-size: 17px;
    font-weight: 700;
}


.vision-point p {
    margin: 0;

    color: #777;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   BOTTOM HIGHLIGHT
========================================================= */

.vision-highlight {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 32px;

    padding: 16px 18px;

    background: #111;

    border-radius: 7px;
}


.vision-highlight-icon {
    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #c59a35;

    color: #fff;

    border-radius: 50%;

    font-size: 16px;
}


.vision-highlight strong {
    display: block;

    color: #fff;

    font-size: 14px;

    font-weight: 700;
}


.vision-highlight span {
    display: block;

    margin-top: 3px;

    color: #aaa;

    font-size: 11px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .vision-section {
        padding: 75px 0;
    }

    .vision-images {
        min-height: 500px;

        max-width: 650px;

        margin: auto;
    }

    .vision-content {
        padding-left: 0;
    }

    .vision-content h2 {
        font-size: 42px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .vision-section {
        padding: 60px 0;
    }


    .vision-images {
        min-height: 410px;

        padding: 20px 15px 30px 0;
    }


    .vision-main-image {
        width: 82%;

        height: 330px;
    }


    .vision-small-image {
        width: 48%;

        height: 170px;

        bottom: 0;
    }


    .vision-badge {
        right: 5px;

        bottom: 35px;

        width: 95px;
        height: 95px;
    }


    .vision-badge strong {
        font-size: 27px;
    }


    .vision-badge span {
        font-size: 9px;
    }


    .vision-content h2 {
        font-size: 36px;
    }


    .vision-intro {
        font-size: 14px;
    }


    .vision-point {
        gap: 12px;
    }


    .vision-point h4 {
        font-size: 15px;
    }


    .vision-point p {
        font-size: 12px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .vision-images {
        min-height: 360px;
    }


    .vision-main-image {
        height: 285px;

        width: 85%;
    }


    .vision-small-image {
        height: 145px;

        width: 52%;
    }


    .vision-badge {
        width: 82px;
        height: 82px;

        right: 0;
    }


    .vision-badge strong {
        font-size: 23px;
    }


    .vision-content h2 {
        font-size: 31px;
    }


    .vision-label p {
        font-size: 11px;
    }


    .vision-highlight {
        padding: 13px;
    }

}

/* ==========================================
   SMALL BLOG EMPTY STATE
========================================== */

.athletics-empty-state {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;

    max-width: 1150px;
    min-height: 190px;

    margin: 10px auto 20px;
    padding: 30px 40px;

    border-radius: 16px;

    background: linear-gradient(
        135deg,
        #f8f8f8,
        #ffffff
    );

    border: 1px solid #eeeeee;

    overflow: hidden;
}


/* Icon */

.athletics-empty-icon {
    flex: 0 0 70px;

    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #111;
    color: #fff;

    font-size: 28px;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}


/* Content */

.athletics-empty-content {
    text-align: left;
}


/* Badge */

.empty-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    margin-bottom: 6px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.2px;

    color: #b08a2e;
}


/* Heading */

.athletics-empty-content h3 {
    margin: 0 0 7px;

    font-size: 24px;
    line-height: 1.3;

    color: #111;
}


/* Description */

.athletics-empty-content p {
    max-width: 600px;

    margin: 0;

    font-size: 13px;
    line-height: 1.6;

    color: #777;
}


/* Subtle decorative line */

.athletics-empty-state::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -90px;
    top: -90px;

    border: 1px solid rgba(176, 138, 46, 0.12);

    border-radius: 50%;
}


/* Hover */

.athletics-empty-state:hover .athletics-empty-icon {
    transform: translateY(-3px);
    transition: 0.3s ease;
}


/* Mobile */

@media (max-width: 767px) {

    .athletics-empty-state {
        flex-direction: column;

        text-align: center;

        min-height: auto;

        padding: 30px 20px;

        gap: 15px;
    }

    .athletics-empty-content {
        text-align: center;
    }

    .athletics-empty-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .athletics-empty-content h3 {
        font-size: 21px;
    }

    .athletics-empty-content p {
        font-size: 12px;
    }

}


