﻿.input-group.rounded.shadow-sm.overflow-hidden {
    margin-top: -5px;
    height: 45px;
}

.rounded {
    border-radius: 1.25rem !important;
}

.img-slider img {
    width: 100%;
}

input.shadow-none.border-0.form-control {
    height: 45px;
}

i.feather-search {
    font-size: 15px;
}


.icon-bg {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    margin: 0 auto 10px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.bg-2 {
    background-color: #f3e2e3;
}

.service-label {
    font-size: 10px;
    font-weight: 600;
    color: #222;
    white-space: nowrap;
    text-align: center;
}

/* Different background colors similar to example */
.bg-1 {
    background-color: #fff0db;
}

.bg-2 {
    background-color: #f3e2e3;
}

.bg-3 {
    background-color: #e7edea;
}

.bg-4 {
    background-color: #e9f1f5;
}

.bg-5 {
    background-color: #feeeff;
}

.bg-6 {
    background-color: #f9f4e5;
}

.icon-bg.bg-7 {
    background: #e0e1fd;
}

.icon-bg.bg-8 {
    background: #f2ffd8;
}

.icon-bg.bg-9 {
    background: aliceblue;
}

.icon-bg.bg-10 {
    background: #e0efff;
}

.icon-bg.bg-11 {
    background: #fff0f0;
}

.icons-text {
    margin-top: 22px;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.suggest-item {
    background: white;
    padding: 12px;
    border-radius: 10px;
    margin-top: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    cursor: pointer;
    font-size: 15px;
}

    .suggest-item:hover {
        background: #f5f5f5;
    }

.whatsapp-card-new {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    /* justify-content: center; */
    background: #E9FBEF;
    border-radius: 5px;
    padding: 15px 10px;
    gap: 15px;
    height: 120px;
    transition: 0.3s ease;
}

    .whatsapp-card-new:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    }

.whatsapp-icon-new {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*margin-bottom: 8px;*/
}

    .whatsapp-icon-new i {
        font-size: 26px;
        color: white;
    }

/* 📱 Mobile Fix */
@media (max-width: 576px) {
    .whatsapp-card-new {
        height: 85px;
        padding: 10px;
    }

    .whatsapp-icon-new {
        width: 50px;
        height: 50px;
    }

        .whatsapp-icon-new i {
            font-size: 25px;
        }
}

.whatsapp-text {
    font-size: 12px;
    text-align: start;
}
/* 🔒 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 10px;
        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;
    }



    /* SLIDER IMPROVEMENT */


    /* GRID ICONS */
    .icons-text {
        transition: 0.3s;
    }

        .icons-text:hover {
            transform: translateY(-5px);
        }

    /* CARDS */
    .list-card {
        border-radius: 12px;
        transition: 0.3s;
        padding: 15px;
    }

        .list-card:hover {
            transform: translateY(-5px);
        }

    /* FOOTER */
    .desktop-footer {
        display: block;
        margin-top: 40px;
        padding: 20px 0;
        background: #2c3e50;
        color: #fff;
    }
}

@media (min-width: 992px) {

    #smallSearch {
        display: none !important;
    }

    #bigSearchBox {
        display: block !important;
        max-width: 600px;
        margin: 20px auto;
    }
}

@media (min-width: 768px) {
    .searchnew {
        display: none;
    }
}

@media (max-width:992px) {
    .searchnew {
        display: block;
    }
}

/* ✅ MOBILE SAFE (no change) */

