﻿.text-head {
    font-size: 15px;
}
/* 🔒 MOBILE SAFE (default stays same) */
.desktop-header,
.desktop-footer {
    display: none;
}

/* 💻 DESKTOP VIEW ONLY */
@media (min-width: 992px) {

    body {
        background: #f5f7fb;
    }

    .desktop-header {
        display: block;
        background: #ffffff;
        padding: 15px 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        position: sticky;
        top: 0;
        z-index: 999;
    }

    .logo h3 {
        font-weight: 700;
        color: #2c3e50;
        margin: 0;
    }

    .desktop-menu a {
        margin: 0 12px;
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: 0.3s;
    }

        .desktop-menu a:hover {
            color: #ff6600;
        }

    .desktop-search input {
        border: 1px solid #ddd;
        padding: 8px 12px;
        border-radius: 6px;
        width: 200px;
    }

    /* MAIN LAYOUT */
    .desktop-wrapper {
        max-width: 1200px;
        margin: auto;
    }

    .osahan-home-page {
        margin-top: 20px;
    }

    /* SLIDER IMPROVEMENT */
    .img-slider img {
        height: 350px;
        object-fit: cover;
        border-radius: 10px;
    }

    /* GRID ICONS */
    .icons-text {
        transition: 0.3s;
    }

        .icons-text:hover {
            transform: translateY(-5px);
        }

    /* CARDS */
    .list-card {
        border-radius: 12px;
        transition: 0.3s;
    }

        .list-card:hover {
            transform: translateY(-5px);
        }
    .desktop-footer {
        display: block;
        margin-top: 40px;
        padding: 20px 0;
        background: #2c3e50;
        color: #fff;
    }
    /* FOOTER */
  
}
/* 💻 PREMIUM FOOTER */
@media (min-width: 992px) {

    .desktop-footer {
        background: #474444;
        color: #cbd5e1;
        padding: 50px 0 20px;
        margin-top: 60px;
        margin-bottom: -83px;
    }

    /* GRID */
    .footer-grid {
        max-width: 1200px;
        margin: auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    /* COLUMN */
    .footer-col h4 {
        color: #fff;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .footer-col h5 {
        color: #fff;
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-col p {
        font-size: 14px;
        line-height: 1.6;
        color:white;
    }
    .footer-bottom p {
        color: white;
    }
    /* LINKS */
    .footer-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .footer-col ul li {
            margin-bottom: 8px;
        }

            .footer-col ul li a {
                color: #cbd5e1;
                text-decoration: none;
                font-size: 14px;
                transition: 0.3s;
            }

                .footer-col ul li a:hover {
                    color: #ff6600;
                    padding-left: 5px;
                }

    /* WHATSAPP BUTTON 🔥 */
    .footer-whatsapp {
        display: inline-block;
        margin-top: 10px;
        background: linear-gradient(135deg, #25D366, #1ebe5d);
        color: #fff;
        padding: 8px 14px;
        border-radius: 25px;
        font-size: 14px;
        text-decoration: none;
        transition: 0.3s;
    }

        .footer-whatsapp:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
        }

    /* BOTTOM */
    .footer-bottom {
        text-align: center;
        border-top: 1px solid white;
        margin-top: 30px;
        padding-top: 15px;
        font-size: 13px;
        color: white !important;
    }
}
@media (min-width: 992px) {
    .upper, .fixed-bottom {
        display: none !important;
    }
}
@media (max-width:768px){
    .upper, .fixed-bottom {
        display: block !important;
    }
}
/* ===== PREMIUM DROPDOWN ===== */

.desktop-menu .dropdown {
    position: relative;
    display: inline-block;
}

/* MAIN DROPDOWN BOX */
.desktop-menu .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    transition: all 0.25s ease;
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 220px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.3);
    z-index: 999;
}

