

    /* =====================================================
       GLOBAL
    ====================================================== */

    * {
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        scroll-padding-top: 75px;
    }

    body {
        margin: 0;
        padding: 0;

        background: #ffffff;
        color: #171717;

        font-family:
            Arial,
            Helvetica,
            sans-serif;

        overflow-x: hidden;
    }

    img {
        max-width: 100%;
    }

    a {
        text-decoration: none;
    }

    section {
        position: relative;
    }


    /* =====================================================
       COMMON
    ====================================================== */

    .section-padding {
        padding: 80px 20px;
    }

    .content-section {
        padding: 80px 20px;
    }

    .section-heading {
        margin: 0 0 15px;

        color: #111111;

        font-size: clamp(30px, 4vw, 44px);
        line-height: 1.2;

        font-weight: 700;

        text-align: center;
    }

    .section-heading span {
        color: #1764aa;
    }

    .section-subheading {
        max-width: 800px;

        margin: 0 auto 45px;

        color: #666666;

        font-size: 16px;
        line-height: 1.75;

        text-align: center;
    }

    .section-label {
        margin-bottom: 12px;

        color: #1764aa;

        font-size: 13px;
        font-weight: 700;

        letter-spacing: 1.5px;

        text-transform: uppercase;
    }

    .section-title {
        margin: 0 0 20px;

        color: #151515;

        font-size: clamp(27px, 3vw, 38px);
        line-height: 1.25;

        font-weight: 700;
    }

    .section-text {
        margin-bottom: 16px;

        color: #555555;

        font-size: 16px;
        line-height: 1.8;
    }


    /* =====================================================
       BUTTONS
    ====================================================== */

    .primary-button,
    .secondary-button {
        display: inline-flex;

        align-items: center;
        justify-content: center;

        min-height: 48px;

        padding: 12px 24px;

        border-radius: 5px;

        font-size: 14px;
        font-weight: 700;

        transition:
            transform 0.3s ease,
            background 0.3s ease,
            color 0.3s ease,
            border-color 0.3s ease,
            box-shadow 0.3s ease;
    }

    .primary-button {
        background: #1764aa;
        color: #ffffff;

        border: 1px solid #1764aa;

        box-shadow:
            0 5px 15px rgba(23, 100, 170, 0.18);
    }

    .primary-button:hover {
        background: #0e4f8a;
        color: #ffffff;

        transform: translateY(-2px);

        box-shadow:
            0 8px 20px rgba(23, 100, 170, 0.25);
    }

    .secondary-button {
        background: transparent;
        color: #ffffff;

        border: 1px solid rgba(255, 255, 255, 0.4);
    }

    .secondary-button:hover {
        background: #ffffff;
        color: #071b42;

        border-color: #ffffff;

        transform: translateY(-2px);
    }

    .future-buttons {
        display: flex;

        align-items: center;
        justify-content: center;

        flex-wrap: wrap;

        gap: 12px;
    }


    /* =====================================================
       HEADER
    ====================================================== */

    .site-header {
        position: sticky;

        top: 0;

        z-index: 9999;

        background:
            linear-gradient(
                90deg,
                #061735 0%,
                #092653 55%,
                #0d376b 100%
            );

        border-bottom:
            2px solid rgba(255, 255, 255, 0.15);

        box-shadow:
            0 5px 18px rgba(0, 0, 0, 0.18);
    }

    .header-inner {
        min-height: 68px;

        display: flex;

        align-items: center;
    }

    .header-title {
        margin: 0;

        color: #ffffff;

        font-size: 26px;
        line-height: 1.2;

        font-weight: 600;

        letter-spacing: 0.2px;
    }


    /* =====================================================
       TOP BANNER
       
       IMPORTANT:
       Original banner ratio is preserved.
       No object-fit: cover.
       No forced 16:9 ratio.
    ====================================================== */

    .top-banner {
        width: 100%;

        margin: 0;
        padding: 0;

        background: #ffffff;

        position: relative;

        z-index: 1;

        overflow: visible;
    }

    .top-banner img {
        width: 100%;
        height: auto;

        display: block;

        aspect-ratio: auto;

        object-fit: contain;
    }


    /* =====================================================
       HERO
    ====================================================== */

    .hero-section {
        position: relative;

        z-index: 2;

        margin-top: -115px;

        padding: 70px 20px 80px;

        background:
            linear-gradient(
                135deg,
                #061735 0%,
                #092653 48%,
                #1764aa 100%
            );

        color: #ffffff;

        border-radius:
            0 0 18px 18px;

        box-shadow:
            0 18px 45px rgba(0, 0, 0, 0.20);
    }

    .hero-content {
        max-width: 1000px;

        margin: 0 auto;

        text-align: center;
    }

    .hero-label {
        margin-bottom: 16px;

        color: #8fc5ed;

        font-size: 14px;
        font-weight: 700;

        letter-spacing: 1.8px;

        text-transform: uppercase;
    }

    .hero-title {
        margin: 0 auto 18px;

        color: #ffffff;

        font-size: clamp(42px, 6vw, 72px);

        line-height: 1.05;

        font-weight: 800;

        letter-spacing: -1px;
    }

    .hero-subtitle {
        margin-bottom: 18px;

        color: #ffffff;

        font-size: clamp(19px, 2.5vw, 27px);

        line-height: 1.4;

        font-weight: 600;
    }

    .hero-description {
        max-width: 720px;

        margin: 0 auto 30px;

        color:
            rgba(255, 255, 255, 0.78);

        font-size: 18px;

        line-height: 1.7;
    }

    .hero-proof {
        display: flex;

        align-items: center;
        justify-content: center;

        flex-wrap: wrap;

        gap: 0;

        max-width: 850px;

        margin: 0 auto 32px;
    }

    .hero-proof span {
        position: relative;

        padding:
            4px 20px;

        color: #ffffff;

        font-size: 14px;

        font-weight: 700;

        white-space: nowrap;
    }

    .hero-proof span:not(:last-child)::after {
        content: "";

        position: absolute;

        top: 50%;
        right: 0;

        width: 1px;
        height: 20px;

        background:
            rgba(255, 255, 255, 0.28);

        transform:
            translateY(-50%);
    }

    .hero-buttons {
        display: flex;

        align-items: center;
        justify-content: center;

        flex-wrap: wrap;

        gap: 12px;
    }

    .hero-button {
        min-width: 190px;
    }


    /* =====================================================
       WHAT IS ICONIQ
    ====================================================== */

    .what-section {
        background: #ffffff;
    }

    .section-image-box {
        width: 100%;

        overflow: hidden;

        border-radius: 10px;

        background: #f6f7f9;

        box-shadow:
            0 12px 35px rgba(0, 0, 0, 0.10);
    }

    .section-image {
        width: 100%;
        height: auto;

        display: block;

        object-fit: cover;

        transition:
            transform 0.5s ease;
    }

    .section-image-box:hover .section-image {
        transform: scale(1.025);
    }


    /* =====================================================
       WHY ICONIQ
    ====================================================== */

    .why-section {
        background: #f6f7f9;
    }

    .why-card {
        height: 100%;

        padding: 32px 25px;

        background: #ffffff;

        border:
            1px solid #e5e5e5;

        border-radius: 8px;

        text-align: center;

        transition:
            transform 0.3s ease,
            box-shadow 0.3s ease;
    }

    .why-card:hover {
        transform: translateY(-7px);

        box-shadow:
            0 15px 35px rgba(0, 0, 0, 0.09);
    }

    .why-icon {
        width: 65px;
        height: 65px;

        margin: 0 auto 20px;

        display: flex;

        align-items: center;
        justify-content: center;

        background: #071b42;

        border-radius: 50%;

        color: #ffffff;

        font-size: 27px;
    }

    .why-card h3 {
        margin-bottom: 13px;

        color: #161616;

        font-size: 20px;

        font-weight: 700;
    }

    .why-card p {
        margin: 0;

        color: #666666;

        font-size: 14px;

        line-height: 1.7;
    }


    /* =====================================================
       STATS
    ====================================================== */

    .stats-section {
        padding: 50px 20px;

        background: #071b42;

        color: #ffffff;
    }

    .stat-item {
        height: 100%;

        padding: 15px 10px;

        text-align: center;
    }

    .stat-icon {
        margin-bottom: 12px;

        color: #7eb7e7;

        font-size: 30px;
    }

    .stat-number {
        margin-bottom: 8px;

        color: #ffffff;

        font-size: 38px;

        line-height: 1;

        font-weight: 800;
    }

    .stat-title {
        color:
            rgba(255, 255, 255, 0.72);

        font-size: 13px;

        font-weight: 600;

        letter-spacing: 1px;

        text-transform: uppercase;
    }


    /* =====================================================
       JOURNEY
    ====================================================== */

    .journey-section {
        background: #ffffff;

        padding: 80px 20px;
    }

    .journey-timeline {
        max-width: 1050px;

        margin: 55px auto 0;

        position: relative;
    }

    .journey-timeline::before {
        content: "";

        position: absolute;

        top: 0;
        bottom: 0;

        left: 50%;

        width: 2px;

        background: #d7e1ec;

        transform: translateX(-50%);
    }

    .journey-item {
        position: relative;

        width: 50%;

        padding:
            0 45px 55px;
    }

    .journey-item:last-child {
        padding-bottom: 0;
    }

    .journey-item:nth-child(odd) {
        left: 0;

        text-align: right;
    }

    .journey-item:nth-child(even) {
        left: 50%;

        text-align: left;
    }

    .journey-number {
        position: absolute;

        top: 0;

        width: 55px;
        height: 55px;

        display: flex;

        align-items: center;
        justify-content: center;

        background: #071b42;

        border:
            5px solid #ffffff;

        border-radius: 50%;

        color: #ffffff;

        font-size: 14px;

        font-weight: 800;

        box-shadow:
            0 5px 18px rgba(0, 0, 0, 0.15);

        z-index: 2;
    }

    .journey-item:nth-child(odd)
    .journey-number {
        right: -27px;
    }

    .journey-item:nth-child(even)
    .journey-number {
        left: -27px;
    }

    .journey-content {
        padding: 27px;

        background: #f6f7f9;

        border:
            1px solid #e5e5e5;

        border-radius: 8px;

        transition:
            transform 0.3s ease,
            box-shadow 0.3s ease;
    }

    .journey-content:hover {
        transform: translateY(-5px);

        box-shadow:
            0 12px 30px rgba(0, 0, 0, 0.09);
    }

    .journey-content h3 {
        margin: 0 0 12px;

        color: #161616;

        font-size: 21px;

        font-weight: 700;
    }

    .journey-content p {
        margin: 0;

        color: #666666;

        font-size: 14px;

        line-height: 1.7;
    }

    .journey-image-wrapper {
        width: 100%;

        max-width: 1200px;

        margin: 65px auto 0;

        padding: 0;
    }

    .journey-image {
        width: 100%;
        height: auto;

        display: block;

        border-radius: 8px;

        box-shadow:
            0 10px 30px rgba(0, 0, 0, 0.12);
    }


    /* =====================================================
       VIDEO SECTION
    ====================================================== */

    .video-section {
        background: #f6f7f9;
    }

    .video-card {
        height: 100%;

        overflow: hidden;

        background: #ffffff;

        border:
            1px solid #e5e5e5;

        border-radius: 8px;

        transition:
            transform 0.3s ease,
            box-shadow 0.3s ease;
    }

    .video-card:hover {
        transform: translateY(-4px);

        box-shadow:
            0 12px 30px rgba(0, 0, 0, 0.10);
    }

    .video-wrapper {
        position: relative;

        width: 100%;

        padding-top: 56.25%;

        background: #111111;
    }

    .video-wrapper iframe {
        position: absolute;

        top: 0;
        left: 0;

        width: 100%;
        height: 100%;

        border: 0;
    }

    .video-info {
        padding: 20px;
    }

    .video-title {
        margin-bottom: 8px;

        color: #151515;

        font-size: 18px;

        line-height: 1.4;

        font-weight: 700;
    }

    .video-description {
        margin: 0;

        color: #666666;

        font-size: 14px;

        line-height: 1.6;
    }


    /* =====================================================
       YOUTUBE BUTTON
    ====================================================== */

    .youtube-button-wrapper {
        margin-top: 42px;

        text-align: center;
    }

    .youtube-button {
        display: inline-flex;

        align-items: center;
        justify-content: center;

        gap: 9px;

        padding: 13px 25px;

        background: #e00000;

        color: #ffffff;

        border-radius: 5px;

        font-size: 15px;

        font-weight: 700;

        transition:
            transform 0.3s ease,
            background 0.3s ease,
            box-shadow 0.3s ease;
    }

    .youtube-button:hover {
        background: #b80000;

        color: #ffffff;

        transform: translateY(-2px);

        box-shadow:
            0 7px 18px rgba(224, 0, 0, 0.22);
    }

    .youtube-button i {
        font-size: 21px;
    }


    /* =====================================================
       FOUNDATION
    ====================================================== */

    .foundation-section {
        background: #ffffff;
    }

    .foundation-section .section-image-box {
        background: #f6f7f9;
    }


    /* =====================================================
       FROM CAMPUS TO NATIONAL STAGE
    ====================================================== */

    .finale-section {
        background: #f6f7f9;

        padding: 85px 20px;
    }

    .finale-content {
        max-width: 850px;

        margin: 0 auto;

        text-align: center;
    }

    .finale-content .section-text {
        max-width: 760px;

        margin-left: auto;
        margin-right: auto;
    }


    /* =====================================================
       FUTURE CTA
    ====================================================== */

    .future-section {
        padding: 90px 20px;

        background: #071b42;

        color: #ffffff;
    }

    .future-content {
        max-width: 900px;

        margin: 0 auto;

        text-align: center;
    }

    .future-content h2 {
        margin-bottom: 18px;

        color: #ffffff;

        font-size: clamp(32px, 5vw, 50px);

        line-height: 1.15;

        font-weight: 700;
    }

    .future-content p {
        max-width: 700px;

        margin:
            0 auto 35px;

        color:
            rgba(255, 255, 255, 0.75);

        font-size: 18px;

        line-height: 1.7;
    }