/* 💻 DESKTOP DESIGN ONLY */
@media (min-width: 992px) {

    .desktop-icons-section {
        margin-top: 30px;
    }

        .desktop-icons-section .row {
            justify-content: flex-start !important;
            gap: 20px;
        }

    /* CARD STYLE */
    .icons-text {
        flex: 0 0 18%;
        max-width: 18%;
        background: #ffffff;
        border-radius: 14px;
        padding: 20px 10px;
        text-align: center;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        transition: 0.3s;
        cursor: pointer;
    }

        /* HOVER EFFECT 🔥 */
        .icons-text:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        }

    /* ICON BACKGROUND */
    .icon-bg {
        width: 70px;
        height: 70px;
        margin: auto;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #f5f7fa, #e4ecf7);
        transition: 0.3s;
    }

    .icons-text:hover .icon-bg {
        background: linear-gradient(314deg, #ffb66d, #fff7c5);
    }

    /* ICON IMAGE */
    .service-icon {
        width: 35px;
        transition: 0.3s;
    }

    .icons-text:hover .service-icon {
        transform: scale(1.1);
    }

    /* TEXT */
    .service-label {
        margin-top: 10px;
        font-size: 14px;
        font-weight: 600;
        color: #333;
    }

    .icons-text:hover .service-label {
        color: #ff6600;
    }

    /* WHATSAPP SPECIAL CARD */

}

@media (min-width: 992px) {

    .whatsapp-card-new {
        position: relative;
        background: linear-gradient(135deg, #25D366, #1ebe5d);
        border-radius: 16px;
        padding: 20px;
        overflow: hidden;
        display: block;
        height: 100%;
        color: #fff !important;
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
        transition: 0.4s;
    }

        /* Glow effect */
        .whatsapp-card-new::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.2), transparent 60%);
            transform: rotate(25deg);
        }

        /* Hover effect 🔥 */
        .whatsapp-card-new:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
        }

    /* ICON STYLE */
    .whatsapp-icon-new {
        width: 60px;
        height: 60px;
        margin: auto;
        border-radius: 50%;
        background: rgba(255,255,255,0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        backdrop-filter: blur(6px);
        margin-bottom: 12px;
        transition: 0.3s;
    }

    .whatsapp-card-new:hover .whatsapp-icon-new {
        background: rgba(255,255,255,0.25);
        transform: scale(1.1);
    }

    /* TEXT */
    .whatsapp-text {
        font-size: 15px;
        font-weight: 600;
        color: #fff !important;
        line-height: 1.4;
        text-align: center;
    }

    /* OPTIONAL BADGE 🔥 */
    .whatsapp-card-new::after {
        content: "JOIN NOW";
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 10px;
        background: #fff;
        color: #25D366;
        padding: 3px 8px;
        border-radius: 20px;
        font-weight: 700;
    }
}

/* 💻 DESKTOP PREMIUM DESIGN ONLY */
@media (min-width: 992px) {

    /* SECTION TITLE */
    .title {
        max-width: 1200px;
        margin: 30px auto 10px;
        padding: 0 !important;
    }

        .title h5 {
            font-size: 22px;
            font-weight: 700;
            color: #2c3e50;
        }

        .title a {
            font-size: 14px;
            color: #ff6600;
            transition: 0.3s;
        }

            .title a:hover {
                letter-spacing: 1px;
            }

    /* GRID LAYOUT 🔥 */
    .most_popular .row {
        max-width: 1200px;
        margin: auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    /* REMOVE FULL WIDTH */
    .most_popular .col-12 {
        padding: 0 !important;
    }

    /* CARD DESIGN */
    .list-card {
        border-radius: 16px !important;
        overflow: hidden;
        transition: 0.3s;
        border: 1px solid #eee;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

        /* HOVER EFFECT 🔥 */
        .list-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }

    /* CARD BODY */
    .list-card-body h6 a {
        font-size: 18px !important;
        font-weight: 600;
        color: #222;
        line-height: 1.4;
    }

        .list-card-body h6 a:hover {
            color: #ff6600;
        }

    .list-card-body p {
        font-size: 14px !important;
        color: #666;
    }

    /* DESCRIPTION LIMIT */
    .list-card-body .text-muted {
        -webkit-line-clamp: 3;
        display: -webkit-box;
    }

    /* TOPICS BADGE */
    .time span {
        font-size: 12px;
        background: #f1f3f6 !important;
        padding: 5px 10px !important;
        border-radius: 20px;
    }

    /* BUTTON */
    .list-card-badge a {
        background: linear-gradient(135deg, #ff6600, #ff8533) !important;
        border-radius: 25px !important;
        padding: 8px 16px !important;
        font-size: 13px !important;
        transition: 0.3s;
        display: inline-block;
    }

        .list-card-badge a:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255,102,0,0.4);
        }

    /* BANNER SLIDER IMPROVEMENT */

}

