 :root {
            /* Deep Blue Glassmorphism Theme */
            --bg-base: #060b14;
            --bg-gradient: radial-gradient(circle at top left, #0d1b2a 0%, #060b14 100%);
            --glass-bg: rgba(13, 27, 42, 0.45);
            --glass-border: rgba(255, 255, 255, 0.08);
            --glass-hover-bg: rgba(28, 65, 115, 0.6);
            --glass-hover-border: rgba(64, 142, 234, 0.4);
            --glass-hover-glow: rgba(28, 65, 115, 0.8);
            --glass-active-bg: rgba(33, 80, 145, 0.7);
            
            --text-main: #e0e6ed;
            --text-muted: #8c9baf;
            --transition-speed: 0.3s;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }

        body {
            background: var(--bg-base);
            background-image: var(--bg-gradient);
            color: var(--text-main);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Added padding wrapper to keep the footer flush with the bottom */
        .page-wrapper {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 2rem 2rem 0 2rem;
            flex: 1; 
        }

        header {
            margin-bottom: 3rem;
            text-align: center;
        }

        header h1 {
            font-size: 2.5rem;
            font-weight: 600;
            letter-spacing: 1px;
            color: #ffffff;
        }

        /* 4 Selectable Areas - Grid Layout */
        .selection-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            width: 100%;
            max-width: 1200px;
            margin-bottom: 3rem;
        }

        @media (max-width: 900px) {
            .selection-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 500px) {
            .selection-grid {
                grid-template-columns: 1fr;
            }
        }

        .glass-btn {
            background: var(--glass-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 2rem 1.5rem;
            color: var(--text-main);
            font-size: 1.25rem;
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition-speed) ease;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
            text-align: center;
            
            /* NEW: Required to contain the pseudo-element animations */
            position: relative;
            overflow: hidden;
            z-index: 1; 
        }

        /* NEW: The Gradient Fader Background */
        .glass-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* Subtle blue gradient fading to transparent */
            background: linear-gradient(135deg, rgba(64, 142, 234, 0.25) 0%, rgba(28, 65, 115, 0) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1; /* Keeps it behind the text */
        }

        /* NEW: The Vertical Bar */
        .glass-btn::before {
            content: '';
            position: absolute;
            top: 15%;
            left: 0;
            width: 4px; /* Thickness of the bar */
            height: 70%; /* Leaves a nice gap at top and bottom */
            background: #408eea; /* Bright highlight blue */
            border-radius: 0 4px 4px 0;
            
            /* Start shrunk down to nothing */
            transform: scaleY(0);
            transform-origin: center;
            
            /* Custom cubic-bezier for a slight "snap" or "bounce" effect */
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
            z-index: 2;
        }

        /* Base Hover state (Elevates and glows) */
        .glass-btn:hover {
            background: var(--glass-hover-bg);
            border-color: var(--glass-hover-border);
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4), 
                        0 0 20px var(--glass-hover-glow);
            transform: translateY(-5px);
        }

        /* Trigger Gradient Fader on Hover */
        .glass-btn:hover::after {
            opacity: 1;
        }

        /* Trigger Vertical Bar growth on Hover */
        .glass-btn:hover::before {
            transform: scaleY(1);
        }

        /* Base Active State (When clicked/selected) */
        .glass-btn.active {
            background: var(--glass-active-bg);
            border-color: var(--glass-hover-border);
            box-shadow: 0 0 25px var(--glass-hover-glow);
        }

        /* Keep Gradient Fader visible when Active */
        .glass-btn.active::after {
            opacity: 1;
            /* Slightly more intense gradient for the active state */
            background: linear-gradient(135deg, rgba(64, 142, 234, 0.35) 0%, rgba(28, 65, 115, 0.05) 100%);
        }

        /* Keep Vertical Bar visible and change color when Active */
        .glass-btn.active::before {
            transform: scaleY(1);
            background: #ffffff; /* Pops stark white when fully selected */
        }

        /* Content Areas */
        .content-container {
            width: 100%;
            max-width: 1200px;
            position: relative;
            min-height: 250px;
        }

        .content-panel {
            background: var(--glass-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 3rem;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s ease-out;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
        }

        .content-panel.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            position: relative;
        }

        .content-panel h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .content-panel p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(--text-muted);
        }

        /* --- NEW: Video Section --- */
        .video-section {
            width: 100%;
            max-width: 1200px;
            margin: 4rem 0;
        }

        .video-container {
            background: var(--glass-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 1rem; /* Acts as a glass frame around the video */
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
        }

        .video-container video {
            width: 100%;
            border-radius: 8px; /* Slightly smaller radius than container */
            display: block;
            object-fit: cover;
            background: #000; /* Fallback while loading */
        }

        /* --- NEW: Glass Footer --- */
        .glass-footer {
            width: 100%;
            background: rgba(6, 11, 20, 0.7); /* Darker base for footer */
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-top: 1px solid var(--glass-border);
            padding: 4rem 2rem 2rem;
            text-align: center;
            margin-top: auto; /* Pushes footer to the bottom */
        }

        .footer-content {
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        .footer-content h3 {
            font-size: 2rem;
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .footer-content p {
            color: var(--text-muted);
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
        }

        /* Reuse the glass button style for the link, but make it inline */
        .footer-link {
            display: inline-block;
            text-decoration: none;
            padding: 1.2rem 2.5rem;
        }

        .footer-bottom {
            color: var(--text-muted);
            font-size: 0.9rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 2rem;
        }
    
	/* --- NEW: Announcement Section --- */
        .announcement-section {
            width: 100%;
            max-width: 1200px;
            margin: 3rem 0 1rem 0;
            position: relative;
        }

        .announcement-banner {
            background: rgba(13, 27, 42, 0.6);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(64, 142, 234, 0.3); /* Brighter blue border for visibility */
            border-radius: 16px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4), 
                        inset 0 0 20px rgba(64, 142, 234, 0.1);
            position: relative;
            overflow: hidden;
        }

        /* Subtle glowing accent line at the top of the announcement */
        .announcement-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 5%;
            width: 90%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #408eea, #ffffff, #408eea, transparent);
        }

        .announcement-tag {
            display: inline-block;
            background: rgba(64, 142, 234, 0.2);
            border: 1px solid rgba(64, 142, 234, 0.5);
            color: #408eea;
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1.5rem;
        }

        .announcement-banner h2 {
            font-size: 2.2rem;
            color: #ffffff;
            margin-bottom: 1rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .announcement-banner p {
            font-size: 1.25rem;
            color: var(--text-main);
            line-height: 1.5;
            max-width: 800px;
            margin: 0 auto;
        }

        .announcement-highlight {
            color: #ffffff;
            font-weight: 600;
            text-shadow: 0 0 10px rgba(64, 142, 234, 0.5);
        }

        @media (max-width: 768px) {
            .announcement-banner h2 {
                font-size: 1.8rem;
            }
            .announcement-banner p {
                font-size: 1.1rem;
            }

            .content-panel {
                padding: 5px;   
            }
        }

        @media (max-width: 767px) {
        /* Reset outer section constraints */
        .hero-layout {
            display: block;
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 1rem; /* Adjust edge padding if needed */
            margin: 0 !important;
            box-sizing: border-box;
        }

        /* Make top text block span full width */
        .hero-content {
            width: 100% !important;
            max-width: 100% !important;
            margin: 0 !important;
            padding: 0 !important;
            text-align: left; /* Ensures text aligns left rather than centering */
        }

        .hero-content h1,
        .hero-content p {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box;
        }

        /* Full-width visual container below text */
        .hero-visual,
        .gradient-border-wrapper,
        .visual-inner {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box;
        }

        .visual-inner img {
            width: 100%;
            max-width: 100%;
            height: auto;
            display: block;
            padding: 1rem 0; /* Keep top/bottom spacing around logo */
            box-sizing: border-box;
        }

        /* Buttons section */
        .hero-actions {
            display: flex;
            flex-direction: column;
            width: 100%;
            gap: 0.75rem;
            margin-top: 1.5rem;
            margin-bottom: 2rem;
        }

        .hero-actions .btn {
            width: 100%;
            box-sizing: border-box;
            text-align: center;
        }

        @media (max-width: 767px) {
  /* Stack card components vertically */
  .blog-card-main {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 5px;
  }

  /* Allow content to take full width */
  .blog-card-content {
    width: 100%;
  }

  /* Move action wrapper below text and align right (or change to flex-end) */
  .blog-card-action {
    width: 100%;
    display: flex;
    justify-content: flex-end; /* Right aligns the button at the bottom */
    margin-top: 0.5rem;
  }

  /* Style button into a clean glass/pill CTA with smooth arrow rotation */
  .expand-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-purple, #8b5cf6);
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .expand-btn:active {
    background: rgba(139, 92, 246, 0.25);
    transform: scale(0.98);
  }

  /* Animate arrow when expanded state toggles */
  .expand-btn .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
  }

  .expand-btn[aria-expanded="true"] .arrow {
    transform: rotate(180deg);
  }
}

.blog-card-main {
    padding:5px;
}
        }

    

/* Content Panel Detail Cards */
.panel-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.detail-card {
    background: rgba(6, 11, 20, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: border-color var(--transition-speed) ease;
}

.detail-card:hover {
    border-color: rgba(64, 142, 234, 0.3);
}

.detail-card h3 {
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.detail-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.panel-note {
    margin-top: 1.5rem;
    font-style: italic;
    color: #408eea;
}

@media (max-width: 850px) {
    .panel-details {
        grid-template-columns: 1fr;
    }
}

/* Hosting & Image Side-by-Side Layout */
.hosting-feature-layout {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.hosting-options {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.tier-card {
    background: rgba(6, 11, 20, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    transition: all var(--transition-speed) ease;
}

.tier-card.highlighted {
    border-color: rgba(64, 142, 234, 0.4);
    box-shadow: 0 4px 20px rgba(64, 142, 234, 0.1);
}

.tier-card:hover {
    border-color: var(--glass-hover-border);
    transform: translateY(-2px);
}

.tier-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.4rem;
}

.tier-header h3 {
    font-size: 1.1rem;
    color: #ffffff;
}

.tier-badge {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid var(--glass-border);
}

.tier-badge.active {
    background: rgba(64, 142, 234, 0.2);
    color: #408eea;
    border-color: rgba(64, 142, 234, 0.4);
}

.tier-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.tier-pricing {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.tier-pricing li {
    color: var(--text-muted);
}

.tier-pricing li strong {
    color: #ffffff;
    margin-left: 0.25rem;
}

/* Image Wrapper */
.hosting-media {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.brand-showcase-img {
    max-width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(64, 142, 234, 0.25));
}

/* Mobile Responsiveness */
@media (max-width: 800px) {
    .hosting-feature-layout {
        flex-direction: column-reverse;
    }
    
    .hosting-options, 
    .hosting-media {
        width: 100%;
    }
    
    .tier-pricing {
        flex-wrap: wrap;
        gap: 0.75rem 1.25rem;
    }
}

/* Portfolio Section */
.portfolio-section {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.section-subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

/* 2-column wide layout for desktop */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.portfolio-card {
    background: rgba(6, 11, 20, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all var(--transition-speed) ease;
}

.portfolio-card:hover {
    border-color: var(--glass-hover-border);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.portfolio-header h4 {
    font-size: 1.15rem;
    color: #ffffff;
}

.portfolio-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid var(--glass-border);
}

.portfolio-tag.active {
    background: rgba(64, 142, 234, 0.2);
    color: #408eea;
    border-color: rgba(64, 142, 234, 0.4);
}

.portfolio-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-muted);
}

/* Mobile Responsiveness: Stacks to 1-column */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}