/* ==========================================
   ICONIQ GALLERY - FINAL LAYOUT
========================================== */

.iconiq-photo-gallery {
    padding: 55px 0 65px;
    background: #f8f8f8;
    overflow: hidden;
}


/* Header */

.iconiq-gallery-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}


/* Title */

.iconiq-gallery-header h2 {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    color: #292929;
}


/* ==========================================
   BUTTONS - TOP RIGHT
========================================== */

.iconiq-gallery-controls {
    position: absolute;

    top: 10px;
    right: 30px;
    gap: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-end;   

    margin: 0;
    padding: 0;
}


/* Arrow button */

.iconiq-gallery-btn {
    width: 60px;
    height: 60px;

    padding: 0;

    border: 1px solid #222;
    border-radius: 50%;

    background: transparent;
    color: #0b2148;

    font-size: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: all 0.3s ease;
}


.iconiq-gallery-btn:hover {
    background: #0b2148;
    color: #fff;
}


/* ==========================================
   GALLERY
========================================== */

.iconiq-gallery-viewport {
    width: 100%;
    overflow: hidden;
}


.iconiq-gallery-track {
    display: flex !important;
    flex-wrap: nowrap !important;

    gap: 26px;

    transition: transform 0.55s ease;
}


/* ==========================================
   3 CARDS
========================================== */