@media (min-width: 992px) {

    /* MAKE CARD FLEX */
    .list-card {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

        /* CONTENT AREA EXPANDS */
        .list-card .p-3 {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

    .list-card-body {
        flex-grow: 1;
    }

    /* FIX BUTTON AT BOTTOM 🔥 */
    .list-card-badge {
        margin-top: auto;
        text-align: right !important;
        padding-top: 10px;
    }
}
/* 💻 PREMIUM BANNER SECTION (DESKTOP ONLY) */
@media (min-width: 992px) {

    .offer-slider {
        max-width: 1200px;
        border-radius: 18px;
        display: flex;
        scroll-behavior: smooth;
    }

        /* SCROLLBAR HIDE */
        .offer-slider::-webkit-scrollbar {
            display: none;
        }

    /* EACH BANNER CARD */
    .cat-item {
        flex: 0 0 280px;
        transition: 0.4s;
        position: relative;
    }

        /* CARD STYLE */
        .cat-item a {
            display: block;
            /*border-radius: 16px;*/
            overflow: hidden;
            position: relative;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: 0.4s;
            background: #fff;
        }

        /* IMAGE */
        .cat-item img {
            width: 100%;
            object-fit: cover;
            transition: 0.4s;
        }

        /* HOVER EFFECT 🔥 */
        .cat-item:hover {
            transform: translateY(-8px);
        }

            .cat-item:hover img {
                transform: scale(1.08);
            }

        /* OVERLAY EFFECT */
        .cat-item a::after {
            content: "View More";
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0,0,0,0.6);
            color: #fff;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            opacity: 0;
            transition: 0.3s;
        }

        .cat-item:hover a::after {
            opacity: 1;
            bottom: 15px;
        }
}
/* 💻 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;
    }

    /* LINKS */
    .footer-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .footer-col ul li {
            margin-bottom: 8px;
        }

            .footer-col ul li a {
                color: #ffffff !important;
                text-decoration: none;
                font-size: 14px;
                transition: 0.3s;
            }

                .footer-col ul li a:hover {
                    color: #000;
                }

    /* WHATSAPP BUTTON 🔥 */
    .footer-whatsapp {
        display: inline-block;
        margin-top: 10px;
        background: white;
        color: #000;
        padding: 5px 10px;
        border-radius: 25px;
        font-size: 14px;
        text-decoration: none;
    }

        .footer-whatsapp:hover {
            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;
    }

        .footer-bottom p {
            color: white !important;
        }
}

@media (min-width: 992px) {

    .fixed-bottom {
        display: none !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; /* #fe6b38uce 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: orange#fe6b38;
    }

/* 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: 80px;*/ /* 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 {
    /*display: flex;*/
    align-items: center;
    gap: 5px;
}
/* ICON CONTAINER */
.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;
    }

/*New Homepage css Is here */
@media (min-width: 992px) {

    /* 🔴 PURE OLD DESIGN HIDE */
    .osahan-home-page,
    .desktop-icons-section,
    .most_popular,
    .offer-slider,
    footer.desktop-footer,
    .title,
    .desktop-header {
        display: none !important;
    }
}
/* HIDE NEW ON MOBILE */
@media (max-width: 768px) {
    .news-home, .news-footer {
        display: none;
    }
}

