 *{
        margin:0;
        padding:0;
        box-sizing:border-box;
    }

    body{
        font-family:'Montserrat',sans-serif;
    }

    /* ================= HEADER ================= */

    .main-header{
        width:100%;
        position:sticky;
        top:0;
        z-index:999;
    }

    /* ================= TOP BAR ================= */

    .topbar{
        background:#ececec;
        border-bottom:1px solid #ffffff;
        height:40px;
        display:flex;
        align-items:center;
    }

    .topbar-container{
        width:100%;
        display:flex;
        align-items:center;
        justify-content:space-between;
        padding:0 28px;
        position:relative;
    }

    .top-left,
    .top-right{
        display:flex;
        align-items:center;
        gap:35px;
    }

    .top-item{
        display:flex;
        align-items:center;
        gap:6px;
        font-size:11px;
        font-weight:600;
        color:#111;
        white-space:nowrap;
        letter-spacing:0.3px;
        cursor:pointer;
    }

    .top-item svg{
        width:15px;
        height:15px;
    }

    .top-divider{
        position:absolute;
        left:50%;
        top:0;
        transform:translateX(-50%);
        width:1px;
        height:40px;
        border-left:1px dashed #59a8ff;
    }

    
    /* ================= OFFER SECTION FIX ================= */

.top-right{
    display:flex;
    align-items:center;
    gap:25px;
    width:72%;
}

/* OFFER WRAPPER */
.offer-wrapper{
    flex:1;
    overflow:hidden;
    position:relative;
    height:20px;
}

/* MARQUEE */
.offer-marquee{
    display:flex;
    align-items:center;
    width:max-content;
    animation:marquee 25s linear infinite;
}

/* OFFER ITEM */
.offer-item{
    display:flex;
    align-items:center;
    gap:8px;
    white-space:nowrap;
    font-size:11px;
    font-weight:600;
    color:#111;
    padding-right:120px;
    min-width:max-content;
}

/* ICON */
.offer-item svg{
    width:14px;
    height:14px;
    color:#ff2d2d;
    flex-shrink:0;
}

/* ANIMATION */
@keyframes marquee{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

    /* ================= NAVBAR ================= */

    .navbar{
        height:132px;
        display:flex;
        align-items:center;
        background: #fff;

    }

    .navbar-container{
        width:100%;
        display:flex;
        align-items:center;
        justify-content:space-between;
        padding: 0 5%;
        background: #000;
        height: 110px;
        
        
    }

    /* ================= LOGO ================= */

    .logo-box{
        /* display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:flex-start;
        cursor:pointer; */
        display: flex;
    flex-direction: column;
    align-items: center; /* Center align pannunga logo and text-ah */
    cursor: pointer;
    }

    .logo-box img{
        width:120px;
        object-fit:contain;
    }

    .logo-box span{
        color:#fff;
        font-size:10px;
        font-weight:700;
        margin-top:2px;
        letter-spacing:1px;
        text-transform: uppercase;
    }

    /* ================= MENU ================= */

    .desktop-menu{
        display:flex;
        align-items:end;
        gap:25px;
        list-style:none;
        margin-left:auto;   /* menu right ku pogum */
    margin-right:40px;
    }

   .desktop-menu li{
    font-size:16px;
    font-weight:700;
    line-height:auto;
    letter-spacing:0%;
    color:#edeaea;
    cursor:pointer;
    transition:0.3s;
    font-family:'Inter',sans-serif;
}

    .desktop-menu li:hover{
        color:#d4af37;
    }

    /* ================= BUTTON ================= */

    .booking-btn{
        width:80px;
        height:45px;
        border:none;
        border-radius:6px;
        background:#ff0000;
        color:#fff;
        font-size:12px;
        font-weight:700;
        cursor:pointer;
        transition:0.3s;
        letter-spacing:0.5px;
    }

    .booking-btn:hover{
        background:#d90000;
    }

  

    /* ================= MOBILE ================= */

    .mobile-btn{
        display:none;
        background:none;
        border:none;
        color:#fff;
        cursor:pointer;
    }

    .mobile-menu{
        display:none;
    }

    /* ================= RESPONSIVE ================= */

    @media(max-width:991px){

        .topbar{
            display:none;
        }

        .desktop-menu,
        .booking-btn{
            display:none;
        }

        .mobile-btn{
            display:block;
        }

        .navbar{
            height:75px;
        }

        .navbar-container{
            padding:0 20px;
        }

        .logo-box img{
            width:62px;
        }

        .logo-box span{
            font-size:8px;
        }

        .mobile-menu{
            display:block;
            background:#000;
            max-height:0;
            overflow:hidden;
            transition:0.4s;
        }

        .mobile-menu.active{
            max-height:500px;
        }

        .mobile-menu ul{
            list-style:none;
            padding:20px;
        }

        .mobile-menu ul li{
            color:#fff;
            font-size:14px;
            font-weight:600;
            margin-bottom:18px;
            cursor:pointer;
        }

    }

