/* blog box and images */
  * {
            margin: 0;
            padding: 0;
            
        }
        

        body {
            font-family: 'Inter', sans-serif;
            background: #ffffff;
            line-height: 1.6;
        }

        /* Blog Section */
        .blog-section {
            padding: 80px 0px;
            background: #ffffff;
        }

        .blog-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .blog-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #000000;
            text-align: center;
            margin: 0 0 60px 0;
            font-family: 'Inter', sans-serif;
        }

        /* First Row - 3 Square Boxes */
        .blog-row-1 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }

        .blog-box-square {
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
            border: 1px solid #e9ecef;
        }

        .blog-box-square:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            border-color: #8B4513;
        }

        .blog-image-square {
            width: 100%;
            height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .blog-box-square:hover .blog-image-square {
            transform: scale(1.05);
        }

        .blog-content {
            padding: 30px;
        }

        .blog-box-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #000000;
            margin: 80px 0 40px 0;
            font-family: 'Inter', sans-serif;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .blog-box-title::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #8B4513, #A0522D, #8B4513);
            transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .blog-box-title::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.1), transparent);
            transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .blog-box-square:hover .blog-box-title {
            color: #8B4513;
            transform: translateX(5px);
            letter-spacing: 1px;
        }

        .blog-box-square:hover .blog-box-title::before {
            left: 0;
        }

        .blog-box-square:hover .blog-box-title::after {
            width: 100%;
        }

        .blog-excerpt {
            font-size: 0.95rem;
            color: #666666;
            line-height: 1.6;
            margin: 0 0 25px 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .read-more-btn {
            background: #8B4513;
            color: #ffffff;
            padding: 8px 16px;
            border: none;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-decoration: none;
            display: inline-block;
        }

        .read-more-btn:hover {
            background: #A0522D;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(139, 69, 19, 0.3);
        }

        /* Second Row - Single 16:9 Image */

      .blog-row-2-fullwidth {
  width: 100vw;
  max-width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  background: #fff; /* or your desired bg */
  padding: 0;
  box-sizing: border-box;
}

.blog-box-featured {
  background: #ffffff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
  border: 1px solid #e9ecef;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

.blog-box-featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: #8B4513;
}

.blog-image-featured {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #f5f5f5;
  overflow: hidden;
}

/* Ensure image always covers full width */
.blog-image-featured img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
  border-radius: 0 !important;
}

/* Read More Button */
.featured-read-more {
  position: absolute;
  right: 50px;
  bottom: 50px;
  z-index: 10;
  background: #A0522D;
  color: #fff;
  padding: 14px 32px 16px 32px;
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Tablet */
@media (max-width: 992px) {
  .featured-read-more {
    right: 25px;
    bottom: 25px;
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .featured-read-more {
    right: 15px;
    bottom: 15px;
    padding: 10px 20px;
    font-size: 0.8rem;
  }
}




        /* Blog Page Styles */
        .blog-page {
            display: none;
            padding: 80px 20px;
            background: #ffffff;
            min-height: 100vh;
        }

        .blog-page.active {
            display: block;
        }

        .blog-page-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .blog-page-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .blog-page-image {
            width: 100%;
            height: 400px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 30px;
        }

        .blog-page-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #000000;
            margin: 0 0 20px 0;
            font-family: 'Inter', sans-serif;
            position: relative;
            overflow: hidden;
        }

        .blog-page-title::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #8B4513, #A0522D, #D2691E);
            border-radius: 2px;
        }

        .blog-page-content {
            font-size: 1.1rem;
            color: #333333;
            line-height: 1.8;
            text-align: left;
        }

        .blog-page-content p {
            margin-bottom: 25px;
        }

        .back-btn {
            background: #8B4513;
            color: #ffffff;
            padding: 12px 24px;
            border: none;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 30px;
        }

        .back-btn:hover {
            background: #A0522D;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(139, 69, 19, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .blog-section, .blog-page {
                padding: 60px 20px;
            }

            .blog-title, .blog-page-title {
                font-size: 2rem;
                margin-bottom: 40px;
                margin-top: 40px;
            }

            .blog-row-1 {
                grid-template-columns: 1fr;
                gap: 30px;
                margin-bottom: 40px;
            }

            .blog-box-featured {
                max-width: 100%;
            }

            .blog-image-featured {
                font-size: 18px;
            }

            .featured-read-more {
                bottom: 30px;
                right: 55px;
                padding: 6px 12px;
                font-size: 0.75rem;
            }

            .blog-image-square {
                height: 200px;
            }

            .blog-content {
                padding: 25px;
            }

            .read-more-btn {
                padding: 6px 14px;
                font-size: 0.75rem;
            }

            .blog-page-image {
                height: 300px;
            }
        }

        @media (max-width: 480px) {
            .blog-section, .blog-page {
                padding: 40px 35px;
                margin-top: 8%;
            }

            .blog-title, .blog-page-title {
                font-size: 1.8rem;
            }

            .blog-image-square {
                height: 180px;
            }

            .blog-image-featured {
                font-size: 16px;
            }

            .blog-content {
                padding: 20px;
            }

            .read-more-btn {
                padding: 5px 12px;
                font-size: 0.7rem;
            }

            .featured-read-more {
                bottom: 15px;
                right: 30px;
                padding: 5px 10px;
                font-size: 0.7rem;
            }

            .blog-page-image {
                height: 250px;
            }
        }