
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
            text-decoration: none !important;
        }
        body {
            color: #333;
            background-color: #f7f6f2;
        }
        /* Header with Hero Image */
        .blog-hero {
            position: relative;
            width: 100%;
            margin-top: -40px !important;
            height: 110vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .blog-hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }

        @media (max-width: 768px) {
            .blog-hero-image {
                object-position: 30% center;
            }
        }

        .blog-hero-content {
            text-align: center;
            color: white;
            z-index: 1;
            max-width: 800px;
            padding: 20px;
        }
        .blog-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
            font-weight: 100;
            letter-spacing: 1px;
        }
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.3);
            z-index: 0;
        }
        /* Common Section Styles */
        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 40px;
            position: relative;
        }
        .section-subtitle {
            color: #c19a6b;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        .section-title {
            font-size: 2.2rem;
            font-weight: 200;
            margin-bottom: 30px;
            color: #222;
            line-height: 1.2;
        }
        .section-description {
            font-size: 1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 30px;
        }
        /* Featured Posts Carousel */
        .featured-carousel-wrapper {
            position: relative;
            width: 100%;
            margin-bottom: 80px;
        }
        .featured-carousel {
            position: relative;
            width: 90%;
            margin: 0 auto;
            overflow: hidden;
        }
        .carousel-container {
            display: flex;
            transition: transform 0.5s ease-in-out;
            width: 100%;
        }
        .featured-post {
            flex: 0 0 100%;
            min-width: 100%;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        .featured-image {
            height: 400px;
            overflow: hidden;
        }
        .featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .featured-content {
            padding: 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .featured-category {
            display: inline-block;
            padding: 5px 15px;
            background-color: #f0e6d8;
            color: #c19a6b;
            font-size: 0.8rem;
            font-weight: 600;
            border-radius: 20px;
            margin-bottom: 15px;
        }
        .featured-title {
            font-size: 2rem;
            font-weight: 200;
            margin-bottom: 20px;
            color: #222;
            line-height: 1.3;
        }
        .carousel-nav {
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            z-index: 10;
            pointer-events: none;
            height: 0;
        }
        .carousel-btn {
            background-color: #d4a762;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background-color 0.3s ease;
            color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            pointer-events: auto;
            position: absolute;
            z-index: 20;
            top: 50%;
            transform: translateY(-50%);
            margin: 0 20px;
        }
        .carousel-btn i {
            font-size: 1.2rem;
            color: white;
        }
        .carousel-btn:hover {
            background-color: #b08a4a;
        }
        /* This code Prevent iOS Safari pink highlight on tap */
        .carousel-btn {
            -webkit-tap-highlight-color: transparent;
            -webkit-focus-ring-color: transparent;
            outline: none;
        }
        .carousel-btn:focus,
        .carousel-btn:active {
            outline: none;
            box-shadow: none;
            background-color: #b08a4a !important;
            -webkit-tap-highlight-color: transparent;
        }
        #prevBtn {
            left: 0;
        }
        #nextBtn {
            right: 0;
        }
        .carousel-dots {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #ddd;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .dot.active {
            background-color: #d4a762;
        }
        /* Blog Grid Section */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }
        .blog-card {
            background: white;
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            display: block;
            text-decoration: none;
            color: inherit;
            height: 430px;
        }
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .blog-image {
            height: 250px;
            overflow: hidden;
        }
        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .blog-card:hover .blog-image img {
            transform: scale(1.05);
        }
        .blog-content {
            padding: 25px;
            display: flex;
            flex-direction: column;
            height: calc(100% - 250px);
            box-sizing: border-box;
        }
        .blog-category {
            display: inline-block;
            padding: 3px 12px;
            background-color: #f0e6d8;
            color: #c19a6b;
            font-size: 0.7rem;
            font-weight: 600;
            border-radius: 20px;
            margin-bottom: 12px;
            text-align: center;
            line-height: 1.3;
            white-space: nowrap;
            max-width: 100px;
            overflow: hidden;
            text-overflow: ellipsis;
            text-decoration: none !important;
        }
        .blog-title {
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 15px;
            color: #222;
            line-height: 1.4;
            flex-grow: 1;
        }
        .blog-meta {
            display: flex;
            align-items: center;
            font-size: 0.8rem;
            color: #888;
            margin-top: auto;
        }
        .blog-meta i {
            margin-right: 5px;
            color: #c19a6b;
            font-size: 0.9rem;
        }
        .blog-meta span {
            margin-right: 15px;
        }
        /* Responsive Design */
        @media (max-width: 1024px) {
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .featured-post {
                grid-template-columns: 1fr;
            }
            .featured-image {
                height: 300px;
            }
            .blog-card {
                height: 450px;
            }
            .blog-image {
                height: 220px;
            }
        }
        @media (max-width: 768px) {
            .blog-hero h1 {
                font-size: 2.5rem;
            }
            .section-container {
                padding: 60px 20px;
            }
            .section-title {
                font-size: 2rem;
            }
            .blog-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }
            .carousel-btn {
                width: 40px;
                height: 40px;
            }
            .featured-carousel {
                width: 100%;
            }
            .blog-card {
                height: 420px;
            }
            .blog-image {
                height: 200px;
            }
        }

        /* Round WhatsApp Button */
    .whatsapp-float {
      position: fixed;
      bottom: 25px;
      right: 18px;
      width: 60px;
      height: 60px;
      background-color: #25D366;
      color: white;
      border-radius: 50%;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 28px;
      z-index: 999;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none !important;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

    .whatsapp-icon {
      color: white;
    }


    @media (max-width: 768px) {
      .whatsapp-float {
        bottom: 20px;
        right: 18px;
        width: 50px;
        height: 50px;
        font-size: 24px;
        padding: 12px;
      }
    }
   