
    /* FLOAT BUTTONS */
.float-btn{
    position:fixed;
    right:20px;
    width:52px;
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#fff;
    font-size:20px;
    z-index:999;
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
    transition:.3s;
}

.call{ bottom:250px; background:#071c39; }
.whatsapp{ bottom:190px; background:#25D366; }
.enquiry{ bottom:130px; background:#ff6b00; border:none; cursor:pointer; }

.float-btn:hover{
    transform:translateY(-4px);
}

/* OVERLAY */
.overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    display:none;
    z-index:1000;
}

/* ================= SIDE DRAWER CARD ================= */

.side-drawer{
    position:fixed;
    top:0;
    right:-420px; /* hidden */
    width:400px;
    height:100%;
    background:#fff;
    z-index:1001;
    box-shadow:-10px 0 30px rgba(0,0,0,0.2);
    transition:.4s ease-in-out;
    padding:20px;
    overflow-y:auto;
}

/* ACTIVE STATE */
.side-drawer.active{
    right:0;
}

/* HEADER */
.drawer-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.drawer-header h3{
    font-size:20px;
    font-weight:800;
    color:#071c39;
}

.drawer-header span{
    font-size:26px;
    cursor:pointer;
    color:#071c39;
}

/* FORM */
.side-drawer input,
.side-drawer select,
.side-drawer textarea{
    width:100%;
    margin-bottom:10px;
    padding:10px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
}

.side-drawer button{
    width:100%;
    padding:12px;
    border:none;
    background:linear-gradient(135deg,#ff6b00,#ff8c1a);
    color:#fff;
    font-weight:700;
    border-radius:10px;
    cursor:pointer;
}

/* MOBILE */
@media(max-width:768px){
    .side-drawer{
        width:100%;
        right:-100%;
    }
}




*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

/* ================= TOPBAR ================= */
.topbar{
    background:#071c39;
    color:#fff;
    padding:10px 5%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:14px;
}

.topbar-left{
    display:flex;
    gap:25px;
}

.topbar-left a{
    color:#fff;
    text-decoration:none;
    display:flex;
    gap:8px;
    align-items:center;
}

.topbar-right{
    display:flex;
    gap:12px;
}

.topbar-right a{
    width:34px;
    height:34px;
    border:1px solid rgba(255,255,255,.3);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
}

/* ================= HEADER ================= */
.header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:8px 5%;
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.logo img{
    height:105px;
}

.menu{
    display:flex;
    gap:30px;
    align-items:center;
}

.menu a{
    text-decoration:none;
    color:#111;
    font-weight:500;
}

/* BUTTON */
.btn{
    background:#ff6b00;
    color:#fff;
    padding:12px 24px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
}

.toggle{
    display:none;
    font-size:32px;
    cursor:pointer;
}

/* ================= DESKTOP DROPDOWN (FIXED + ICON) ================= */
.dropdown{
    position:relative;
}

.dropdown > a{
    display:flex;
    align-items:center;
    gap:6px;
}

/* desktop arrow icon */
.d-arrow{
    font-size:12px;
    transition:0.3s;
}

.dropdown:hover .d-arrow{
    transform:rotate(180deg);
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    background:#fff;
    min-width:180px;
    display:none;
    flex-direction:column;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    border-radius:6px;
    overflow:hidden;
}

.dropdown-menu a{
    padding:10px 15px;
    border-bottom:1px solid #eee;
    text-decoration:none;
    color:#111;
}

.dropdown:hover .dropdown-menu{
    display:flex;
}

/* ================= MOBILE ================= */
.overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.5);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:9998;
}

.overlay.active{
    opacity:1;
    visibility:visible;
}

.mobile-menu{
    position:fixed;
    top:0;
    right:0;
    width:320px;
    height:100vh;
    background:#fff;
    z-index:9999;
    padding:25px;
    transform:translateX(100%);
    transition:0.3s;
    display:flex;
    flex-direction:column;
}

.mobile-menu.active{
    transform:translateX(0);
}

.mobile-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.close{
    font-size:32px;
    cursor:pointer;
}

.mobile-menu a{
    padding:15px 0;
    border-bottom:1px solid #eee;
    text-decoration:none;
    color:#111;
    font-weight:600;
}

/* MOBILE DROPDOWN */
.mobile-dropdown{
    display:flex;
    flex-direction:column;
}

.mobile-parent{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
}

/* mobile submenu */
.mobile-submenu{
    display:none;
    flex-direction:column;
    padding-left:15px;
}

.mobile-dropdown.active .mobile-submenu{
    display:flex;
}

/* mobile arrow */
.m-arrow{
    font-size:12px;
    transition:0.3s;
}

.mobile-dropdown.active .m-arrow{
    transform:rotate(180deg);
}

.mobile-btn{
    margin-top:auto;
    background:#ff6b00;
    color:#fff !important;
    text-align:center;
    padding:15px;
    border-radius:50px;
}

/* RESPONSIVE */
@media(max-width:991px){
    .menu,
    .btn{
        display:none;
    }
    .toggle{
        display:block;
    }
    .topbar{
        display:none;
    }
}