.iconiq-gallery-card {
    flex: 0 0 calc((100% - 52px) / 3) !important;
    min-width: calc((100% - 52px) / 3) !important;

    height: 350px;

    background: #fff;

    border: 1px solid #e9e9e9;
    border-radius: 12px;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.07);
}


/* ==========================================
   IMAGE - NO CROP
========================================== */

.iconiq-gallery-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
    object-position: center;

    background: #f4f4f4;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .iconiq-gallery-card {
        flex: 0 0 calc((100% - 26px) / 2) !important;
        min-width: calc((100% - 26px) / 2) !important;

        height: 340px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .iconiq-photo-gallery {
        padding: 45px 0 55px;
    }

    .iconiq-gallery-header {
        margin-bottom: 22px;
    }

    .iconiq-gallery-header h2 {
        font-size: 28px;
    }

    .iconiq-gallery-controls {
        gap: 8px;
    }

    .iconiq-gallery-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .iconiq-gallery-track {
        gap: 15px;
    }

    .iconiq-gallery-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;

        height: 340px;
    }

}
/* =====================================================
   COMPACT FOOTER
===================================================== */

.footer {
    padding: 25px 20px 18px;
    background: #061532;
    color: #ffffff;
    text-align: center;
}

.footer-logo {
    width: 220px;
    max-width: 100%;
    height: auto;

    display: block;
    margin: 0 auto 5px;

    object-fit: contain;
}