/* SHOW ANIMATION */
.desktop-menu .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* MENU ITEMS */
.desktop-menu .dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    margin: 4px 0;
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
    border-radius: 8px;
    transition: all 0.2s ease;
}

    /* HOVER EFFECT */
    .desktop-menu .dropdown-menu a:hover {
        background: linear-gradient(135deg, #fca305, #ff693a);
        color: #fff;
        transform: translateX(5px);
    }

/* SMALL ARROW */
.desktop-menu .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.75);
    transform: rotate(45deg);
    border-left: 1px solid rgba(255,255,255,0.3);
    border-top: 1px solid rgba(255,255,255,0.3);
}

/* ===== PROFILE DROPDOWN PREMIUM ===== */

.profile-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    transition: all 0.25s ease;
    position: absolute;
    right: 0;
    top: 120%;
    min-width: 220px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.3);
}

/* SHOW */
.profile-dropdown:hover .profile-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* PROFILE ITEMS */
.profile-menu a {
    display: block;
    padding: 10px 14px;
    margin: 4px 0;
    border-radius: 8px;
    font-size: 14px;
    color: #0f172a;
    transition: all 0.2s ease;
}

    .profile-menu a:hover {
        background: linear-gradient(135deg, #2563EB, #4F46E5);
        color: #fff;
        transform: translateX(5px);
    }
/* SEARCH ICON */
.search-icon {
    font-size: 20px;
    cursor: pointer;
}

/* FULL SEARCH BAR */
.full-search {
    width: 100%;
    background: transparent;
    padding: 15px 0;
    display: none;
    animation: slideDown 0.3s ease;
}

    .full-search input {
        height: 50px;
        font-size: 16px;
        border-radius: 10px;
        border-color: orange;
    }

/* ANIMATION */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* RIGHT SIDE CONTAINER */
.d-flex.align-items-center.gap-3 {
    gap: 10px !important; /* reduce gap */
}

/* SEARCH + PROFILE ICON SIZE */
.search-icon i,
.profile-icon {
    font-size: 22px; /* increase size */
    color: #0f172a;
    transition: 0.2s;
}

/* ICON WRAPPER (IMPORTANT FOR ALIGNMENT) */
.search-icon,
.profile-dropdown {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
}

    /* HOVER EFFECT (PREMIUM FEEL) */
    .search-icon:hover,
    .profile-dropdown:hover {
        background: orangered;
    }

/* IF TEXT IS NEAR ICON (REMOVE EXTRA SPACE) */
.desktop-menu a {
    margin-right: 12px !important;
}

.search-icon:hover i,
.profile-dropdown:hover i {
    color: white;
    transform: scale(1.1);
}
/* FULL SEARCH STICKY */
/* HEADER FIXED */
.desktop-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
}

/* SEARCH BAR FIXED */
.full-search {
    position: fixed;
    top: 70px;
    width: 100%;
    z-index: 999;
}

/* BODY SPACE FIX (IMPORTANT) */
body {
    padding-top: 110px; /* header + search space */
}
@media (max-width:768px) {
    body {
        padding-top: 0; /* header + search space */
    }
}
/* ARROW STYLE */
.menu-arrow {
    font-size: 14px;
    margin-left: 5px;
    transition: 0.3s;
}

/* ROTATE ON HOVER */
.dropdown:hover .menu-arrow {
    transform: rotate(180deg);
}

/* ALIGN FIX */
.desktop-menu a {
    align-items: center;
    gap: 5px;
}
.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 10px;
}

/* COMMON ICON STYLE */
.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    /* WHATSAPP */
    .social-icon.whatsapp {
        background: linear-gradient(135deg, #25D366, #128C7E);
    }

    /* INSTAGRAM */
    .social-icon.instagram {
        background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
    }

    /* FACEBOOK */
    .social-icon.facebook {
        background: linear-gradient(135deg, #1877f2, #0d5fd8);
    }

    /* HOVER EFFECT 🔥 */
    .social-icon:hover {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 10px 20px rgba(0,0,0,0.25);
    }

    /* GLOW EFFECT */
    .social-icon::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(255,255,255,0.2);
        top: -100%;
        left: 0;
        transition: 0.4s;
    }

    .social-icon:hover::after {
        top: 0;
    }