        /* === BLOG SECTION WITH GLASS BUBBLES === */
        .blog-section {
            padding: 100px 5%;
            background: linear-gradient(135deg, #141E30 0%, #1a2332 50%, #0f1724 100%);
            position: relative;
            overflow: hidden;
            min-height: 100vh;
        }

            /* Floating Glass Bubbles Background */
            .blog-section::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: radial-gradient(circle at 15% 70%, rgba(63, 94, 150, 0.18) 0%, transparent 50%), radial-gradient(circle at 85% 30%, rgba(20, 30, 48, 0.22) 0%, transparent 50%), radial-gradient(circle at 50% 90%, rgba(63, 94, 150, 0.15) 0%, transparent 50%);
                pointer-events: none;
                z-index: 0;
            }

        .bubbles-blog {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .bubble-blog {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1.5px solid rgba(63, 94, 150, 0.3);
            box-shadow: 0 20px 50px rgba(20, 30, 48, 0.3), inset 0 0 30px rgba(255, 255, 255, 0.1);
            animation: float-light 24s infinite ease-in-out;
            opacity: 0.7;
        }

            /* 6 Bubbles for Blog Section */
            .bubble-blog:nth-child(1) {
                width: 380px;
                height: 380px;
                top: -8%;
                right: -6%;
                background: rgba(63, 94, 150, 0.14);
                animation-delay: 1s;
                animation-duration: 27s;
            }

            .bubble-blog:nth-child(2) {
                width: 290px;
                height: 290px;
                top: 60%;
                left: -10%;
                background: rgba(20, 30, 48, 0.18);
                animation-delay: 7s;
                animation-duration: 23s;
            }

            .bubble-blog:nth-child(3) {
                width: 170px;
                height: 170px;
                bottom: 20%;
                right: 12%;
                background: rgba(63, 94, 150, 0.2);
                animation-delay: 10s;
                animation-duration: 19s;
            }

            .bubble-blog:nth-child(4) {
                width: 250px;
                height: 250px;
                top: 25%;
                left: 10%;
                background: rgba(80, 110, 160, 0.16);
                animation-delay: 4s;
                animation-duration: 29s;
            }

            .bubble-blog:nth-child(5) {
                width: 150px;
                height: 150px;
                bottom: 40%;
                left: 20%;
                background: rgba(40, 60, 100, 0.22);
                animation-delay: 13s;
                animation-duration: 21s;
            }

            .bubble-blog:nth-child(6) {
                width: 360px;
                height: 360px;
                bottom: -12%;
                right: -4%;
                background: rgba(63, 94, 150, 0.11);
                animation-delay: 9s;
                animation-duration: 31s;
            }

        @keyframes float-light {
            0%, 100% {
                transform: translateY(0) translateX(0) rotate(0deg) scale(1);
            }

            25% {
                transform: translateY(-70px) translateX(60px) rotate(15deg) scale(1.08);
            }

            50% {
                transform: translateY(-110px) translateX(-50px) rotate(-12deg) scale(0.94);
            }

            75% {
                transform: translateY(-60px) translateX(70px) rotate(10deg) scale(1.05);
            }
        }

        /* Blog Header */
        .blog-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 10;
        }

        .blog-heading {
            color: #2fa9c9;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            text-shadow: 0 2px 10px rgba(47, 169, 201, 0.3);
        }

        .blog-title {
            color: #e2e8f0;
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .blog-description {
            color: #94a3b8;
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Blog Grid */
        .blog-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        /* Blog Cards */
        .blog-card {
            background: rgba(255, 255, 255, 0.07);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 12px 35px rgba(20, 30, 48, 0.4);
            border: 1px solid rgba(63, 94, 150, 0.25);
        }

            .blog-card:hover {
                transform: translateY(-15px);
                box-shadow: 0 30px 60px rgba(63, 94, 150, 0.35);
                border-color: rgba(63, 94, 150, 0.5);
                background: rgba(255, 255, 255, 0.1);
            }

        .blog-image {
            width: 100%;
            height: 220px;
            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.1);
        }

        .blog-content {
            padding: 30px;
        }

        .blog-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            font-size: 0.9rem;
            color: #94a3b8;
        }

        .blog-category {
            background: rgba(47, 169, 201, 0.2);
            color: #2fa9c9;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .blog-date {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .blog-card h3 {
            color: #e2e8f0;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .blog-card p {
            color: #94a3b8;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .blog-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #2fa9c9;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

            .blog-btn:hover {
                color: #00e0ff;
                transform: translateX(5px);
            }


            

    /* === MAIN CONTENT SECTION WITH SIDEBAR === */
    .main-content-section {
      padding: 100px 5%;
      background: linear-gradient(135deg, #141E30 0%, #1a2332 50%, #0f1724 100%);
      position: relative;
      overflow: hidden;
      min-height: 80vh;
    }

    /* Floating Glass Bubbles Background */
    .main-content-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background:
          radial-gradient(circle at 15% 70%, rgba(63, 94, 150, 0.18) 0%, transparent 50%),
          radial-gradient(circle at 85% 30%, rgba(20, 30, 48, 0.22) 0%, transparent 50%),
          radial-gradient(circle at 50% 90%, rgba(63, 94, 150, 0.15) 0%, transparent 50%);
      pointer-events: none;
      z-index: 0;
    }

    .bubbles-main {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

    .bubble-main {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1.5px solid rgba(63, 94, 150, 0.3);
      box-shadow:
          0 20px 50px rgba(20, 30, 48, 0.3),
          inset 0 0 30px rgba(255, 255, 255, 0.1);
      animation: float-light 24s infinite ease-in-out;
      opacity: 0.7;
    }

    /* 6 Bubbles for Main Section */
    .bubble-main:nth-child(1) { width: 380px; height: 380px; top: -8%; right: -6%; background: rgba(63, 94, 150, 0.14); animation-delay: 1s; animation-duration: 27s; }
    .bubble-main:nth-child(2) { width: 290px; height: 290px; top: 60%; left: -10%; background: rgba(20, 30, 48, 0.18); animation-delay: 7s; animation-duration: 23s; }
    .bubble-main:nth-child(3) { width: 170px; height: 170px; bottom: 20%; right: 12%; background: rgba(63, 94, 150, 0.2); animation-delay: 10s; animation-duration: 19s; }
    .bubble-main:nth-child(4) { width: 250px; height: 250px; top: 25%; left: 10%; background: rgba(80, 110, 160, 0.16); animation-delay: 4s; animation-duration: 29s; }
    .bubble-main:nth-child(5) { width: 150px; height: 150px; bottom: 40%; left: 20%; background: rgba(40, 60, 100, 0.22); animation-delay: 13s; animation-duration: 21s; }
    .bubble-main:nth-child(6) { width: 360px; height: 360px; bottom: -12%; right: -4%; background: rgba(63, 94, 150, 0.11); animation-delay: 9s; animation-duration: 31s; }

    @keyframes float-light {
      0%, 100% { transform: translateY(0) translateX(0) rotate(0deg) scale(1); }
      25% { transform: translateY(-70px) translateX(60px) rotate(15deg) scale(1.08); }
      50% { transform: translateY(-110px) translateX(-50px) rotate(-12deg) scale(0.94); }
      75% { transform: translateY(-60px) translateX(70px) rotate(10deg) scale(1.05); }
    }

    .content-wrapper {
      max-width: 1600px;
      margin: 0 auto;
      position: relative;
      z-index: 10;
      display: flex;
      gap: 50px;
      align-items: flex-start;
    }

    .main-content {
      flex: 1;
      background: rgba(255, 255, 255, 0.07);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-radius: 20px;
      padding: 50px;
      box-shadow: 0 20px 50px rgba(20, 30, 48, 0.4);
      border: 1px solid rgba(63, 94, 150, 0.25);
    }

    .content-image {
      width: 100%;
      border-radius: 15px;
      margin-bottom: 40px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }

    .content-text {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #94a3b8;
      text-align: left;
    }

    .content-text p {
      margin-bottom: 20px;
    }

    /* SEO Content Section Styles */
    .seo-content-section {
      margin-top: 50px;
      padding-top: 40px;
      border-top: 1px solid rgba(63, 94, 150, 0.3);
    }

    .quote-box {
      background: linear-gradient(135deg, rgba(47, 169, 201, 0.2), rgba(20, 30, 48, 0.4));
      backdrop-filter: blur(10px);
      border: 1px solid rgba(63, 94, 150, 0.3);
      border-radius: 15px;
      padding: 30px;
      margin-bottom: 40px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      position: relative;
    }

    .quote-box::before {
      content: '"';
      position: absolute;
      top: 10px;
      left: 20px;
      font-size: 5rem;
      color: rgba(47, 169, 201, 0.3);
      font-family: serif;
    }

    .quote-text {
      color: #ffffff;
      font-size: 1.3rem;
      font-weight: 500;
      font-style: italic;
      line-height: 1.6;
      margin-bottom: 15px;
      position: relative;
      z-index: 1;
    }

    .quote-author {
      color: #ffffff;
      font-size: 1.1rem;
      font-weight: 600;
      text-align: right;
      margin: 0;
    }

    .seo-heading {
      color: #ffffff;
      font-size: 1.8rem;
      font-weight: 700;
      margin: 40px 0 20px;
      position: relative;
    }

    .seo-heading::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 80px;
      height: 3px;
      background: #2fa9c9;
      border-radius: 2px;
    }

    .seo-text {
      color: #94a3b8;
      font-size: 1.1rem;
      line-height: 1.7;
      margin-bottom: 30px;
    }

    .seo-images {
      display: flex;
      gap: 20px;
      margin: 30px 0;
    }

    .seo-image-container {
      flex: 1;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
      transition: transform 0.4s ease;
    }

    .seo-image-container:hover {
      transform: translateY(-5px);
    }

    .seo-image-container img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
    }

    .seo-points {
      list-style: none;
      padding-left: 0;
      margin-top: 20px;
    }

    .seo-points li {
      color: #94a3b8;
      font-size: 1.1rem;
      line-height: 1.7;
      margin-bottom: 12px;
      padding-left: 30px;
      position: relative;
    }

    .seo-points li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #2fa9c9;
      font-weight: bold;
      font-size: 1.2rem;
    }

    /* SECTION SEPARATOR */
    .section-separator {
      margin: 60px 0;
      position: relative;
      height: 1px;
      background: linear-gradient(
        to right,
        transparent 0%,
        rgba(63, 94, 150, 0.5) 20%,
        rgba(63, 94, 150, 0.8) 50%,
        rgba(63, 94, 150, 0.5) 80%,
        transparent 100%
      );
    }

    /* ========== COMMENT SECTION ========== */
    .comment-section {
      margin-top: 40px;
    }

    .comment-heading {
      color: #2fa9c9;
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .comment-subheading {
      color: #94a3b8;
      font-size: 1.1rem;
      margin-bottom: 40px;
    }

    .comment-form {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(20, 30, 48, 0.3);
      border: 1px solid rgba(63, 94, 150, 0.2);
    }

    .form-group {
      margin-bottom: 25px;
    }

    .form-group label {
      display: block;
      color: #e2e8f0;
      font-size: 1rem;
      font-weight: 500;
      margin-bottom: 8px;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 14px 18px;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(63, 94, 150, 0.3);
      border-radius: 10px;
      color: #e2e8f0;
      font-size: 1rem;
      transition: all 0.3s ease;
      font-family: 'Poppins', sans-serif;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #2fa9c9;
      background: rgba(255, 255, 255, 0.1);
      box-shadow: 0 0 15px rgba(47, 169, 201, 0.3);
    }

    .form-group textarea {
      min-height: 150px;
      resize: vertical;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: #94a3b8;
    }

    .required {
      color: #ff6b6b;
    }

    .checkbox-group {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 30px;
    }

    .checkbox-group input[type="checkbox"] {
      width: 18px;
      height: 18px;
      margin-top: 3px;
      accent-color: #2fa9c9;
    }

    .checkbox-group label {
      color: #94a3b8;
      font-size: 0.95rem;
      line-height: 1.5;
      margin-bottom: 0;
    }

    .submit-btn {
      display: block;
      width: 100%;
      padding: 16px;
      background: rgba(255, 255, 255, 0.1); 
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px); 
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: #fff;
      border: none;
      border-radius: 50px;
      font-weight: 600; 
      font-size: 1.1rem;
      cursor: pointer;
      transition: all 0.4s ease;
      text-align: center;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .submit-btn:hover {
      background: #2fa9c9; 
      color: #000; 
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(47, 169, 201, 0.5); 
      border-color: #2fa9c9;
    }

    /* === SIDEBAR SECTION (Right Side) - STICKY === */
    .sidebar-section {
      flex: 0 0 320px; /* Fixed width for sidebar */
      min-width: 300px;
      position: relative;
      z-index: 10;
      position: sticky;
      top: 140px; /* Adjusted to account for header height */
      align-self: flex-start;
      transition: top 0.3s ease;
      height: calc(100vh - 160px);
      overflow-y: auto;
    }

    /* Custom scrollbar for sidebar */
    .sidebar-section::-webkit-scrollbar {
      width: 6px;
    }

    .sidebar-section::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 3px;
    }

    .sidebar-section::-webkit-scrollbar-thumb {
      background: rgba(47, 169, 201, 0.5);
      border-radius: 3px;
    }

    .sidebar-section::-webkit-scrollbar-thumb:hover {
      background: rgba(47, 169, 201, 0.7);
    }

    /* When header is scrolled, adjust the top position */
    header.scrolled ~ .main-content-section .sidebar-section {
      top: 110px;
    }

    .search-box {
      margin-bottom: 40px;
      position: relative;
    }

    .search-box input {
      width: 100%;
      padding: 12px 45px 12px 15px; /* Reduced padding */
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(63, 94, 150, 0.3);
      border-radius: 10px; /* Slightly smaller radius */
      color: #e2e8f0;
      font-size: 0.95rem; /* Slightly smaller font */
      transition: all 0.3s ease;
      font-family: 'Poppins', sans-serif;
    }

    .search-box input:focus {
      outline: none;
      border-color: #2fa9c9;
      background: rgba(255, 255, 255, 0.1);
      box-shadow: 0 0 15px rgba(47, 169, 201, 0.3);
    }

    .search-box input::placeholder {
      color: #94a3b8;
      font-size: 0.9rem;
    }

    .search-box i {
      position: absolute;
      right: 15px; /* Moved closer to edge */
      top: 50%;
      transform: translateY(-50%);
      color: #94a3b8;
      font-size: 1.1rem; /* Slightly smaller icon */
      transition: color 0.3s ease;
    }

    .search-box input:focus + i {
      color: #2fa9c9;
    }

    .recent-posts-heading {
      color: #2fa9c9;
      font-size: 1.5rem; /* Reduced from 1.8rem */
      font-weight: 700;
      margin-bottom: 20px; /* Reduced margin */
      text-shadow: 0 2px 10px rgba(47, 169, 201, 0.3);
    }

    .recent-posts {
      display: flex;
      flex-direction: column;
      gap: 15px; /* Reduced gap */
    }

    .post-item {
      display: flex;
      align-items: center;
      gap: 12px; /* Reduced gap */
      padding: 12px; /* Reduced padding */
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border-radius: 10px; /* Slightly smaller radius */
      border: 1px solid rgba(63, 94, 150, 0.2);
      transition: all 0.4s ease;
      cursor: pointer;
    }

    .post-item:hover {
      background: rgba(47, 169, 201, 0.1);
      transform: translateY(-3px); /* Reduced lift */
      box-shadow: 0 8px 20px rgba(47, 169, 201, 0.2);
      border-color: rgba(47, 169, 201, 0.4);
    }

    .post-image {
      width: 60px; /* Reduced from 80px */
      height: 60px; /* Reduced from 80px */
      border-radius: 6px; /* Slightly smaller */
      overflow: hidden;
      flex-shrink: 0;
    }

    .post-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .post-item:hover .post-image img {
      transform: scale(1.1);
    }

    .post-content h4 {
      color: #e2e8f0;
      font-size: 0.95rem; /* Reduced font size */
      font-weight: 600;
      margin-bottom: 4px; /* Reduced margin */
      transition: color 0.3s ease;
      line-height: 1.3;
    }

    .post-item:hover .post-content h4 {
      color: #2fa9c9;
    }

    .post-content span {
      color: #94a3b8;
      font-size: 0.8rem; /* Reduced font size */
    }