.footer-title {
    margin: 0 0 6px;

    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.footer-text {
    max-width: 500px;

    margin: 0 auto 12px;

    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.5;
}

.footer-youtube {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin: 0;

    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.back-to-top-wrapper {
    margin-top: 15px;
}

.last-updated {
    margin-top: 10px;

    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.copyright {
    margin-top: 12px;
    padding-top: 12px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
}

    /* =====================================================
       REVEAL ANIMATION
    ====================================================== */

    .reveal {
        opacity: 0;

        transform: translateY(30px);

        transition:
            opacity 0.7s ease,
            transform 0.7s ease;
    }

    .reveal.active {
        opacity: 1;

        transform: translateY(0);
    }


    /* =====================================================
       TABLET
    ====================================================== */

    @media (max-width: 991px) {

        .content-section {
            padding: 65px 20px;
        }

        .section-image-box {
            max-width: 650px;

            margin:
                0 auto;
        }

        .hero-section {
            margin-top: -85px;

            padding:
                60px 20px 70px;
        }

        .journey-image-wrapper {
            max-width: 1100px;
        }

    }


    /* =====================================================
       MOBILE
    ====================================================== */

    @media (max-width: 767px) {

        html {
            scroll-padding-top: 62px;
        }

        .site-header {
            position: sticky;
        }

        .header-inner {
            min-height: 58px;
        }

        .header-title {
            font-size: 20px;
        }


        /* =================================================
           TOP BANNER

           Keep original image ratio.
           Do NOT use 16:9 / cover here.
        ================================================== */

        .top-banner img {
            width: 100%;
            height: auto;

            aspect-ratio: auto;

            object-fit: contain;
        }


        /* =================================================
           HERO
        ================================================== */

        .hero-section {
            margin-top: -50px;

            padding:
                50px 18px 60px;

            border-radius:
                0 0 12px 12px;
        }

        .hero-label {
            font-size: 11px;

            letter-spacing: 1.2px;

            margin-bottom: 12px;
        }

        .hero-title {
            font-size: 38px;

            line-height: 1.05;

            letter-spacing: -0.5px;

            margin-bottom: 15px;
        }

        .hero-subtitle {
            font-size: 17px;

            line-height: 1.45;

            margin-bottom: 14px;
        }

        .hero-description {
            font-size: 15px;

            line-height: 1.65;

            margin-bottom: 24px;
        }

        .hero-proof {
            display: grid;

            grid-template-columns: 1fr 1fr;

            gap: 0;

            margin-bottom: 28px;
        }

        .hero-proof span {
            padding:
                8px 7px;

            font-size: 11px;

            white-space: normal;

            line-height: 1.4;
        }

        .hero-proof span::after {
            display: none;
        }

        .hero-proof span:nth-child(odd) {
            border-right:
                1px solid
                rgba(255, 255, 255, 0.18);
        }

        .hero-proof span:nth-child(-n+2) {
            border-bottom:
                1px solid
                rgba(255, 255, 255, 0.18);
        }

        .hero-buttons {
            width: 100%;

            flex-direction: column;

            gap: 10px;
        }

        .hero-button {
            width: 100%;

            min-width: 0;
        }


        /* =================================================
           COMMON
        ================================================== */

        .intro-section {
            padding: 50px 18px;
        }

        .content-section {
            padding: 55px 18px;
        }

        .section-padding {
            padding: 55px 15px;
        }

        .section-heading {
            font-size: 29px;
        }

        .section-title {
            font-size: 27px;
        }

        .section-text {
            font-size: 15px;

            line-height: 1.75;
        }

        .section-subheading {
            margin-bottom: 30px;

            font-size: 15px;
        }


        /* =================================================
           STATS
        ================================================== */

        .stats-section {
            padding: 35px 10px;
        }

        .stat-item {
            padding: 17px 8px;
        }

        .stat-icon {
            font-size: 24px;
        }

        .stat-number {
            font-size: 29px;
        }

        .stat-title {
            font-size: 10px;

            letter-spacing: 0.7px;
        }


        /* =================================================
           JOURNEY
        ================================================== */

        .journey-section {
            padding: 55px 18px;
        }

        .journey-timeline {
            margin-top: 40px;

            padding-left: 30px;
        }

        .journey-timeline::before {
            left: 8px;

            transform: none;
        }

        .journey-item,
        .journey-item:nth-child(odd),
        .journey-item:nth-child(even) {
            width: 100%;

            left: 0;

            padding:
                0 0 30px 30px;

            text-align: left;
        }

        .journey-item:last-child {
            padding-bottom: 0;
        }

        .journey-item:nth-child(odd)
        .journey-number,
        .journey-item:nth-child(even)
        .journey-number {
            left: -20px;

            right: auto;

            width: 48px;
            height: 48px;

            border-width: 4px;

            font-size: 12px;
        }

        .journey-content {
            padding: 22px 20px;
        }

        .journey-content h3 {
            font-size: 19px;
        }

        .journey-content p {
            font-size: 14px;
        }

        .journey-image-wrapper {
            width: 100%;

            max-width: none;

            margin-top: 45px;

            padding: 0;
        }

        .journey-image {
            width: 100%;

            height: auto;

            border-radius: 5px;
        }


        /* =================================================
           BUTTONS
        ================================================== */

        .primary-button,
        .secondary-button {
            width: 100%;

            padding:
                12px 18px;
        }

        .future-buttons {
            width: 100%;

            max-width: 340px;

            margin: 0 auto;

            flex-direction: column;
        }

        .youtube-button {
            width: 100%;

            max-width: 340px;
        }


        /* =================================================
           LOGOS
        ================================================== */

        .bottom-logo-section {
            padding: 40px 15px;
        }

        .bottom-logo-box {
            min-height: 145px;

            padding: 20px;
        }

        .bottom-logo {
            max-width: 250px;

            max-height: 115px;
        }


        /* =================================================
           FUTURE
        ================================================== */

        .future-section {
            padding: 65px 18px;
        }

        .future-content h2 {
            font-size: 32px;
        }

        .future-content p {
            font-size: 16px;
        }

        .footer {
            padding-top: 40px;
        }

    }


    /* =====================================================
       SMALL MOBILE
    ====================================================== */

    @media (max-width: 400px) {

        .header-title {
            font-size: 18px;
        }

        .hero-title {
            font-size: 34px;
        }

        .section-heading {
            font-size: 27px;
        }

        .stat-number {
            font-size: 26px;
        }

        .stat-title {
            font-size: 9px;
        }

    }


    /* =====================================================
       REDUCED MOTION
    ====================================================== */

    @media (prefers-reduced-motion: reduce) {

        html {
            scroll-behavior: auto;
        }

        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }

        .reveal {
            opacity: 1;
            transform: none;
        }

    }

    .footer-youtube i {
    color: #FF0000;
    font-size: 21px;
}

/* =====================================================
   BACK TO TOP
===================================================== */

.back-to-top-wrapper {
    width: 100%;
    margin-top: 20px;

    display: flex;
    justify-content: flex-end;
}

.back-to-top-btn {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #1764aa;
    color: #ffffff;

    border-radius: 50%;

    font-size: 20px;
    font-weight: bold;

    text-decoration: none;

    transition: 0.3s ease;
}

.back-to-top-btn:hover {
    background: #0e4f8a;
    color: #ffffff;
    transform: translateY(-2px);
}
/* =====================================================
   Social Media Icons
===================================================== */

.footer-social-links {
    display: flex;
    align-items: center;
    justify-content: center; /* Center icons */
    gap: 22px;
    margin-top: 20px;
    width: 100%;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 30px;
    transition: all 0.3s ease;
}

/* Instagram */
.footer-social-links a:nth-child(1) {
    color: #ffffff;
    background: linear-gradient(
        45deg,
        #feda75,
        #fa7e1e,
        #d62976,
        #962fbf,
        #4f5bd5
    );
}

/* Facebook */
.footer-social-links a:nth-child(2) {
    color: #ffffff;
    background: #1877f2;
}

/* X */
.footer-social-links a:nth-child(3) {
    color: #ffffff;
    background: #000000;
}

/* LinkedIn */
.footer-social-links a:nth-child(4) {
    color: #ffffff;
    background: #0a66c2;
}

/* YouTube */
.footer-social-links a:nth-child(5) {
    color: #ffffff;
    background: #ff0000;
}

/* Hover */
.footer-social-links a:hover {
    transform: translateY(-4px);
    opacity: 0.9;
}


/* =====================================================
   Mobile Responsive
===================================================== */

@media (max-width: 767px) {

    .footer-social-links {
        justify-content: center;
        gap: 12px;
        margin-top: 18px;
        width: 100%;
        flex-wrap: wrap;
    }

    .footer-social-links a {
        width: 46px;
        height: 46px;
        font-size: 25px;
        border-radius: 9px;
    }

}