/* Ensure parent containers allow sticky */
        body,
        html {
            overflow-x: hidden;
        }

        /* Ensure wrapper doesn't interfere */
        .wrapper {
            position: relative;
        }

        .blog-img img {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }

        .blogCardsWrapper {
            height: 500px;
        }

        .h57_wrapper {
            height: 57%;
        }

        .web-story-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #ff6600;
            color: #fff !important;
            font-size: 13px;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 30px;
            text-decoration: none;
            transition: background 0.3s ease;
        }

        .web-story-btn:hover {
            background: #e55b00;
            color: #fff;
        }

        @media(max-width:768px) {
            .web-story-btn {
                position: relative;
                top: 0;
                right: 0;
                margin-bottom: 10px;
                display: inline-block;
            }
        }

        .trending-stories {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .story-tile {
            text-decoration: none;
            display: block;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .story-tile:hover {
            transform: translateY(-3px);
        }

        .story-thumb {
            height: 120px;
            background-size: cover;
            background-position: center;
            position: relative;
            border-radius: 10px;
        }

        .story-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: #fff;
            padding: 8px;
        }

        .story-title {
            font-size: 14px;
            font-weight: 600;
            line-height: 1.3;
        }

        .story-meta {
            font-size: 12px;
            opacity: 0.8;
        }

        .story-play-icon {
            position: absolute;
            top: 8px;
            left: 8px;
            background: rgba(255, 255, 255, 0.9);
            color: #ff6600;
            border-radius: 50%;
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .sidebar-right {
            background: #fff;
            border-radius: 10px;
            border: 1px solid #e2e2e2;
            padding: 20px;
            height: fit-content;
            box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
            position: relative;
        }

        .sidebar-right h5 {
            font-size: 17px;
            font-weight: 600;
            color: #222;
            border-bottom: 2px solid #f1f1f1;
            padding-bottom: 8px;
            margin-bottom: 15px;
        }

        .sidebar-right ul {
            list-style: none;
            padding-left: 0;
            margin-bottom: 20px;
        }

        .sidebar-right li {
            margin-bottom: 8px;
        }

        .sidebar-right a {
            color: #444;
            text-decoration: none;
            transition: color 0.3s;
        }

        .sidebar-right a:hover {
            color: #ff6600;
        }

        .popular-posts li {
            display: flex;
            gap: 10px;
            border-bottom: 1px solid #f0f0f0;
            padding-bottom: 10px;
            margin-bottom: 10px;
        }

        .popular-posts img {
            width: 60px;
            height: 50px;
            object-fit: cover;
            border-radius: 4px;
        }

        .popular-posts a {
            font-size: 14px;
            color: #333;
            line-height: 1.4;
        }

        .popular-posts a:hover {
            color: #ff6600;
        }

        /* ---------- Sidebar Widget Styling ---------- */
        .sidebar-widget.popular-locations {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            padding: 25px 20px;
            transition: all 0.3s ease;
        }

        .sidebar-widget.popular-locations:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }

        /* ---------- Widget Title ---------- */
        .sidebar-widget.popular-locations .widget-title {
            font-size: 18px;
            font-weight: 600;
            color: #222;
            margin-bottom: 18px;
            position: relative;
            padding-bottom: 6px;
        }

        .sidebar-widget.popular-locations .widget-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #007bff, #00bcd4);
            border-radius: 2px;
        }

        /* ---------- States List ---------- */
        .states-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        /* ---------- State Item ---------- */
        .state-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-decoration: none;
            background: #f9fafb;
            color: #333;
            font-weight: 500;
            border-radius: 8px;
            padding: 10px 14px;
            transition: all 0.25s ease-in-out;
            border: 1px solid #eee;
        }

        .state-item:hover {
            background: linear-gradient(90deg, #007bff, #00bcd4);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        /* ---------- State Arrow ---------- */
        .state-item .state-arrow {
            font-size: 1.1rem;
            opacity: 0;
            transform: translateX(-5px);
            transition: all 0.3s ease;
        }

        .state-item:hover .state-arrow {
            opacity: 1;
            transform: translateX(3px);
        }

        /* ---------- Responsive Design ---------- */
        @media (max-width: 768px) {
            .sidebar-widget.popular-locations {
                padding: 20px 15px;
            }

            .state-item {
                padding: 8px 12px;
                font-size: 0.95rem;
            }
        }

        /* ---------- Hero Slider Styles ---------- */
        .hero-slider-wrapper {
            position: relative;
            height: 400px;
            z-index: 0;
            overflow: hidden;
            border-radius: 10px;
            margin-bottom: 30px;
        }

        .hero-slider-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 400px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0;
            transition: opacity 0.6s ease-in-out;
            z-index: 1;
        }

        .hero-slider-item.active {
            opacity: 1;
            z-index: 2;
        }

        .hero-slider-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            padding: 30px;
            color: #fff;
        }

        .hero-slider-label {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-slider-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1.3;
            color: #fff;
        }

        .hero-slider-meta {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .hero-slider-meta .author-name {
            color: #ff6600;
            font-weight: 600;
        }

        .hero-slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #ff6600;
            color: #fff;
            border: none;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0;
            z-index: 10;
            cursor: pointer;
            transition: background 0.3s ease;
            font-size: 20px;
        }

        .hero-slider-nav:hover {
            background: #e55b00;
            color: #fff;
        }

        .hero-slider-nav.prev {
            left: 0;
        }

        .hero-slider-nav.next {
            right: 0;
        }

        .hero-slider-nav i {
            font-size: 18px;
        }

        .hero-slider-item a {
            text-decoration: none;
            color: inherit;
            display: block;
            height: 100%;
        }

        @media (max-width: 768px) {
            .hero-slider-wrapper {
                height: 300px;
            }

            .hero-slider-item {
                height: 300px;
            }

            .hero-slider-title {
                font-size: 20px;
            }

            .hero-slider-overlay {
                padding: 20px;
            }

            .hero-slider-nav {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }

        .sidebar-widget {
            background: #fff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            height: 400px;
            display: flex;
            flex-direction: column;
        }

        .sidebar-widget:hover {
            transform: translateY(-5px);
        }

        .widget-title {
            font-size: 18px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f0f0f0;
            position: relative;
        }

        .widget-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 40px;
            height: 2px;
            background: #007bff;
        }

        .recent-post-item {
            display: flex;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.3s ease;
        }

        .recent-post-item:hover {
            transform: translateX(5px);
        }

        .post-thumbnail {
            width: 100px;
            height: 70px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .post-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .post-thumbnail:hover img {
            transform: scale(1.1);
        }

        .post-content {
            flex: 1;
        }

        .post-title {
            color: #2c3e50;
            font-weight: 500;
            text-decoration: none;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 8px;
            transition: color 0.3s ease;
        }

        .post-title:hover {
            color: #007bff;
        }

        .post-meta {
            font-size: 12px;
            color: #666;
        }

        .recent-posts-list {
            overflow-x: auto;
            overflow-y: auto;
            flex: 1;
            padding-right: 10px;
        }

        .recent-posts-list::-webkit-scrollbar {
            width: 6px;
        }

        .recent-posts-list::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .recent-posts-list::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 10px;
        }

        .recent-posts-list::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

        /* ---------- Category Cards Section Styles ---------- */
        .category-cards-section {
            margin: 10px 0;
        }

        .category-section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding: 0 15px;
        }

        .category-section-title {
            font-size: 30px;
            font-weight: 700;
            color: #2c3e50;
            position: relative;
            padding-left: 20px;
        }

        .category-section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: #ff6600;
            border-radius: 2px;
        }

        .view-all-link {
            color: #2c3e50;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .view-all-link:hover {
            color: #ff6600;
        }

        .category-cards-container {
            display: flex;
            gap: 20px;
            max-height: 300px;
        }

        .category-cards-left {
            width: 40%;
            flex-shrink: 0;
        }

        .category-cards-right {
            width: 60%;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            max-height: 300px;
            overflow-y: auto;
        }

        .category-cards-right::-webkit-scrollbar {
            width: 6px;
        }

        .category-cards-right::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .category-cards-right::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 10px;
        }

        .category-cards-right::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

        .category-card {
            position: relative;
            height: 100%;
            border-radius: 12px;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .category-card-large {
            height: 300px;
        }

        .category-card-small {
            height: 140px;
        }

        .category-card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            padding: 25px;
        }

        .category-card-title {
            font-size: 24px;
            font-weight: 700;
            color: #fff;
            margin: 0 0 10px 0;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .category-card-meta {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 8px;
        }

        .category-card-meta i {
            font-size: 12px;
        }

        .category-card-small .category-card-title {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 0;
        }

        .category-card-small .category-card-overlay {
            padding: 10px 15px;
        }

        .category-card-link {
            text-decoration: none;
            display: block;
            height: 100%;
            width: 100%;
        }

        @media (max-width: 992px) {
            .category-cards-container {
                flex-direction: column;
                max-height: none;
            }

            .category-cards-left {
                width: 100%;
            }

            .category-cards-right {
                width: 100%;
                max-height: none;
                grid-template-columns: repeat(2, 1fr);
            }

            .category-card-large {
                height: 250px;
            }

            .category-card-small {
                height: 120px;
            }

            .category-section-title {
                font-size: 22px;
            }
        }

        @media (max-width: 576px) {
            .category-cards-right {
                grid-template-columns: 1fr;
            }
        }

        /* ---------- Policies Section Styles ---------- */
        .policies-section {
            margin: 10px 0;
        }

        .policies-layout {
            display: grid;
            grid-template-columns: 74% 24%;
            gap: 25px;
        }

        .policies-main-content {
            display: flex;
            gap: 20px;
        }

        .policies-featured-card {
            position: relative;
            width: 54%;
            flex-shrink: 0;
            height: 300px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .policies-featured-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .policies-featured-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .policies-featured-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            padding: 25px;
            color: #fff;
        }

        .policies-badge {
            background: #fb501a;
            color: #fff;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 10px;
        }

        .policies-featured-title {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin: 0 0 10px 0;
            line-height: 1.4;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .policies-featured-title:hover {
            color: #ff6600;
        }

        .policies-featured-meta {
            font-size: 13px;
            display:flex;
            gap: 8px;
            color: rgba(255, 255, 255, 0.9);
        }

        .policies-featured-content .policies-badge {
            margin-bottom: 10px;
        }

        .policies-article-list {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 15px;
            max-height: 300px;
            overflow-y: auto;
        }

        .policies-article-list::-webkit-scrollbar {
            width: 8px;
        }

        .policies-article-list::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .policies-article-list::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 10px;
        }

        .policies-article-list::-webkit-scrollbar-thumb:hover {
            background: #999;
        }

        .policies-article-item {
            display: flex;
            gap: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f0f0f0;
        }

        .policies-article-item:last-child {
            border-bottom: none;
        }

        .policies-article-content {
            flex: 1;
        }

        .policies-article-title {
            font-size: 16px;
            font-weight: 600;
            color: #222;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .policies-article-title:hover {
            color: #ff6600;
        }

        .policies-article-meta {
            font-size: 12px;
            color: #777;
display: flex;
gap: 8px;
        }

        .policies-sidebar {
            background: #fff;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
            width: 100%;
            max-width: 100%;
            max-height: 300px;
            overflow-y: auto;
        }

        .policies-sidebar::-webkit-scrollbar {
            width: 6px;
        }

        .policies-sidebar::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .policies-sidebar::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 10px;
        }

        .policies-sidebar::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

        .policies-sidebar-title {
            font-size: 16px;
            font-weight: 600;
            color: #222;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .policies-sidebar-title i {
            color: #ff6600;
        }

        .policies-popular-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .policies-popular-item {
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

        .policies-popular-thumb {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 6px;
        }

        .policies-popular-content {
            flex: 1;
        }

        .policies-popular-title {
            font-size: 12px;
            font-weight: 600;
            color: #222;
            margin-bottom: 5px;
            line-height: 1.3;
        }

        .policies-popular-title:hover {
            color: #ff6600;
        }

        .policies-popular-meta {
            font-size: 10px;
            color: #999;
        }

        @media (max-width: 992px) {
            .policies-layout {
                grid-template-columns: 1fr;
            }

            .policies-main-content {
                flex-direction: column;
            }

            .policies-featured-card {
                width: 100%;
                height: 250px;
            }

            .policies-article-list {
                max-height: none;
            }
        }

        /* ---------- Trending News Section Styles ---------- */
        .trending-news-card {
            border: 1px solid #eaeaea;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .trending-news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .trending-news-card .card-img-top {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }

        .trending-news-card .card-body {
            padding: 15px;
        }

        .trending-news-card .limited-text {
            font-size: 16px;
            font-weight: 600;
            color: #222;
            margin-bottom: 8px;
            line-height: 1.3;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            min-height: 2.6em;
            max-height: 2.6em;
        }

        .trending-news-card .limited-text:hover {
            color: #ff6600;
        }

        .trending-news-card .text-muted.trending-description {
            font-size: 13px;
            color: #666;
            margin-bottom: 8px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            min-height: 2.8em;
            max-height: 2.8em;
        }

        .trending-news-card .text-dark.trending-meta {
            font-size: 12px;
            color: #777;
            margin-bottom: 0;
            line-height: 1.3;
        }

        #subcategoryTabs .nav-link {
            color: #666;
            border-radius: 20px;
            padding: 8px 20px;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        #subcategoryTabs .nav-link:hover {
            color: #ff6600;
            background-color: #fff5f0;
        }

        #subcategoryTabs .nav-link.active {
            background-color: #ff6600;
            color: #fff;
        }

        @media (max-width: 768px) {
            .trending-news-card .card-img-top {
                height: 140px;
            }

            .trending-news-card .card-body {
                padding: 12px;
            }

            .trending-news-card .limited-text {
                font-size: 15px;
                margin-bottom: 6px;
            }

            .trending-news-card .text-muted.trending-description {
                font-size: 12px;
                margin-bottom: 6px;
            }

            .trending-news-card .text-dark.trending-meta {
                font-size: 11px;
            }

            #subcategoryTabs .nav-link {
                padding: 6px 15px;
                font-size: 14px;
                margin-right: 5px;
                margin-bottom: 5px;
            }
        }

        /* Main Blog Search Input Styling */
        .blog-search-input {
            border: 1px solid #ddd !important;
            border-radius: 20px;
            font-size: 14px;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            background-color: #ffffffff;
        }

        .blog-search-input:focus {
            border-color: #ff6600;
            box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.25);
            outline: none;
            background-color: #fff;
        }

        .blog-search-input::placeholder {
            color: #6c757d;
            font-style: italic;
        }

        /* Responsive adjustments for search input */
        @media (max-width: 768px) {
            .blog-search-input {
                min-width: 150px !important;
                font-size: 13px;
            }
        }

        @media (max-width: 576px) {
            .blog-search-input {
                min-width: 120px !important;
                font-size: 12px;
            }
        }

        /* Search Results Dropdown Styling */
        .search-container {
            position: relative;
        }

        .search-results-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            z-index: 1050;
            max-height: 400px;
            overflow: hidden;
            margin-top: 2px;
        }

        .search-results-header {
            padding: 10px 15px;
            background: #f8f9fa;
            border-bottom: 1px solid #e0e0e0;
            font-size: 12px;
            color: #666;
        }

        .search-results-list {
            max-height: 320px;
            overflow-y: auto;
        }

        .search-results-list::-webkit-scrollbar {
            width: 6px;
        }

        .search-results-list::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .search-results-list::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 3px;
        }

        .search-result-item {
            padding: 12px 15px;
            border-bottom: 1px solid #f0f0f0;
            cursor: pointer;
            transition: background-color 0.2s ease;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .search-result-item:hover {
            background-color: #f8f9fa;
        }

        .search-result-item:last-child {
            border-bottom: none;
        }

        .search-result-content {
            flex: 1;
        }

        .search-result-title {
            font-size: 14px;
            font-weight: 600;
            color: #222;
            margin-bottom: 4px;
            line-height: 1.3;
        }

        .search-result-meta {
            font-size: 12px;
            color: #666;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .search-result-category {
            background: #ff6600;
            color: #fff;
            padding: 2px 6px;
            border-radius: 3px;
            font-size: 10px;
            font-weight: 500;
        }

        .search-no-results {
            padding: 20px;
            text-align: center;
            color: #666;
            font-style: italic;
        }

        .search-highlight {
            background-color: #fff3cd;
            color: #856404;
            padding: 1px 2px;
            border-radius: 2px;
        }

        /* Banner Container */
        .banner-container {
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
            margin-top: 20px;
            transition: margin-top 0.3s ease;
        }

        /* Enquire Banner Styles */
        .enquire-banner {
            background: linear-gradient(135deg, #ff3c00b0 0%, #ff6600a8 50%, #0d6efdb5 100%);
            border-radius: 16px;
            padding: 30px 35px;
            color: #fff;
            position: relative;
            z-index: 1000;
            box-shadow: 0 8px 24px rgba(255, 60, 0, 0.3);
            height: 100%;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .enquire-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: float-bg 20s ease-in-out infinite;
            z-index: 0;
        }

        .enquire-banner::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0, 102, 255, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            animation: float-bg-reverse 25s ease-in-out infinite;
            z-index: 0;
        }

        @keyframes float-bg {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            50% {
                transform: translate(-30px, 30px) scale(1.1);
            }
        }

        @keyframes float-bg-reverse {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            50% {
                transform: translate(30px, -30px) scale(1.1);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.15);
                opacity: 0.8;
            }
        }

        .enquire-banner-content {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            position: relative;
            z-index: 1001;
        }

        .enquire-banner-text {
            flex: 1;
            margin-bottom: 0;
        }

        .enquire-banner-title {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 10px;
            color: #fff;
            line-height: 1.3;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            position: relative;
            z-index: 1;
        }

        .enquire-banner-title .highlight {
            color: #fff;
            font-weight: 800;
            text-shadow: 0 2px 12px rgba(255, 255, 255, 0%);
            position: relative;
            background: rgba(255, 255, 255, 0.2);
            padding: 2px 8px;
            border-radius: 4px;
            display: inline-block;
        }

        .enquire-banner-title .highlight::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
            opacity: 0.8;
            animation: underline-glow 2s ease-in-out infinite;
        }

        @keyframes underline-glow {

            0%,
            100% {
                opacity: 0.6;
            }

            50% {
                opacity: 1;
            }
        }

        .enquire-banner-subtitle {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.6;
            margin-bottom: 0;
            position: relative;
            z-index: 1;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
        }

        .enquire-banner-btn {
            background: linear-gradient(135deg, #ff6200 0%, #ff4100 100%);
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        .enquire-banner-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.5s ease;
        }

        .enquire-banner-btn:hover::before {
            left: 100%;
        }

        .enquire-banner-btn:hover {
            background: linear-gradient(135deg, #ff6200 0%, #ff4100 100%);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(255, 189, 19, 0.5);
        }

        .enquire-banner-btn:active {
            transform: translateY(-1px) scale(1.02);
        }

        .enquire-banner-btn i {
            font-size: 18px;
            transition: transform 0.3s ease;
        }

        .enquire-banner-btn:hover i {
            transform: rotate(-15deg) scale(1.1);
        }



        @media (max-width: 768px) {
            .enquire-banner {
                padding: 25px 20px;
                margin-bottom: 15px;
            }

            .enquire-banner::before,
            .enquire-banner::after {
                width: 250px;
                height: 250px;
            }

            .enquire-banner-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 18px;
            }

            .post-property-banner {
                padding: 20px;
            }

            .enquire-banner-title {
                font-size: 22px;
            }

            .enquire-banner-subtitle {
                font-size: 14px;
            }

            .post-property-text {
                font-size: 16px;
            }

            .enquire-banner-btn {
                width: 100%;
                padding: 13px 24px;
                justify-content: center;
                font-size: 15px;
            }

            .post-property-btn {
                width: 100%;
                padding: 12px 20px;
            }
        }

        /* Enquire Modal Styles */
        .enquire-modal .modal-content {
            border-radius: 12px;
            border: none;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        }

        .enquire-modal .modal-header {
            background: #fb501a;
            color: #fff;
            border-radius: 12px 12px 0 0;
            padding: 20px 25px;
            border-bottom: none;
        }

        .enquire-modal .modal-title {
            font-weight: 600;
            font-size: 22px;
            color: #fff;
        }

        .enquire-modal .btn-close {
            filter: invert(1);
            opacity: 0.9;
        }

        .enquire-modal .btn-close:hover {
            opacity: 1;
        }

        .enquire-modal .modal-body {
            padding: 30px;
        }

        .enquire-modal .form-label {
            font-weight: 500;
            color: #333;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .enquire-modal .form-control {
            border-radius: 8px;
            border: 1px solid #ddd;
            padding: 12px 15px;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .enquire-modal .form-control:focus {
            border-color: #fb501a;
            box-shadow: 0 0 0 0.2rem rgba(251, 80, 26, 0.25);
            outline: none;
        }

        .enquire-modal .text-danger {
            color: #fb501a !important;
        }

        .enquire-modal .btn-submit {
            background: #fb501a;
            color: #fff;
            border: none;
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .enquire-modal .btn-submit:hover {
            background: #e0450f;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(251, 80, 26, 0.3);
        }

        .enquire-modal .btn-submit:active {
            transform: translateY(0);
        }

        .enquire-modal .btn-submit:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
        }

        /* Fixed Nav Pills Container */
        .sticky-nav-pills {
            position: fixed !important;
            top: 66px !important;
            left: 0;
            right: 0;
            z-index: 98 !important;
            background: #fff !important;
            border-bottom: 1px solid #e9ecef;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            transform: translateY(0);
            padding: 0.5rem 1rem;
            margin: 0;
            box-shadow:
  rgba(0, 0, 0, 0.35) 0px -2px 4px,
  rgba(0, 0, 0, 0.25) 0px -6px 12px !important
        }


        /* Add padding to body to prevent content jump */
        body.sticky-nav-active {
            padding-top: 0;
        }

        /* Spacer to prevent content jump when nav becomes fixed */
        .sticky-nav-spacer {
            height: 0;
            transition: height 0.3s ease;
        }

        .sticky-nav-spacer.active {
            height: 60px;
            /* Adjust based on nav height */
        }

        /* Blog Videos Section Styles */
        .blog-videos-section {
            margin: 30px 0;
        }

        .blog-video-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .blog-video-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
        }

        .blog-video-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 12px 12px 0 0;
        }

        .blog-video-iframe {
            height: 220px;
            border: none;
        }

        .blog-video-badge {
            z-index: 10;
            font-size: 11px;
            font-weight: 600;
        }

        .blog-video-info {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .blog-video-title {
            font-size: 15px;
            font-weight: 600;
            color: #222;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            min-height: 2.8em;
            max-height: 2.8em;
        }

        .blog-video-description {
            font-size: 13px;
            color: #666;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            min-height: 2.6em;
            max-height: 2.6em;
        }

        .custom-swiper-nav {
            width: 40px;
            height: 40px;
            background: #fff;
            border: 2px solid #e9ecef;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #666;
            font-size: 16px;
        }

        .custom-swiper-nav:hover {
            background: #ff6600;
            border-color: #ff6600;
            color: #fff;
            transform: scale(1.1);
        }

        .blog-videos-swiper {
            padding: 10px 0 30px 0;
        }

        .blog-videos-swiper .swiper-slide {
            height: auto;
        }

        @media (max-width: 768px) {
            .blog-video-iframe {
                height: 180px;
            }

            .sticky-nav-pills {
                top: 50px !important;
                border-radius: 0px !important;

            }

            .nav-pills {
                display: flex;
                flex-wrap: nowrap !important;
                scrollbar-width: thin;
                overflow: hidden;
                justify-content: flex-start !important;
                overflow-x: auto;
            }

            .blog-video-title {
                font-size: 14px;
                min-height: 2.6em;
                max-height: 2.6em;
            }

            .blog-video-description {
                font-size: 12px;
                min-height: 2.4em;
                max-height: 2.4em;
            }

            .blog-video-info {
                padding: 15px !important;
            }

            .custom-swiper-nav {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }
        }

        @media (max-width: 576px) {
            .blog-video-iframe {
                height: 160px;
            }

            .blog-video-title {
                font-size: 13px;
            }

            .blog-video-description {
                font-size: 11px;
            }
        }
         .blog-layout {
            display: grid;
            grid-template-columns: 70% 28%;
            gap: 25px;
        }

        @media(max-width:992px) {
            .blog-layout {
                grid-template-columns: 1fr;
            }
        }

        .blog-card {
            display: flex;
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
            margin-bottom: 10px;
            border: 1px solid #eaeaea;
            transition: transform .3s, box-shadow .3s;
        }

        .blog-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
        }

        .blog-card img {
            width: 230px;
            height: 220px;
            object-fit: cover;
            border-right: 1px solid #f0f0f0;
        }

        .blog-content {
            padding: 20px;
            flex: 1;
        }

        .blog-content h5 {
            font-size: 19px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #222;
        }

        .blog-content h5:hover {
            color: #ff6600;
        }

        .blog-meta {
            font-size: 13px;
            color: #777;
            display:flex;
            gap:8px;
            margin-bottom: 10px;
        }

        .blog-content p {
            font-size: 14px;
            color: #555;
            line-height: 1.6;
            margin-bottom: 12px;
        }

        .badge-cat {
            background: #ff6600;
            color: #fff;
            border-radius: 4px;
            padding: 5px 10px;
            font-size: 12px;
            margin-bottom: 5px;
            display: inline-block;
        }

        .btn-read {
            font-size: 13px;
            color: #ff6600;
            text-transform: uppercase;
            font-weight: 600;
            text-decoration: none;
        }

        .btn-read:hover {
            color: #d94e00;
        }
        /* Blog Details css start */
         .blog-details-wrapper {
            background-color: #f8f9fa;
        }

        .blog-hero {
            position: relative;
            height: 400px;
            overflow: hidden;
        }

        .hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.05);
            transition: transform 0.3s ease;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
        }

        .blog-meta {
            color: #fff;
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 1rem;
        }

        .meta-item {
            display: inline-flex;
            align-items: center;
            font-size: 0.85rem;
            background: rgba(255, 255, 255, 0.1);
            padding: 6px 12px;
            border-radius: 20px;
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
        }

        .meta-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .meta-item i {
            margin-right: 8px;
        }

        .blog-title {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease;
        }

        .share-buttons {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 1.5rem;
        }

        .share-btn {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
        }

        .share-btn:hover {
            transform: translateY(-3px);
            color: #fff;
        }

        .facebook:hover {
            background: #1877f2;
        }

        .twitter:hover {
            background: #1da1f2;
        }

        .linkedin:hover {
            background: #0077b5;
        }

        .whatsapp:hover {
            background: #25d366;
        }

        .blog-content-wrapper {
            background: #fff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .blog-content-wrapper:hover {
            transform: translateY(-5px);
        }

        .blog-content {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #333;
        }

        .blog-content p {
            margin-bottom: 1.5rem;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 600;
            color: #2c3e50;
            margin: 2.5rem 0 1.5rem;
            position: relative;
            padding-bottom: 15px;
        }

        /* YouTube Videos Section Styles */
        .youtube-videos-section {
            margin: 3rem 0;
        }

        .youtube-videos-section .section-title {
            font-size: 1.75rem;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
        }

        .youtube-video-wrapper {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            margin-bottom: 1.5rem;
        }

        .youtube-video-wrapper:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            transform: translateY(-3px);
        }

        .youtube-video-wrapper iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .ratio-16x9 {
            aspect-ratio: 16 / 9;
        }

        @media (max-width: 768px) {
            .youtube-videos-section .section-title {
                font-size: 1.5rem;
            }

            .youtube-video-wrapper {
                margin-bottom: 1rem;
            }
        }

        .sidebar-widget {
            background: #fff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .sidebar-widget:hover {
            transform: translateY(-5px);
        }

        .widget-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f0f0f0;
            position: relative;
        }

        .widget-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 40px;
            height: 2px;
            background: #007bff;
        }

        .recent-post-item {
            display: flex;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.3s ease;
        }

        .recent-post-item:hover {
            transform: translateX(5px);
        }

        .post-thumbnail {
            width: 100px;
            height: 70px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .post-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .post-thumbnail:hover img {
            transform: scale(1.1);
        }

        .post-content {
            flex: 1;
        }

        .post-title {
            color: #2c3e50;
            font-weight: 500;
            text-decoration: none;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 8px;
            transition: color 0.3s ease;
        }

        .post-title:hover {
            color: #007bff;
        }

        .post-meta {
            font-size: 0.85rem;
            color: #666;
        }

        .states-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .state-item {
            display: block;
            padding: 12px;
            background: #f8f9fa;
            border-radius: 8px;
            color: #2c3e50;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .state-item:hover {
            background: #007bff;
            color: #fff;
            transform: translateY(-3px);
        }

        .quick-links-widget {
            margin-top: 1.5rem;
        }

        .quick-links-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 8px;
        }

        .quick-links-list li {
            margin-bottom: 0;
        }

        .quick-links-list a {
            display: flex;
            align-items: center;
            padding: 8px 10px;
            color: #2c3e50;
            text-decoration: none;
            border-radius: 6px;
            transition: all 0.3s ease;
            background: #f8f9fa;
            font-size: 0.85rem;
        }

        .quick-links-list a:hover {
            background: #007bff;
            color: #fff;
            transform: translateX(5px);
        }

        .quick-links-list i {
            margin-right: 6px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .quick-links-list a:hover i {
            transform: scale(1.1);
        }

        .hero-scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #fff;
        }

        .mouse {
            width: 30px;
            height: 50px;
            border: 2px solid #fff;
            border-radius: 15px;
            position: relative;
        }

        .wheel {
            width: 4px;
            height: 8px;
            background: #fff;
            border-radius: 2px;
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            animation: scroll 1.5s infinite;
        }

        .arrow {
            margin-top: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .arrow span {
            display: block;
            width: 10px;
            height: 10px;
            border-bottom: 2px solid #fff;
            border-right: 2px solid #fff;
            transform: rotate(45deg);
            margin: -5px;
            animation: arrow 1.5s infinite;
        }

        .arrow span:nth-child(2) {
            animation-delay: 0.2s;
        }

        .arrow span:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes scroll {
            0% {
                transform: translateX(-50%) translateY(0);
                opacity: 1;
            }

            100% {
                transform: translateX(-50%) translateY(15px);
                opacity: 0;
            }
        }

        @keyframes arrow {
            0% {
                opacity: 0;
            }

            50% {
                opacity: 1;
            }

            100% {
                opacity: 0;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .blog-hero {
                height: 300px;
            }

            .blog-title {
                font-size: 1.8rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .blog-content-wrapper {
                padding: 20px;
            }

            .states-list {
                grid-template-columns: 1fr;
            }

            .meta-item {
                font-size: 0.8rem;
                padding: 5px 10px;
            }

            .share-buttons {
                gap: 10px;
            }

            .share-btn {
                width: 32px;
                height: 32px;
                font-size: 1rem;
            }

            .quick-links-list {
                grid-template-columns: 1fr;
            }
        }

        .blog-categories {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #eee;
        }

        .categories-title {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .categories-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .category-item {
            padding: 8px 15px;
            background: #f8f9fa;
            border-radius: 20px;
            color: #2c3e50;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .category-item:hover {
            background: #007bff;
            color: #fff;
            transform: translateY(-2px);
        }

        .blog-tags {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #eee;
        }

        .tags-title {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag-item {
            padding: 8px 15px;
            background: #f8f9fa;
            border-radius: 20px;
            color: #2c3e50;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .tag-item i {
            font-size: 1rem;
            color: #007bff;
            transition: all 0.3s ease;
        }

        .tag-item:hover {
            background: #007bff;
            color: #fff;
            transform: translateY(-2px);
        }

        .tag-item:hover i {
            color: #fff;
        }

        /* Remove newsletter widget styles */
        .newsletter-widget,
        .newsletter-text,
        .newsletter-form {
            display: none;
        }

        .custom-content {
            margin-top: 50px;
        }

        .card {
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin-bottom: 30px;
        }

        .card-img-top {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-bottom: 1px solid #ddd;
        }

        .card-body {
            padding: 20px;
        }

        .card-title {
            font-size: 1.2rem;
            color: #333;
            font-weight: bold;
            margin-bottom: 10px;
            text-decoration: none;
        }

        .card-title:hover {
            color: #007bff;
        }

        .text-muted {
            font-size: 0.6rem;
            color: #6c757d;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .card {
                margin-bottom: 20px;
            }
        }

        .blog-feedback {
            max-width: 700px;
            margin: 0 auto;
        }

        .comment-card {
            transition: all 0.2s ease-in-out;
        }

        .comment-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        }

        .heart-btn {
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .heart-btn:hover {
            transform: scale(1.1);
        }

        #like-icon {
            transition: fill 0.3s ease, transform 0.2s ease;
            stroke: #dc3545;
            fill: transparent;
        }

        #like-icon.filled {
            fill: #dc3545;
            stroke: #dc3545;
            transform: scale(1.15);
            animation: pulse 0.25s ease;
        }
        .side-height{
            height: auto !important;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.3);
            }

            100% {
                transform: scale(1.15);
            }
        }