    /* ======================================================
    Timeout CSS Main Stylesheet
    Version: 1.0
    ====================================================== */


    /* ======================================================
    1. Font import + Root Variables + RESET & BOX-SIZING
    ====================================================== */

    @import url(../myriad-pro-webfont/myriad-pro-webfont.css);

    :root {
    --space-0: 0;
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 16px;
    --space-4: 24px;
    --space-5: 48px;

    --white: #ffffff;
    --black: #000000;
    --light: #F8F7F3;
    --light-red: #FF9494;
    --theme-red-1: #CE2129;

    }

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

    html {
    font-size: 16px;
    scroll-behavior: smooth;
    }

    body {
    margin: 0;
    padding: 0;
    font-family: 'Myriad Pro';
    font-weight: 400;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--black);
    text-rendering: optimizeLegibility;
    }

    /* ======================================================
    2. TYPOGRAPHY
    ====================================================== */

    h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 600;
    line-height: 1.25;
    color: var(--white);
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    h4 { font-size: 1.5rem; }
    h5 { font-size: 1.25rem; }
    h6 { font-size: 1rem; }

    p {
    margin: 0;
    }

    small {
    font-size: 0.875rem;
    }

    strong {
    font-weight: 600;
    }


    /* ======================================================
    3. LINKS
    ====================================================== */

    a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
    }

    a:focus-visible {
    outline: none;
    }


    /* ======================================================
    4. LISTS
    ====================================================== */

    ul,
    ol {
    margin: 0;
    padding: 0;
    list-style: none;
    }

    li {
    margin: 0;
    padding: 0;
    }


    /* ======================================================
    5. MEDIA
    ====================================================== */

    img,
    picture,
    video,
    canvas,
    svg {
    display: block;
    max-width: 100%;
    height: auto;
    }


    /* ======================================================
    6. FORMS & BUTTONS
    ====================================================== */

    input,
    textarea,
    select,
    button {
    font: inherit;
    color: inherit;
    }

    button {
    cursor: pointer;
    background: none;
    border: none;
    }

    input:focus,
    textarea:focus,
    select:focus {
    outline: none;
    }

    input::placeholder,
    textarea::placeholder {
        color: var(--light-red);
        opacity: 1;
    }

    /* ======================================================
    7. TABLES
    ====================================================== */

    table {
    width: 100%;
    border-collapse: collapse;
    }

    th,
    td {
    padding: 0.75rem;
    text-align: left;
    }


    /* ======================================================
    8. CONTAINERS (Bootstrap 5 behavior)
    ====================================================== */

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: auto;
    margin-right: auto;
    }

    .container-fluid {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    }

    /* SM */
    @media (min-width: 576px) {
    .container,
    .container-sm {
        max-width: 540px;
    }
    }

    /* MD */
    @media (min-width: 768px) {
    .container,
    .container-sm,
    .container-md {
        max-width: 720px;
    }
    }

    /* LG */
    @media (min-width: 992px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg {
        max-width: 960px;
    }
    }

    /* XL */
    @media (min-width: 1200px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1140px;
    }
    }

    /* XXL */
    @media (min-width: 1400px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
        max-width: 1320px;
    }
    }


    /* ======================================================
    9. GRID SYSTEM
    ====================================================== */

    .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
    }

    [class^="col-"] {
    padding-left: 12px;
    padding-right: 12px;
    width: 100%;
    }

    /* Columns*/
    .col-1 { width: 8.333%; }
    .col-2 { width: 16.666%; }
    .col-3 { width: 25%; }
    .col-4 { width: 33.333%; }
    .col-5 { width: 41.666%; }
    .col-6 { width: 50%; }
    .col-7 { width: 58.333%; }
    .col-8 { width: 66.666%; }
    .col-9 { width: 75%; }
    .col-10 { width: 83.333%; }
    .col-11 { width: 91.666%; }
    .col-12 { width: 100%; }

    /* MD */
    @media (min-width: 768px) {
    .col-md-3 { width: 25%; }
    .col-md-4 { width: 33.333%; }
    .col-md-6 { width: 50%; }
    .col-md-12 { width: 100%; }
    }

    /* LG */
    @media (min-width: 992px) {
    .col-lg-3 { width: 25%; }
    .col-lg-4 { width: 33.333%; }
    .col-lg-6 { width: 50%; }
    .col-lg-12 { width: 100%; }
    }


    /* ======================================================
    10. SPACING UTILITIES
    ====================================================== */

    /* Margin */
    .m-0 { margin: var(--space-0); }
    .m-1 { margin: var(--space-1); }
    .m-2 { margin: var(--space-2); }
    .m-3 { margin: var(--space-3); }
    .m-4 { margin: var(--space-4); }

    .mt-3 { margin-top: var(--space-3); }
    .mb-3 { margin-bottom: var(--space-3); }
    .ms-3 { margin-left: var(--space-3); }
    .me-3 { margin-right: var(--space-3); }

    /* Padding */
    .p-0 { padding: var(--space-0); }
    .p-1 { padding: var(--space-1); }
    .p-2 { padding: var(--space-2); }
    .p-3 { padding: var(--space-3); }
    .p-4 { padding: var(--space-4); }

    .pt-3 { padding-top: var(--space-3); }
    .pb-3 { padding-bottom: var(--space-3); }

    .px-3 {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
    }

    .py-3 {
    padding-top: var(--space-3);
    padding-bottom: var(--space-3);
    }


    /* ======================================================
    11. UTILITIES
    ====================================================== */

    .d-none { display: none; }
    .d-block { display: block; }
    .d-inline { display: inline; }
    .d-inline-block { display: inline-block; }
    .d-flex { display: flex; }

    .text-center { text-align: center; }
    .text-left   { text-align: left; }
    .text-right  { text-align: right; }

    .overflow-hidden { overflow: hidden; }
    .overflow-x-hidden { overflow-x: hidden; }

    .position-relative { position: relative; }

    /* ======================================================
    11. Header Styles
    ====================================================== */

    .header-main-container{
        position: fixed;
        top: 0;
        left: 0;
        z-index: 2;
    }

    .header-main-container .wrapper {
    width: 86px;
    height: 102vh;
    background: var(--theme-red-1);
    position: relative;
    overflow: hidden;
    z-index: 50;
    }

    .header-main-container .wrapper .logo a {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 23px;
        position: relative;
        z-index: 1;
    }

    .header-main-container .wrapper .logo a img {
    max-width: 50px;
    }

    .burger-menu {
    position: relative;
    top: 40%;
    margin-left: -80px;
    z-index: 50;
    }

    .burger-click-region {
    position: absolute;
    left: 105px;
    width: 40px;
    height: 30px;
    cursor: pointer;
    }

    .burger-menu-piece {
    display: block;
    width: 30px;
    border-top: 4px solid var(--white);
    margin-top: 5px;
    transform-origin: center;
    }

    /* Sidebar */
    .header-main-container .wrapper .sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 300px;
    height: 100vh;
    transform: translateX(-680px);
    }

    .header-main-container .wrapper .sidebar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--theme-red-1);
    opacity: 0.65;
    z-index: -1;
    }

    /* Menu */
    .header-main-container .wrapper .sidemenu {
    position: absolute;
    top: 35%;
    left: 45%;
    }

    .header-main-container .wrapper .sidemenu li {
    margin-bottom: 16px;
    }

    .header-main-container .wrapper .sidemenu li a {
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    }

    .header-main-container .popup-overlay {
        position: fixed;
        inset: 0;
        background: #222;
        z-index: 40;
        opacity: 0;
        visibility: hidden;
    }


    @media (max-width: 767px) {

        .header-main-container .wrapper .sidebar{
            width: 100%;
        }

        .header-main-container .wrapper .sidemenu {
            left: 40%;
        }
        
    }

    /* ======================================================
    12. Booking Popup Styles
    ====================================================== */

    .booking-popup-box-area .popup-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .booking-popup {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.85);
        max-width: 480px;
        width: 90%;
        background: transparent;
        padding: 0;
        border: none;
        box-shadow: none;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .booking-popup img {
        width: 100%;
        display: block;
    }

    .popup-close {
        position: absolute;
        top: -18px;
        right: -18px;
        width: 36px;
        height: 36px;
        border: none;
        border-radius: 50%;
        background: rgba(248, 247, 243, 0.35);
        color: #fff;
        font-size: 22px;
        cursor: pointer;
    }



    /* ======================================================
    13. Booking Form Styles
    ====================================================== */

    .booking-form-section {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        height: 100vh;
        margin-left: 86px;
        width: 96%;
        margin-left: auto;
        display: flex;
        align-items: center;
    }

    .booking-box .logo img {
        max-width: 175px;
        margin: 0 auto;
    }

    .booking-box .title-box img {
        margin: 0 auto;
    }

    .booking-box .title-box h2 {
        font-size: 140px;
        font-weight: 400;
        line-height: 1;
        margin-bottom: 40px;
    }

    .booking-form {
        max-width: 707px;
        margin: 0 auto;
    }

    .booking-form input, .booking-form textarea {
        width: 100%;
    }

    .booking-form input,
    .booking-form textarea {
        height: 57px;
        border: 1px solid var(--light);
        background: transparent;
        color: var(--light);
        padding: 18px;
        font-size: 18px;
    }

    .booking-form input{
        margin-bottom: 29px;
    }

    .booking-form .input-half p {
        display: flex;
        gap: 29px;
    }

    .booking-form textarea {
        height: 120px;
        resize: none;
    }

    .book-btn {
        background: #4A148C;
        font-size: 20px;
        font-weight: 600;
        padding: 5px 35px;
        border-radius: 0px 50px 50px 50px;
        transition: all 500ms ease;
    }

    .book-btn:hover {
        border-radius: 50px 50px 0px 50px;
        background: var(--black);
    }

    .booking-form .book-btn{
        margin-top: 32px;
    }

    .booking-box .logo {
        margin-bottom: 52px;
    }

    .booking-box .bottom-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        max-width: 675px;
        margin: 0 auto;
        margin-top: 40px;
    }

    .booking-box .bottom-box a img {
        max-width: 165px;
    }

    .booking-box .bottom-box p {
        text-align: left;
        font-size: 20px;
        font-weight: 300;
    }

    @media (max-width: 991px) {
        .booking-box .title-box h2 {
            font-size: 75px;
            margin-bottom: 24px;
        }
    }

    @media (max-width: 767px) {
        .booking-box .title-box h2 {
            font-size: 48px;
            margin-bottom: 24px;
        }

        .booking-box .bottom-box {
            margin-top: 40px;
            flex-direction: column; 
        }

        .booking-box .bottom-box p{
            text-align: center;
        }
        .booking-form-section{
            height: 100%;
            margin-left: auto;
            width: 90%;
            padding: 30px 0 60px 0;
        }
    }

    @media (max-width: 425px) {
        .booking-form-section{
            width: 80%;
        }
    }

    /* ======================================================
    14. Hero Section Styles
    ====================================================== */

    .hero-content .content > * {
        opacity: 0;
        transform: translateY(40px);
    }


    .hero-section {
        position: relative;
        min-height: 100vh;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }

    .hero-section:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(0, 0, 0,0.5);
    }

    .hero-content .content {
        position: absolute;
        bottom: 48px;
        right: 30px;
    }

    .hero-content h4 {
        font-size: 33px;
        font-weight: 700;
        line-height: 40px;
    }

    .hero-content h2 {
        font-size: 48px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .hero-content a span {
        font-size: 27px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .hero-content .video-popup {
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 20px;
        margin-top: 25px;
    }

    /* Large Desktop (1400px and below) */
    @media (max-width: 1400px) {
        .hero-content .content {
            bottom: 40px;
            right: 25px;
        }

        .hero-content h4 {
            font-size: 30px;
            line-height: 38px;
        }

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

        .hero-content a span {
            font-size: 24px;
        }
    }

    /* Tablet Landscape (1199px and below) */
    @media (max-width: 1199px) {
        .hero-section {
            background-attachment: scroll;
        }

        .hero-content .content {
            bottom: 35px;
            right: 20px;
        }

        .hero-content h4 {
            font-size: 26px;
            line-height: 34px;
        }

        .hero-content h2 {
            font-size: 38px;
        }

        .hero-content a span {
            font-size: 22px;
        }

        .hero-content .video-popup {
            gap: 15px;
            margin-top: 20px;
        }
    }

    /* Tablet Portrait (991px and below) */
    @media (max-width: 991px) {

        .hero-content h4 {
            font-size: 22px;
            line-height: 30px;
        }

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

        .hero-content a span {
            font-size: 20px;
        }

        .hero-content .video-popup {
            gap: 12px;
            margin-top: 18px;
        }
    }

    /* Mobile Landscape (767px and below) */
    @media (max-width: 767px) {
        .hero-section {
            min-height: 100vh;
            background-attachment: scroll;
        }

        .hero-content {
            margin-left: 50px;
        }

        .hero-content h4 {
            font-size: 18px;
            line-height: 26px;
        }

        .hero-content h2 {
            font-size: 28px;
        }

        .hero-content a span {
            font-size: 16px;
        }

        .hero-content .video-popup {
            gap: 10px;
            margin-top: 15px;
        }
    }

    /* Mobile Portrait (575px and below) */
    @media (max-width: 575px) {
        .hero-section {
            min-height: 100vh;
        }

        .hero-content h4 {
            font-size: 16px;
            line-height: 24px;
        }

        .hero-content h2 {
            font-size: 24px;
        }

        .hero-content a span {
            font-size: 14px;
        }

        .hero-content .video-popup {
            align-items: center;
            justify-content: start;
            gap: 8px;
            margin-top: 12px;
        }
    }

    /* Extra Small Mobile (400px and below) */
    @media (max-width: 400px) {

        .hero-content h4 {
            font-size: 14px;
            line-height: 22px;
        }

        .hero-content h2 {
            font-size: 18px;
        }

        .hero-content a span {
            font-size: 12px;
        }

        .hero-content .video-popup {
            gap: 6px;
            margin-top: 10px;
        }
    }

    /* ======================================================
    14. Service Slider Section Styles
    ====================================================== */

    .service-slider-section {
        height: 100vh;
        overflow: hidden;
        position: relative;
    }

    /* Slider */
    .service-slider-section .slider-track {
        display: flex;
        height: 100%;
    }

    .service-slider-section .slider-box {
        min-width: 100vw;
        height: 100vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;

        display: flex;
        justify-content: center;
        align-items: flex-end;
        gap: 75px;
        padding: 20px;

        flex-shrink: 0;
    }

    /* Service list */
    .service-slider-section .service-list {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 97%;
        height: 100%;
        z-index: 1;
        display: flex;
        /* flex-wrap: wrap; */
        justify-content: space-between;
        gap: 0;
    }

    .service-slider-section .service-list a {
        position: relative;
        font-size: 22px;
        line-height: 30px;
        font-weight: 700;
        text-transform: capitalize;
        width: 100%;
        height: 100%;
        padding: 6px 12px;
        border-radius: 5px;
        transition: all 0.4s ease;
        white-space: nowrap;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }

    .service-slider-section .service-list a::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0px;
        right: 0;
        width: 2px;
        background: rgba(255, 255, 255, 0.2);
    }

    .service-slider-section .service-list a:last-child()::after {
        display: none;
    }   

    .service-slider-section .service-list a > span{
        padding: 5px 10px;
        display: inline-block;
        border-radius: 5px;
        margin-bottom: 20px;
        transition: all 500ms ease;
    }

    .service-slider-section .service-list a:hover > span,
    .service-slider-section .service-list a.active >span{
        background: var(--theme-red-1);
        color: #fff;
    }


    .scroll-arrow-global {
        position: fixed;
        bottom: 20px;
        left: 53%;
        transform: translateX(-53%);
        cursor: pointer;
        z-index: 999;
        animation: bounce 1.5s infinite;
    }

    .scroll-arrow-global.is-up {
        top: 20px;
        bottom: inherit;
    }

    .scroll-arrow-global.is-up img {
        transform: rotate(180deg);
    }

    @keyframes bounce {
        0%, 100% { transform: translateX(-50%) translateY(0); }
        50% { transform: translateX(-50%) translateY(-10px); }
    }


    @media (max-width:1199px) {
        .service-slider-section .service-list a::after {
            display: none;
        }

        .service-slider-section .service-list {
            flex-wrap: wrap;
            width: auto;
            height: auto;
            bottom: 0;
        }

        .service-slider-section{
            margin-left: 40px;
        }

        .service-slider-section .service-list a > span{
            margin-bottom: 10px;
        }

    }


    /* ======================================================
    15. Clients Section Styles
    ====================================================== */

    .clients-section {
        height: 100vh;
        width: 90%;
        margin-left: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0 15px;
    }

    .clients-section h2 {
        font-size: 124px;
        font-weight: 700;
        color: var(--theme-red-1);
        text-transform: uppercase;
    }

    .clients-section h4 {
        font-size: 66px;
    }

    .clients-section .counter-box {
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 35px;
    }

    .clients-section .counter-box .counter {
        font-size: 124px;
        font-weight: 700;
        color: var(--theme-red-1);
    }

    .clients-section .counter-box p {
        font-size: 39px;
        line-height: 50px;
    }

    .clients-slider-box {
    position: relative;
    overflow: hidden;
    width: 100%;
    }

    .clients-slider-track-left,
    .clients-slider-track-right {
    display: flex;
    gap: 40px;
    }

    .clients-slider-item {
    flex: 0 0 calc(100% / 7);
    display: flex;
    justify-content: center;
    align-items: center;
    }

    .clients-slider-track-left{
    margin-bottom: 80px;
    margin-top: 80px;
    }


    @media (max-width: 767px) {

    .clients-section {
        width: 80%;
    }

    .clients-slider-item {
        flex: 0 0 calc(100% / 3);
    }

    .clients-section .counter-box .counter,
    .clients-section h2{
        font-size: 48px;
    }
    .clients-section h4{
        font-size: 30px;
    }

    .clients-section .counter-box p{
        font-size: 20px;
        line-height: 30px;
    }

    .clients-slider-track-left{
        margin: 40px 0;
    }

    .clients-section .counter-box {
        justify-content: start;
        align-items: start;
        gap: 0;
        flex-direction: column;
    }

    }

    @media (max-width: 425px) {
        .clients-section {
        width: 70%;
    }
    }


    /* ======================================================
    16. Brand Consultancy Section Styles
    ====================================================== */

    .brand-consultancy-section {
        overflow: visible;
        padding-top: 60px;
    }

    .brand-consultancy-section .title-area {
        max-width: 1475px;
        padding: 0 16px;
        text-align: center;
        margin: 0 auto;
    }

    .brand-consultancy-section .title-area h2 {
        font-size: 81px;
        font-weight: 700;
        margin-bottom: 34px;
    }

    .brand-consultancy-section .title-area p {
        font-size: 28px;
        margin-bottom: 80px;
        text-align: start;
    }

    .brand-consultancy-section .title-area p span {
        color: var(--theme-red-1);
    }

    .brand-consultancy-section .brand-box {
        position: relative;   
        margin-left: 90px; 
        overflow: hidden;
    }

    .brand-consultancy-section .brand-box .inner {
        display: flex;
        width: fit-content;
        will-change: transform;
    }

    .brand-consultancy-section .brand-box .inner a {
        padding: 200px 80px;
        flex: 0 0 auto;
    }

    .brand-consultancy-section .brand-box .inner a:nth-child(odd) {
        background: #0F0F0F;
    }

    @media (max-width: 1440px) {
        .brand-consultancy-section .title-area p {
            margin-left: 200px;
        }
    }

    @media (max-width: 991px) {

        .brand-consultancy-section {
            overflow: visible;
            margin-left: 90px;
        }

        .brand-consultancy-section .brand-box {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }

        .brand-consultancy-section .brand-box .inner {
            display: flex;
            width: max-content;
        }

        .brand-consultancy-section .brand-box .inner a {
            padding: 120px 32px;
        }
    }


    @media (max-width: 767px) {

        .brand-consultancy-section .title-area h2 {
            font-size: 32px;
            margin-bottom: 24px;
        }

        .brand-consultancy-section .title-area p {
            font-size: 20px;
            margin-bottom: 40px;
            margin-left: 0;
        }

        .brand-consultancy-section .brand-box {
            margin-left: 0;
        }

    }


    /* ======================================================
    17. Image Tab Section Styles 
    ====================================================== */

    .image-tab-section {
        text-align: center;
        margin-left: 90px;
        width: 94%;
        height: 100vh;
        margin-left: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-left: 15px;
        padding-right: 15px;
    }

    .image-tab-section h2.section-title {
        font-size: 124px;
        margin-bottom: 20px;
        margin-top: 20px;
    }

    [role="tablist"] {
        display: flex;
        gap: 0.5rem;
        margin-bottom: 40px;
        align-items: stretch;
        justify-content: center;
        flex-wrap: wrap;
    }

    .tab-buttons-box button {
        padding: 36px 49px;
    }

    .tab-buttons-box button:nth-child(odd){
        background: #0F0F0F;
    }

    [role="tab"][aria-selected="true"] {
    border-bottom: 3px solid var(--theme-red-1);
    }

    [role="tab"][aria-selected="false"] {
    border-bottom: 3px solid var(--black);
    }

    [hidden] {
    display: none;
    }

    .inner-tab-content {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 34px;
    }

    .image-tab-section .inner-tab-content .inner {
        display: flex;
        gap: 24px;
        flex-wrap: wrap;
    }

    .inner-tab-content .box img {
        margin-bottom: 20px;
        max-width: 418px;
        width: 100%;
    }

    @media (max-width: 767px) {

        .image-tab-section h2.section-title {
            font-size: 32px;
            margin-bottom: 24px;
        }

        .tab-buttons-box button {
            padding: 10px;
            font-size: 16px;
        }

        .inner-tab-content {
            flex-direction: column;
            gap: 20px;
        }

        .inner-tab-content .box img {
            max-width: 300px;
        }

        .image-tab-section{
            padding-top: 20px;
            padding-bottom: 60px;
            width: 87%;
        }

        .tab-buttons-box button img{
            width:  50px;
        }

    }


    @media (max-width: 767px) {
        .image-tab-section{
            width: 77%;
        }

        .image-tab-section .inner-tab-content .inner{
            gap: 5px;
        }
    }

    /* ======================================================
    18. International Federation Section Styles
    ====================================================== */

    .international-federation {
        padding: 80px 15px 0 15px;
        overflow-x: hidden;
        margin-left: auto;
        width: 94%;
        height: 100vh;
    }

    .international-federation h3{
        font-size: 89px;
    }

    .international-federation .section-title-box h4 {
        font-size: 68px;
        color: var(--theme-red-1);
    }

    .international-federation .section-title-box h2 {
        font-size: 139px;
        font-weight: 700;
    }

    .international-federation .section-title-box {
        margin-bottom: 92px;
    }

    .ifc-box-area {
        display: flex;
        justify-content: center;
        align-items: stretch;
    }

    .ifc-box-area .box {
        padding: 300px 338px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .ifc-box-area .box:nth-child(odd){
        background:#0F0F0F;
    }

    .ifc-box-area.style-2 .box {
        padding: 245px 210px;
    }

    @media (max-width: 767px) {

        .international-federation h3{
            font-size: 32px;
            margin-bottom: 24px;
        }

        .international-federation .section-title-box h4 {
            font-size: 24px;
        }

        .international-federation .section-title-box h2 {
            font-size: 32px;
        }

        .international-federation .section-title-box {
            margin-bottom: 40px;
        }

        .ifc-box-area {
            flex-direction: column;
            gap: 20px;
        }

        .ifc-box-area .box {
            padding: 50px 50px;
        }

        .ifc-box-area.style-2 .box {
            padding: 50px 40px;
        }

        .international-federation{
            width: 80%;
        }

    }


    /* ======================================================
    19. Image Rights Section Styles
    ====================================================== */

    .image-rights-section {
        padding: 80px 15px;
        margin-left: auto;
        width: 94%;
        height: 100vh;
        display: flex;
        flex-direction: column;
    }

    .image-rights-box .content-box h2 {
        font-size: 124px;
        color: var(--theme-red-1);
        font-weight: 700;
        margin-bottom: 50px;
    }

    .image-rights-box .content-box h4 {
        font-size: 68px;
    }

    .image-rights-box .content-box h5 {
        font-size: 39px;
        margin-bottom: 24px;
    }

    .image-rights-box .content-box h5 span {
        color: var(--theme-red-1);
    }

    .image-rights-box .content-box p {
        font-size: 29px;
    }

    .image-rights-slide .image-box img {
        width: 530px;
        height: 460px;
        object-fit: cover;
        margin:  auto;
    }

    .image-rights-slide .content {
        text-align: center;
        margin-top: 15px;
    }

    .image-rights-box .col-lg-6 {
        align-items: center;
        justify-content: center;
        display: flex;
    }

    .image-rights-box .content-box h2.mb-0{
    margin-bottom: 0;
    }

    @media (max-width: 1199px) {

        .image-rights-box .content-box h2{
            font-size: 75px;
            margin-bottom: 32px;
        }

        .image-rights-box .content-box h4{
            font-size: 36px;
        }

        .image-rights-box .content-box h5{
            font-size: 20px;
            margin: 24px 0;
        }

        .image-rights-box .content-box p{
            font-size: 16px;
        }

        .image-rights-box .content-box {
            margin-bottom: 30px;
        }

    }


    @media (max-width: 767px) {

        .image-rights-section {
            padding-top: 60px;
            padding-bottom: 60px;
            width: 75%;
        }

        .image-rights-box .content-box h2 {
            font-size: 32px;
            margin-bottom: 24px;
        }

        .image-rights-box .content-box h4 {
            font-size: 24px;
        }

        .image-rights-box .content-box h5 {
            font-size: 18px;
            margin: 16px 0;
        }

        .image-rights-slide .content h3{
            font-size: 20px;
        }

    }


    /* ======================================================
    20. Talent Management Section Styles 
    ====================================================== */

    .talent-management {
        position: relative;
        padding-left: 15px;
        padding-right: 15px;
        margin-left: auto;
        height: 100vh;
        width: 94%;
        display: flex;
        align-items: center;
        padding-bottom: 60px;
    }

    .talent-management .section-heading:before {
        content: "";
        position: absolute;
        top: 76%;
        right: -155%;
        width: 150%;
        height: 1px;
        background: rgb(255, 255, 255, 0.2);
    }

    .talent-management .section-heading {
        position: relative;
    }

    .talent-management .content-area {
        height: 100vh;
        display: flex;
        justify-content: start;
        align-items: center;
    }

    .talent-box-area {
        padding-bottom: 0;
        margin-left: auto;
        height: 100vh;
        width: 100%;
        display: flex;
        align-items: center;
    }

    .talent-management h2 {
        font-size: 140px;
        font-weight: 700;
    }

    .talent-management h2 span {
        color: var(--theme-red-1);
    }

    fieldset {
        border: 0;
    }

    .farida-osman {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 160px;
        column-gap: 160px;
        height: 100vh;
    }

    .farida-osman .image-box {
        flex: 0 0 50%;
    }

    .farida-osman .image-box img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .farida-osman .content-box {
        flex: 0 0 30%;
    }

    .farida-osman h2 {
        font-size: 67px;
    }

    .farida-osman h4 {
        font-size: 42px;
        margin-bottom: 30px;
        margin-top: 20px;
    }

    .farida-osman .content-box p,
    .farida-osman .content-box ul li {
        font-size: 29px;
    }

    .farida-osman .content-box h2 {
        position: relative;
    }

    .farida-osman .content-box h2:before {
        content: "";
        position: absolute;
        top: 100%;
        right: -110px;
        width: 150%;
        height: 1px;
        background: rgb(255, 255, 255, 0.2);
    }

    .talent-text ul li {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    @media (max-width: 1400px) {

        .talent-management h2 {
            font-size: 120px;
        }

        .farida-osman {
            margin-left: 120px;
            column-gap: 100px;
        }

        .farida-osman h2 {
            font-size: 56px;
        }

        .farida-osman h4 {
            font-size: 36px;
        }

        .farida-osman .content-box p,
        .farida-osman .content-box ul li {
            font-size: 24px;
        }
    }

    @media (max-width: 1199px) {

        .talent-management .content-area {
            height: auto;
            min-height: 70vh;
            padding: 60px 0;
        }

        .talent-management h2 {
            font-size: 90px;
        }

        .talent-management .section-heading:before {
            right: -100%;
            width: 100%;
        }

        .farida-osman {
            flex-direction: column;
            margin-left: 60px;
            column-gap: 0;
            row-gap: 40px;
            height: auto;
            padding: 60px 0;
        }

        .farida-osman .image-box {
            flex: 0 0 auto;
            width: 100%;
            max-width: 600px;
        }

        .farida-osman .image-box img {
            height: auto;
            max-height: 70vh;
        }

        .farida-osman .content-box {
            flex: 0 0 auto;
            width: 100%;
            max-width: 600px;
        }

        .farida-osman h2 {
            font-size: 48px;
        }

        .farida-osman h4 {
            font-size: 32px;
            margin-bottom: 20px;
        }

        .farida-osman .content-box p,
        .farida-osman .content-box ul li {
            font-size: 20px;
        }

        .farida-osman .content-box h2:before {
            right: auto;
            left: 0;
            width: 100%;
            max-width: 400px;
        }

        .talent-box-area {
            padding-bottom: 60px;
        }
    }


    @media (max-width: 991px) {

        .talent-management h2 {
            font-size: 70px;
        }

        .farida-osman {
            margin-left: 40px;
        }

        .farida-osman h2 {
            font-size: 42px;
        }

        .farida-osman h4 {
            font-size: 28px;
        }

        .farida-osman .content-box p,
        .farida-osman .content-box ul li {
            font-size: 18px;
        }
    }


    @media (max-width: 767px) {
        .talent-management {
            padding-left: 15px;
            padding-right: 15px;
            width: 75%;
        }

        .talent-management .content-area {
            min-height: 60vh;
            padding: 40px 0;
            justify-content: center;
            text-align: center;
        }

        .talent-management h2 {
            font-size: 48px;
        }

        .talent-management .section-heading:before {
            display: none;
        }

        .talent-box-area {
            padding-bottom: 40px;
            padding-left: 15px;
            padding-right: 15px;
            width: 76%;
        }

        .farida-osman {
            margin-left: 0;
            row-gap: 30px;
            padding: 40px 20px;
        }

        .farida-osman .image-box {
            max-width: 100%;
        }

        .farida-osman .image-box img {
            max-height: 50vh;
        }

        .farida-osman .content-box {
            max-width: 100%;
            text-align: center;
        }

        .farida-osman h2 {
            font-size: 36px;
        }

        .farida-osman h4 {
            font-size: 24px;
            margin-bottom: 15px;
            margin-top: 15px;
        }

        .farida-osman .content-box p,
        .farida-osman .content-box ul li {
            font-size: 16px;
        }

        .farida-osman .content-box h2:before {
            display: none;
        }

        .talent-text ul li {
            justify-content: center;
            gap: 10px;
        }
    }


    @media (max-width: 575px) {
        .talent-management h2 {
            font-size: 36px;
        }

        .talent-management .content-area {
            min-height: 50vh;
            padding: 30px 0;
        }

        .farida-osman {
            padding: 30px 15px;
            row-gap: 20px;
        }

        .farida-osman h2 {
            font-size: 28px;
        }

        .farida-osman h4 {
            font-size: 20px;
            margin-bottom: 12px;
            margin-top: 12px;
        }

        .farida-osman .content-box p,
        .farida-osman .content-box ul li {
            font-size: 14px;
        }

        .talent-box-area {
            padding-bottom: 30px;
        }
    }


    @media (max-width: 400px) {
        .talent-management h2 {
            font-size: 32px;
        }

        .farida-osman h2 {
            font-size: 24px;
        }

        .farida-osman h4 {
            font-size: 18px;
        }

        .farida-osman .content-box p,
        .farida-osman .content-box ul li {
            font-size: 13px;
        }
    }

    /* ======================================================
    21. Hospitality Section Styles
    ====================================================== */
    
    .hospitality-section {
        margin-left: auto;
        overflow-x: hidden;
        padding: 10px 16px 60px 16px;
        height: min-content;
        height: 100vh;
        width: 94%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hospitality-box-area h3 {
        font-size: 124px;
        font-weight: 700;
        color: var(--theme-red-1);
    }

    .hospitality-box-area p {
        position: relative;
        font-size: 54px;
        max-width: 820px;
        text-align: center;
    }

    .hospitality-box-area p::before{
        content: "";
        position: absolute;
        top: 55%;
        right: -155%;
        width: 150%;
        height: 1px;
        background: rgb(255, 255, 255, 0.2);
    }

    .hospitality-box-area p span {
        color: var(--theme-red-1);
        font-weight: 700;
    }

    .hospitality-box-area .image-top {
        display: flex;
        justify-content: center;
    }

    .hospital-slider-box {
        padding-top: 0;
    }

    .hospitality-box {
        display: flex;
        justify-content: center;
    }

    .hospitality-slide {
        height: 400px;         
        overflow: hidden;
    }

    .hospitality-slide .swiper-slide {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hospitality-box-area .image-top img {
        width: 150px;
    }

    @media (max-width: 1199px) {

        .hospitality-box-area h3 {
            font-size: 75px;
        }

        .hospitality-box-area p {
            font-size: 30px;
        }

        .hospitality-box-area .image-top {
            margin-bottom: 30px;
        }

    }

    @media (max-width: 767px) {

        .hospitality-section {
            padding: 60px 16px 60px 16px;
            width: 80%;
        }

        .hospitality-box-area h3 {
            font-size: 32px;
        }

        .hospitality-box-area p {
            font-size: 20px;
        }

    }

    /* ======================================================
    22. Hospitality 2 Section Styles
    ====================================================== */


    .hospitality-2-section {
        margin-left: auto;
        padding: 110px 15px 70px 15px;
        height: 100vh;
        width: 94%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hospitality-2-box-area h2 {
        font-size: 124px;
        font-weight: 700;
        color: var(--theme-red-1);
    }

    .hospitality-2-box-area p {
        font-size: 71px;
        font-weight: 700;
    }

    .counter-box-hos-2 {
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 20px;
    }

    .counter-box-hos-2 .counter {
        font-size: 124px;
        font-weight: 700;
        color: var(--theme-red-1);
    }

    .counter-box-hos-2 .counter-text {
        font-size: 58px;
    }

    .counter-box-hos-2 .counter-text span {
        color: var(--theme-red-1);
    }

    @media (max-width: 1199px) {

        .hospitality-2-box-area h2 {
            font-size: 75px;
        }

        .hospitality-2-box-area p {
            font-size: 36px;
        }

        .counter-box-hos-2 .counter {
            font-size: 75px;
        }

        .counter-box-hos-2 .counter-text {
            font-size: 16px;
        }

    }

    @media (max-width: 767px) {

        .hospitality-2-section {
            padding: 60px 15px 60px 15px;
            width: 80%;
        }

        .hospitality-2-box-area h2 {
            font-size: 32px;
        }

        .hospitality-2-box-area p {
            font-size: 20px;
        }

    }


    /* ======================================================
    23. development Section Styles
    ====================================================== */

    .development-section {
        padding: 80px 15px 60px 15px;
        margin-left: 90px;
    }

    .development-section h2 {
        font-size: 124px;
        font-weight: 700;
        margin-bottom: 65px;
    }

    .development-section {
        padding: 10px 15px 10px 15px;
        margin-left: auto;
        width: 94%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .development-section h2 {
        font-size: 124px;
        font-weight: 700;
        margin-bottom: 45px;
    }

    .main-dev-wrapper {
        overflow: hidden;    
    }

    .development-box {
        background: #0F0F0F;
        padding: 45px 37px 55px 37px;
        text-align: center;
        height: 700px;
        transition: all 500ms ease;
    }

    .main-dev-wrapper:hover .development-box {
        transform: scale(1.1);
    }

    .development-box .logo {
        margin: 0 auto;
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .development-box .img-box {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .development-box .img-box img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .development-box p {
        font-size: 23px;
        padding: 40px 0;
    }

    .development-box h5 {
        font-size: 23px;
        color: var(--theme-red-1);
        margin-top: 20px;
    }

    @media (max-width: 1199px) {

        .development-section h2 {
            font-size: 75px;
            margin-bottom: 40px;
        }

        .development-box p,
        .development-box h5 {
            font-size: 16px;
        }

    }

    @media (max-width: 767px) {

        .development-section {
            padding: 60px 15px 60px 15px;
            width: 80%  ;
        }

        .development-section h2 {
            font-size: 36px;
            margin-bottom: 24px;
        }

        .development-box {
            height: inherit;
        }

    }

    /* ======================================================
    24. Contact Section Styles
    ====================================================== */

    .contact-section {
        padding: 70px 15px;
        margin-left: auto;
        height: 100vh;
        width: 94%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .contact-section .section-title {
        font-size: 124px;
        font-weight: 700;
        margin-bottom: 35px;
        margin-left: 70px;
    }

    .contact-info-box .box-1 {
        text-align: center;
    }

    .contact-info-box {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .contact-info-box .box-1 img {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 50px;
    }

    .contact-info-box .box-1 .img-box {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contact-info-box .box-1 h5 {
        margin: 10px 0;
        color: var(--theme-red-1);
    }

    .contact-info-box .box-1 .icon-box {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .contact-info-box .box-1 p {
        font-size: 20px;
    }

    .contact-form-box h3 {
        text-align: center;
        font-size: 51px;
        font-weight: 700;
        padding: 50px 0 50px 0;
    }

    .contact-form-box form {
        max-width: 1300px;
        margin: 0 auto;
    }

    .contact-form-box form input[type="text"],
    .contact-form-box form input[type="email"],
    .contact-form-box form textarea {
        width: 100%;
        background: transparent;
        border: 1px solid rgb(255, 255, 255, 0.2);
        padding: 14px 18px;
        margin-bottom: 24px;
    }

    .contact-form-box form textarea {
        height: 170px;
        resize: none;
    }

    .contact-form-box form input[type="text"]::placeholder,
    .contact-form-box form input[type="email"]::placeholder,
    .contact-form-box form textarea::placeholder {
        color: rgb(255, 255, 255, 0.5);
    }

    .contact-form-box form {
        max-width: 1300px;
        margin: 0 auto;
    }

    .contact-form-box form input[type="text"] {
        width: 100%;
        background: transparent;
        border: 1px solid rgb(255, 255, 255, 0.2);
        padding: 14px 18px;
    }

    .contact-form-box form .submit-btn {
        margin: 0 auto;
        display: flex;
        background: var(--theme-red-1);
        padding: 10px 20px;
        transition: all 500ms ease;
    }

    .contact-form-box form .submit-btn:hover{
        background: var(--white);
        color: var(--black);
    }

    @media (max-width: 1199px) {

        .contact-section .section-title {
            font-size: 75px;
            margin-left: 0;
            margin-bottom: 40px;
            text-align: center;
        }

        .contact-info-box .box-1 p {
            font-size: 16px;
        }

        .contact-form-box h3 {
            font-size: 36px;
            padding: 30px 0;
        }

    }

    @media (max-width: 767px) {

        .contact-section {
            padding: 60px 15px 60px 15px;
            width: 80%;
        }

        .contact-section .section-title {
            font-size: 48px;
            margin-bottom: 24px;
        }

        .contact-info-box {
            flex-direction: column;
            gap: 30px;
        }

        .contact-form-box h3 {
            font-size: 24px;
            padding: 20px 0;
        }

    }

    /* ======================================================
    25. CEO MSG Section Styles
    ====================================================== */

    .ceo-msg-section {
        padding: 0 15px;
        margin-left: auto;
        height: 100vh;
        width: 94%;
        display: flex;
        flex-wrap: wrap;
    }

    .ceo-content-box h2 {
        font-size: 100px;
        font-weight: 700;
        margin-bottom: 25px;
    }

    .ceo-content-box h4 {
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 15px;
        color: var(--theme-red-1);
    }

    .ceo-content-box h5 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 30px;
    }

    .ceo-content-box p {
        font-size: 24px;
    }

    .ceo-content-box blockquote {
        font-size: 28px;
        color: var(--theme-red-1);
        margin: 0;
        margin-top: 15px;
    }

    .ceo-content-box .sign-box {
        display: flex;
        justify-content: end;
    }

    .ceo-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 110px;
    }

    .ceo-content-box {
        flex: 1 1 55%;
    }

    .ceo-img-box {
        flex: 1 1 50%;
    }

    .ceo-img-box img {
        height: 945px;
    }


    @media (max-width: 1199px) {

        .ceo-content-box h2 {
            font-size: 75px;
            margin-bottom: 40px;
        }

        .ceo-content-box h4 {
            font-size: 36px;
        }

        .ceo-content-box h5 {
            font-size: 20px;
            margin-bottom: 30px;    
        }

        .ceo-content-box p,
        .ceo-content-box blockquote {
            font-size: 20px;
        }

        .ceo-container {
            gap: 50px;
        }

        .ceo-img-box img {
        height: inherit;
        }

        .ceo-msg-section{
            width: 90%;
        }

    }

    @media (max-width: 767px) {

        .ceo-msg-section {
            padding: 60px 15px 60px 15px;
            width: 76%;
        }

        .ceo-content-box h2 {
            font-size: 48px;
            margin-bottom: 24px;
        }

        .ceo-container {
            flex-direction: column;
            gap: 30px;
        }

    }

    ::-webkit-scrollbar-track ,
    ::-webkit-scrollbar {
    display: none;
    }

    /* ======================================================
    26. Contact Form 7 Snackbar Styles
    ====================================================== */

    .wpcf7-not-valid-tip{
        color: inherit;
    }


    .cf7-snackbar {
        position: fixed;
        left: 50%;
        bottom: 40px;
        transform: translateX(-50%);
        background: green;
        color: #fff;
        padding: 14px 22px;
        border-radius: 6px;
        font-size: 32px;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, bottom 0.35s ease;
    }

    .cf7-snackbar.is-active {
        opacity: 1;
        visibility: visible;
        bottom: 60px;
    }

    /* Error state */
    .cf7-snackbar.is-error {
        background: var(--black);
    }

    /* Optional: hide default CF7 message */
    .wpcf7-response-output {
        display: none !important;
    }


    /* ======================================================
    27. Hospitality Timeline Styles
    ====================================================== */


    .timeline-container {
        max-width: 1600px;
        margin: 0 auto;
        position: relative;
        padding: 350px 0;
    }

    .timeline-line {
        position: relative;
        height: 4px;
        background: linear-gradient(to right, #ff0000 0%, #ff0000 100%);
        margin: 60px 0;
    }

    .timeline-items {
        display: flex;
        justify-content: space-between;
        position: relative;
    }

    .timeline-item {
        position: relative;
        flex: 1;
        text-align: center;
    }

    .timeline-dot {
        width: 16px;
        height: 16px;
        background-color: var(--theme-red-1);
        border-radius: 50%;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: -6px;
        z-index: 2;
        box-shadow: 0 0 0 4px #000;
    }

    .timeline-content {
        position: relative;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        padding-bottom: 0;
    }

    .timeline-item:nth-child(even) .timeline-content {
        padding-top: 0;
    }

    .event-title {
        font-size: 24px;
        font-weight: 400;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .event-year {
        font-size: 48px;
        font-weight: bold;
        color: var(--theme-red-1);
        letter-spacing: 2px;
    }

    .event-details {
        font-size: 13px;
        margin-top: 12px;
        line-height: 1.6;
        opacity: 0.9;
    }

    .event-details div {
        margin: 4px 0;
        font-size: 24px;
    }

    /* Position content above or below line */
    .timeline-item:nth-child(odd) .event-year,
    .timeline-item:nth-child(odd) .event-title {
        position: relative;
        top: -220px;
    }

    .timeline-item:nth-child(even) .event-year,
    .timeline-item:nth-child(even) .event-title {
        position: relative;
        top: 40px;
    }

    .timeline-item:nth-child(odd) .event-details {
        position: relative;
        top: 30px;
    }

    .timeline-item:nth-child(even) .event-details {
        position: relative;
        top: 50px;
    }

    .event-title span {
        font-size: 14px;
    }

    /* Responsive Design */
    @media (max-width: 991px) {
        .event-year {
            font-size: 36px;
        }

        .event-title {
            font-size: 12px;
        }

        .event-details {
            font-size: 11px;
        }
        .event-details div {
            font-size: 12px;
        }
    }

    @media (max-width: 767px) {
        .timeline-items {
            flex-direction: column;
            gap: 80px;
        }

        .timeline-line {
            width: 4px;
            height: auto;
            min-height: 600px;
            margin: 0 auto;
            background: linear-gradient(to bottom, #ff0000 0%, #ff0000 100%);
        }

        .timeline-item {
            display: flex;
            align-items: flex-start;
            text-align: left;
            padding-left: 40px;
        }

        .timeline-dot {
            left: -34px;
            top: 10px;
            transform: none;
        }

        .timeline-item:nth-child(odd) .event-year,
        .timeline-item:nth-child(odd) .event-title,
        .timeline-item:nth-child(even) .event-year,
        .timeline-item:nth-child(even) .event-title {
            top: 0;
            position: static;
        }

        .timeline-item:nth-child(odd) .event-details,
        .timeline-item:nth-child(even) .event-details {
            top: 0;
            position: static;
        }

        .timeline-content {
            padding: 0 !important;
        }

        .event-year {
            font-size: 32px;
        }

        .timeline-container {
            padding: 20px;
        }
    }

    @media (max-width: 480px) {
        .event-year {
            font-size: 28px;
        }

        .event-title {
            font-size: 12px;
        }

        .event-details {
            font-size: 10px;
        }
    }


    .text-red {
        color: var(--theme-red-1);
    }

    .pt-1 {
        padding-top: 1rem;
    }
    .pt-2 {
        padding-top: 2rem;
    }
    .pt-3 {
        padding-top: 3rem;
    }


    /* ======================================================
    28. Entertainment Section Styles
    ====================================================== */

    .entertainment-section {
        width: 100%;
        overflow: hidden;
    }

    .ent-wrapper {
        display: flex;
        justify-content: center;
        align-items: stretch;
        height: 100vh;
        margin-left: 90px;
        position: relative;
    }

    .main-card {
        width: 33.33%;
        transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
        height: 100%;
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }

    .ent-wrapper:has(.main-card:hover) .main-card:not(:hover) {
        width: 5%;
    }

    .main-card:hover {
        width: 90%;
    }

    .main-card .inner {
        height: 100%;
        padding: 40px;
        position: relative;
        flex-wrap: wrap;
    }

    .main-card:nth-child(even) {
        background: var(--theme-red-1);
    }

    .main-card .box-area {
        opacity: 1;
        transition: opacity 300ms ease;
    }

    .main-card:hover .box-area {
        opacity: 0;
        position: absolute;
        pointer-events: none;
    }

    .main-card:hover ~ .main-card .box-area h2 {
        opacity: 0;
        transition: opacity 300ms ease;
    }

    .ent-wrapper:has(.main-card:hover) .main-card:not(:hover) .box-area h2 {
        opacity: 0;
        transition: opacity 300ms ease;
    }

    .main-card .box-area h2 {
        font-size: 67px;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-align: center;
        margin: auto;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
    }

    /* Content Area (Expanded State) */
    .main-card .content-area {
        opacity: 0;
        transform: translateY(20px);
        transition: all 400ms ease;
        pointer-events: none;
        max-width: 1200px;
        margin: 0 auto;
    }

    .main-card:hover .content-area {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .main-card .content-area h2 {
        font-size: 112px;
        font-weight: bold;
        margin-bottom: 15px;
        line-height: 1.2;
        text-transform: uppercase;
    }

    .main-card .content-area h5 {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 20px;
        color: var(--text-gray);
        text-transform: uppercase;
    }

    .main-card .content-area p {
        font-size: 24px;
        line-height: 1.5;
        margin-bottom: 30px;
        color: var(--text-light);
    }

    /* Video Slider Box */
    .video-slider-box {
        width: 100%;
        margin-top: 20px;
    }

    .video-slide {
        width: 100%;
        overflow: visible;
    }

    .video-slide .swiper-wrapper {
        display: flex;
    }

    .video-slide .swiper-slide {
        width: auto !important;
        height: auto;
    }

    .video-slider-box video {
        width: 495px;
        height: 316px;
        border-radius: 8px;
        object-fit: cover;
        background-color: #000;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
    }

    .video-slider-box video:hover {
        transform: scale(1.02);
    }

    .main-card.style-3 .content-area h2 {
        font-size: 104px;
    }

    /* Responsive Design */
    @media (max-width: 1400px) {
        .video-slider-box video {
            width: 400px;
            height: 250px;
        }
    }

    @media (max-width: 1199px) {
        .ent-wrapper {
            margin-left: 80px;
            height: auto;
            flex-direction: column;
        }

        .main-card {
            width: 100% !important;
            height: auto;
            min-height: 400px;
        }

        .main-card:hover {
            width: 100% !important;
        }

        .main-card:hover ~ .main-card {
            width: 100% !important;
        }

    .main-card .box-area {
            opacity: 0 !important;
            display: none;
        }

        .main-card .content-area {
            opacity: 1 !important;
            transform: translateY(0) !important;
            pointer-events: auto !important;
        }

        .main-card .box-area h2 {
            writing-mode: horizontal-tb;
            transform: none;
        }

        .video-slider-box video {
            width: 350px;
            height: 220px;
        }
    }

    @media (max-width: 767px) {
        .main-card .inner {
            padding: 60px 20px;
        }

        .main-card.style-3 .content-area h2,
        .main-card .content-area h2 {
            font-size: 28px;
        }    

        .main-card .content-area h5 {
            font-size: 16px;
        }

        .main-card .content-area p {
            font-size: 13px;
        }

        .video-slider-box video {
            width: 280px;
            height: 180px;
        }

    }

    @media (max-width: 575px) {
        .video-slider-box video {
            width: 100%;
            max-width: 320px;
            height: 200px;
        }

    .main-card .content-area h2 {
            font-size: 24px;
        }
    }

    /* Prevent text selection during hover transition */
    .main-card * {
        user-select: none;
    }

    .main-card video {
        user-select: none;
    }

    /* Add smooth scrollbar for video slider */
    .video-slide {
        padding-bottom: 10px;
    }

    /* Custom video controls styling */
    video::-webkit-media-controls-panel {
        background-color: rgba(0, 0, 0, 0.8);
    }

    video::-webkit-media-controls-play-button,
    video::-webkit-media-controls-timeline,
    video::-webkit-media-controls-current-time-display,
    video::-webkit-media-controls-time-remaining-display {
        filter: brightness(1.2);
    }


    .fp-watermark{
        display: none;
    }