/* DESKTOP DESIGN */
@media (min-width: 992px) {

    .news-home {
        background: #f5f5f5;
        padding-bottom: 40px;
    }

    @media (min-width: 992px) {
        /* TOPBAR */
        .topbar {
            background: #4c0c0c;
            padding: 10px 0;
            overflow: hidden;
        }

        /* NEWS TICKER */
        .news-ticker {
            display: flex;
            align-items: center;
            gap: 15px;
            overflow: hidden;
        }

        /* NEWS LABEL */
        .breaking {
            background: #ff5a1f;
            color: #fff;
            font-weight: 700;
            padding: 6px 12px;
            font-size: 14px;
            white-space: nowrap;
            z-index: 2;
        }

        /* TICKER AREA */
        .ticker-wrap {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .ticker-move {
            display: flex;
            align-items: center;
            white-space: nowrap;
            width: max-content;
            /* SLOW CONTINUOUS */
            animation: marquee 40s linear infinite;
        }

            .ticker-move span {
                color: #fff;
                font-size: 15px;
                padding-right: 60px;
                flex-shrink: 0;
            }

        /* CONTINUOUS INFINITE */
        @keyframes marquee {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }
    }

    .header-row {
        display: flex;
        justify-content: space-between;
        padding: 15px 0;
    }

        .header-row span {
            color: #ff6a36;
        }

    .nav-bar {
        background: #565555;
        padding: 13px;
    }

        .nav-bar a {
            color: #ffffff !important;
            margin-right: 70px;
            font-size: 14px;
            text-decoration: none;
            font-weight: 500;
        }

    .main {
        display: grid;
        grid-template-columns: 70% 30%;
        gap: 20px;
        margin-top: 20px;
    }

    .big img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }

    .caption {
        background: rgb(76 12 12);
        color: white;
        padding: 10px;
        font-size: 30px;
        font-weight: 600;
    }

    .grid {
        display: grid;
        grid-template-columns: repeat(4,1fr);
        gap: 15px;
        margin-top: 20px;
    }

    .card img {
        width: 100%;
        height: 100px;
        object-fit: cover;
    }

    .card p {
        font-size: 14px;
        margin-top: 5px;
        padding: 10px;
    }

    .right .box {
        background: white;
        padding: 15px;
        margin-bottom: 15px;
    }

    .recent {
        display: flex;
        gap: 10px;
        margin-bottom: 10px;
    }

        .recent img {
            width: 70px;
            height: 50px;
        }

    .ad300 {
        width: 300px;
        height: 250px;
        margin: auto;
    }

    .empty-ad {
        background: #fff;
        border: 1px solid #ddd;
    }
}
.ad728 {
    width: 508px;
    height: 60px;
    
}

.empty-ad {
    background: #e5e5e5;
    border: 1px solid #ccc;
}
@media (min-width: 992px) {

    .search-box {
        border-top: 3px solid #ff6a36;
    }

    .search-wrapper {
        display: flex;
        border: 1px solid #ddd;
        overflow: hidden;
        border-radius: 3px;
        background: #fff;
    }

        .search-wrapper input {
            flex: 1;
            border: none;
            padding: 10px;
            font-size: 14px;
            outline: none;
        }

        .search-wrapper button {
            background: #ff6a36;
            border: none;
            color: white;
            padding: 0 15px;
            cursor: pointer;
            transition: 0.3s;
        }

            .search-wrapper button:hover {
                background: #c40000;
            }
}

@media (min-width: 992px) {

    .more-news {
        margin-top: 30px;
    }

    .section-title {
        font-size: 20px;
        font-weight: bold;
        border-left: 4px solid #fe6b38;
        padding-left: 10px;
        margin-bottom: 15px;
    }

    .more-grid {
        display: grid;
        grid-template-columns: repeat(4,1fr);
        gap: 20px;
    }

    .more-card img {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 10px;
}

    .category-grid div {
        background: #fff;
        padding: 15px;
        text-align: center;
        border: 1px solid #eee;
        transition: 0.3s;
    }

        .category-grid div:hover {
            background: #fe6b38;
            color: white;
        }

@media (min-width: 992px) {

    .news-footer {
        background: #4c0c0c;
        color: #fff;
        padding: 50px 0 20px;
        margin-top: 40px;
        margin-bottom: -26px !important;
    }

    .footer-top {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-col h4 {
        margin-bottom: 15px;
        font-size: 18px;
        border-left: 3px solid #fe6b38;
        padding-left: 8px;
    }

    .footer-col p {
        font-size: 14px;
        color: #ffffff;
    }

    .footer-col ul {
        list-style: none;
        padding: 0;
    }

        .footer-col ul li {
            margin-bottom: 8px;
        }

            .footer-col ul li a {
                color: #ccc;
                text-decoration: none;
                transition: 0.3s;
            }

                .footer-col ul li a:hover {
                    color: #fff;
                }

    /* SOCIAL */
    .footer-social a {
        display: inline-block;
        margin-right: 10px;
        color: #fff !important;
        transition: 0.3s;
    }

        .footer-social a:hover {
            color: #fe6b38 !important;
        }

    /* SUBSCRIBE */
    .subscribe-box {
        display: flex;
        margin-top: 10px;
    }

        .subscribe-box input {
            flex: 1;
            padding: 10px;
            border: none;
            outline: none;
        }

        .subscribe-box button {
            background: #fe6b38;
            border: none;
            color: #fff;
            padding: 10px 15px;
            cursor: pointer;
        }

    /* BOTTOM */
    .footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;
    }

    .footer-links a {
        color: #ffffff !important;
        text-decoration: none;
    }
}

body {
    margin-bottom: 0 !important;
}

a {
    color: #878787 !important;
}

.more-card p {
    padding: 5px;
}


/*megamenu Dropdown code here*/
.main-header {
    background: #4c0c0c;
    color: #fff;
    position: relative;
}

.nav-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}

