
      body{
            overflow-x: hidden;
      }
         .custom-container{
        max-width:1600px;
        width:100%;
        MARGIN:auto;
       }
        .custom-container .position-realtive{position: relative;}
       .custom-container  .position-absolute{position: sticky;top:0;}
        /* Hero Section */
        .hero-section {
            position: relative;
            height: 500px;
            background: linear-gradient(rgba(0, 0, 0, 0.7)), 
                        url('../images/blog-banner.webp') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            animation: fadeIn 1s ease-in;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 20px;
            animation: slideDown 0.8s ease-out;
        }
        
        .hero-content p {
            font-size: 20px;
            font-weight: 300;
            margin-bottom: 30px;
            animation: slideUp 1s ease-out;
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Main Content Area */
     .main-content {
    padding: 15px 0;
    background-color: #f8f9fa;
}
        /* Ensure equal height rows */
        .blog-row {
            display: flex;
            flex-wrap: wrap;
            margin-left: -15px;
            margin-right: -15px;
        }
        
        .blog-col {
            display: flex;
            flex-direction: column;
        }
        
        /* Blog Card Styles */
       .blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(30px);
    animation: cardFadeIn 0.6s ease forwards;
    display: flex;
    flex-direction: column;
    height: 410px;
}
.coffee-section .blog-card {
    height: 385px !important;
}
        /* Stagger animation for cards */
        .blog-card:nth-child(1) { animation-delay: 0.1s; }
        .blog-card:nth-child(2) { animation-delay: 0.2s; }
        .blog-card:nth-child(3) { animation-delay: 0.3s; }
        .blog-card:nth-child(4) { animation-delay: 0.4s; }
        .blog-card:nth-child(5) { animation-delay: 0.5s; }
        .blog-card:nth-child(6) { animation-delay: 0.6s; }
        
        @keyframes cardFadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .main-content .container {
            max-width: 1600px;
            width: 100%;
        }
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
        }
        a.blog-anchor {
            width: 100%;
            height: 100%;
            background: transparent;
            top: 0;
            position: absolute;
        }
        .blog-card-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }
        
       .blog-card-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
        
        .blog-card:hover .blog-card-image img {
            transform: scale(1.1);
        }
        
       .blog-card-content {
    padding: 25px 25px 0px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
        
        .blog-card-date {
            color: #f68626;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }
.blog-card-title {
    font-size: 22px;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 15px;
    transition: color 0.3s ease;
    height: 50px;
    text-align: center;
    overflow: hidden;
}     
        .blog-card:hover .blog-card-title {
            color: #f68626;
        }
        
        .blog-card-description {
            color: #636e72;
            font-size: 15px;
            margin-bottom: 20px;
            line-height: 1.7;
            flex-grow: 1;
        }
        
        .btn-read-more {
    background: linear-gradient(135deg, red 0%, red 100%);
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    /* margin: auto; */
}
        
        .btn-read-more:hover {
            background: linear-gradient(135deg, red 0%, red 100%);
            color: #fff;
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }
        
        /* Sidebar Styles */
        .sidebar {
            animation: slideRight 0.8s ease-out;
        }
        
        @keyframes slideRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .sidebar-widget {
    /* background: #fff; */
    /* border-radius: 12px; */
    /* padding: 25px; */
   
    /* box-shadow: 0 4px 20px rgba(0,0,0,0.08); */
    transition: all 0.3s ease;
    width: 400px;
    margin: 0px auto 10px;
}
        
        /* .sidebar-widget:hover {
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        } */
        
        .widget-title {
            font-size: 20px;
            font-weight: 600;
            color: #2d3436;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f68626;
        }
        
        .search-box {
            position: relative;
        }
        
     .search-box input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    transition: all 0.3s ease;
    color: #000 !important;
}
        
        .search-box input:focus {
            outline: none;
            border-color: #f68626;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }
        
        .search-box button {
            position: absolute;
            right: 5px;
            top: 5px;
            background: #f68626;
            color: #fff;
            border: none;
            padding: 7px 15px;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .search-box button:hover {
            background: #764ba2;
        }
        
        .category-list {
            list-style: none;
            padding: 0;
        }
        
        .category-list li {
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.3s ease;
        }
        
        .category-list li:last-child {
            border-bottom: none;
        }
        
        .category-list li a {
            color: #636e72;
            text-decoration: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .category-list li:hover {
            padding-left: 10px;
        }
        
        .category-list li a:hover {
            color: #f68626;
        }
        
        .category-count {
            background: #f0f0f0;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 12px;
        }
        
        .recent-post {
            display: flex;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .recent-post:hover {
            transform: translateX(5px);
        }
        
        .recent-post-image {
            width: 70px;
            height: 70px;
            border-radius: 8px;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .recent-post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .recent-post:hover .recent-post-image img {
            transform: scale(1.1);
        }
        
        .recent-post-content h5 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 5px;
            color: #2d3436;
        }
        
        .recent-post-content h5 a {
            color: #2d3436;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .recent-post-content h5 a:hover {
            color: #f68626;
        }
        
        .recent-post-date {
            font-size: 12px;
            color: #95a5a6;
        }
        
        /* Footer Styles */
        .footer {
            background: linear-gradient(135deg, #2d3436 0%, #1e272e 100%);
            color: #fff;
            padding: 60px 0 20px;
            animation: fadeIn 1s ease-in;
        }
        
        .footer-widget {
            margin-bottom: 30px;
        }
        
        .footer-widget h4 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
        }
        
        .footer-widget h4:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: #f68626;
        }
        
        .footer-copyright span {
            color: #FFF;
        }
        .footer-center {
            text-align: center;
            align-self: end;
            padding-bottom: 7px;
        }

        .footer-widget p {
            color: #b2bec3;
            line-height: 1.8;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links li a {
            color: #b2bec3;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .footer-links li a:hover {
            color: #f68626;
            padding-left: 8px;
        }
        
        .footer-links li a:before {
            content: '→';
            margin-right: 8px;
            transition: margin-right 0.3s ease;
        }
        
        .footer-links li a:hover:before {
            margin-right: 12px;
        }
        
        .social-icons {
            margin-top: 20px;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            color: #fff;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: #f68626;
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }
        
        .footer-bottom {
            border-top: 0;
            margin-top: 10px;
            padding-top: 23px;
            text-align: right;
            color: #b2bec3;
            padding-bottom: 0;
        }

        .footer-social a {
            background: #444444;
            padding: 2px;
            width: 28px;
            height: 28px;
            color: #FFF;
        }

        .footer-social {
            margin-top: 10px;
        }

        footer p {
    color: #7e7e7e;
}
        
        /* Responsive Styles */
        @media (max-width: 991px) {
            .hero-content h1 {
                font-size: 42px;
            }
            
            .hero-content p {
                font-size: 18px;
            }
            
            .sidebar {
                margin-top: 40px;
            }
        }
        
        @media (max-width: 767px) {
            .hero-section {
                height: 400px;
            }
            
            .hero-content h1 {
                font-size: 32px;
            }
            
            .hero-content p {
                font-size: 16px;
            }
            
            .main-content {
                padding: 40px 0;
            }
            
            .blog-card-image {
                height: 200px;
            }
            
            .footer {
                text-align: center;
            }
            
            .footer-widget h4:after {
                left: 50%;
                transform: translateX(-50%);
            }
        }
 