.nav-menu {
    display: flex;
    gap: 80px;
    align-items: center;
}

    .nav-menu a {
        color: #fff !important;
        text-decoration: none;
        font-weight: 500;
        position: relative;
        font-size: 15px
    }

        .nav-menu a.active {
            color: red;
        }

/* MEGA MENU */
.mega-parent {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 37px;
    left: -300px;
    background: #4c0c0c;
    padding: 2px 0;
    display: none;
    z-index: 999;
    border-radius: 0px 0px 5px 5px;
}

/* SHOW */
.mega-parent:hover .mega-menu {
    display: block;
}

/* GRID */
.mega-grid {
    max-width: 1200px;
    margin: 0 auto; /* ✅ THIS IS THE FIX */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 10px;
}

/* CARD */
.mega-card {
    text-decoration: none;
    color: #fff;
}

    .mega-card img {
        width: 150px;
        height: 100px;
        object-fit: cover;
    }

    .mega-card p {
        font-size: 14px;
        margin-top: 10px;
        color: white;
    }

    .mega-card span {
        font-size: 12px;
        color: #aaa;
    }

    /* HOVER EFFECT */
    .mega-card:hover img {
        transform: scale(1.05);
        transition: 0.3s;
    }

body {
    overflow-x: hidden;
}

.menu-arrow {
    font-size: 10px;
    margin-left: 5px;
    transition: 0.3s;
}

/* Hover pe arrow rotate */
.mega-parent:hover .menu-arrow {
    transform: rotate(180deg);
}


.nav-container {
    position: relative;
}
/* DESKTOP ONLY */
.desktop-only {
    display: block;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
}

.mega-parent::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px; /* invisible hover bridge */
}
/* LifeStyle Area Start Here*/





.lifestyle-section {
    margin-top: 40px;
}

.section-title {
    font-size: 22px;
    font-weight: bold;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    position: relative;
}

    .section-title::after {
        content: "";
        width: 40px;
        height: 3px;
        position: absolute;
        bottom: -2px;
        left: 0;
    }


.lifestyle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}


.life-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

    .life-item img {
        width: 120px;
        height: 80px;
        object-fit: cover;
    }

    .life-item p {
        margin: 0;
        font-weight: 600;
    }

    .life-item span {
        font-size: 12px;
        color: gray;
    }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-all-btn {
    padding: 6px 12px;
    border: 1px solid #ff6a36;
    border-radius: 5px;
    color: #ff6a36 !important;
}

    .view-all-btn:hover {
        background-color: #ff6a36;
        color: white !important;
    }


.follow-title {
    background: #ff0000;
    color: #fff;
    padding: 12px 15px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 10px;
    color: #fff !important;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
}

    .social-btn i {
        font-size: 20px;
    }

    .social-btn:hover {
        transform: translateY(-3px);
    }

.facebook {
    background: #1877f2;
}

.whatsapp {
    background: #25D366;
}

.instagram {
    background: #ff0080;
}

.youtube {
    background: #ff0000;
}

.search-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    background:orangered; 
    padding:10px;
    color:#fff !important;
}