
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px;
  z-index: 100;
  text-decoration: none;
  border-radius: 4px;
}
.skip-link:focus {
  top: 0;
}


        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            padding: 20px 0;
            position: relative;
            z-index: 100;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 15px 30px;
            border-radius: 50px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-image {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            padding: 5px;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: white;
            text-decoration: none;
        }

        /* Desktop Navigation */
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
            align-items: center;
        }

        .nav-links > li {
            position: relative;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: all 0.3s ease;
            padding: 8px 12px;
            border-radius: 20px;
            display: block;
        }

        .nav-links > li > a:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        /* Dropdown Menu */
        .dropdown {
            position: relative;
        }

        .dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 5px;
            cursor: pointer;
        }

        .dropdown-toggle::after {
            content: '▼';
            font-size: 10px;
            transition: transform 0.3s ease;
        }

        .dropdown:hover .dropdown-toggle::after {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 10px 0;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            margin-top: 10px;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li {
            list-style: none;
        }

        .dropdown-menu a {
            color: #667eea;
            padding: 10px 20px;
            display: block;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .dropdown-menu a:hover {
            background: rgba(102, 126, 234, 0.1);
            color: #764ba2;
            padding-left: 25px;
        }

        .blog-link {
            color: white !important;
            font-weight: 600;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: white;
            font-size: 24px;
            padding: 8px 15px;
            border-radius: 10px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .mobile-menu-toggle:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        /* Sidebar for Mobile */
        .tools-sidebar {
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 100vh;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
            padding: 30px 20px;
            transition: right 0.35s ease-in-out;
            z-index: 9999;
            box-shadow: -4px 0 15px rgba(0, 0, 0, 0.3);
            overflow-y: auto;
        }

        .tools-sidebar.active {
            right: 0;
        }

        .tools-sidebar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .tools-sidebar h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: #ffffff;
        }

        .close-sidebar {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            font-size: 28px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: unset !important;
        }

        .close-sidebar:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }

        .sidebar-section {
            margin-bottom: 25px;
        }

        .sidebar-section h4 {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        }

        .tools-sidebar ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .tools-sidebar ul li {
            margin-bottom: 8px;
        }

        .tools-sidebar ul li a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            display: block;
            padding: 10px 12px;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 25px;
        }

        .tools-sidebar ul li a::before {
            content: "→";
            position: absolute;
            left: 8px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .tools-sidebar ul li a:hover {
            background: rgba(255, 255, 255, 0.15);
            padding-left: 30px;
        }

        .tools-sidebar ul li a:hover::before {
            opacity: 1;
        }

        /* Overlay */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Demo Content */
        .demo-content {
            text-align: center;
            color: white;
            padding: 100px 20px;
        }

        .demo-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .demo-content p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* Mobile Responsive */
        @media (max-width: 968px) {
            nav {
                padding: 15px 20px;
            }

            .nav-links {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .logo {
                font-size: 20px;
            }

            .logo-image {
                width: 45px;
                height: 45px;
            }

            .tools-sidebar {
                width: 280px;
            }

            .demo-content h1 {
                font-size: 2rem;
            }

            .demo-content p {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .header-container {
                padding: 0 10px;
            }

            nav {
                padding: 12px 15px;
            }

            .logo {
                font-size: 18px;
            }

            .logo-image {
                width: 40px;
                height: 40px;
            }

            .tools-sidebar {
                width: 260px;
            }
        }


    
    
    
        * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        min-height: 100vh;
        overflow-x: hidden;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Fix for sidebar on homepage */
    body.home #secondary {
        display: none !important;
    }
    
    body.home #primary {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Hero Section */
    .hero {
        text-align: center;
        /*padding: 80px 0 120px;*/
        position: relative;
        padding: 20px 20px 33px 20px;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        
        opacity: 0.3;
        animation: float 20s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
    }

    .hero-content {
        position: relative;
        z-index: 2;
    }

    .hero h1 {
        /*font-size: clamp(3rem, 8vw, 5rem);*/
        color: white;
        margin-bottom: 20px;
        font-weight: 800;
        background: linear-gradient(45deg, #fff, #f0f0f0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: glow 2s ease-in-out infinite alternate;
    }

    @keyframes glow {
        from { filter: drop-shadow(0 0 20px rgba(255,255,255,0.3)); }
        to { filter: drop-shadow(0 0 30px rgba(255,255,255,0.5)); }
    }

    .hero p {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 40px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.8;
    }

    .cta-button {
        display: inline-block;
        background: linear-gradient(45deg, #ff6b6b, #ee5a24);
        color: white;
        padding: 18px 40px;
        border: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(238, 90, 36, 0.3);
        position: relative;
        overflow: hidden;
    }

    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
    }

    .cta-button:hover::before {
        left: 100%;
    }

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(238, 90, 36, 0.4);
    }

    /* Tools Section */
    .tools-section {
        padding: 40px 0;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
    }

    .section-title {
        text-align: center;
        font-size: 2.5rem;
        color: white;
        /*margin-bottom: 60px;*/
        font-weight: 700;
    }

    .tools-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 30px;
        margin-bottom: 60px;
    }

    .tool-card {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        padding: 40px 20px;
        text-align: center;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        position: relative;
        overflow: hidden;
    }

    .tool-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
        background-size: 300% 300%;
        animation: gradient 3s ease infinite;
    }

    @keyframes gradient {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    .tool-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        background: rgba(255, 255, 255, 0.15);
    }

    .tool-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        background: linear-gradient(45deg, #4ecdc4, #44a08d);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }

    .tool-card h3 {
        color: white;
        font-size: 1.5rem;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .tool-card p {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .tool-status {
        display: inline-block;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 500;
    }

    .available {
        background: rgba(76, 175, 80, 0.6);
        color: white;
        border: 1px solid rgba(76, 175, 80, 0.3);
        width: 25%;
    }

    .coming-soon {
        background: rgba(255, 193, 7, 0.2);
        color: #FFC107;
        border: 1px solid rgba(255, 193, 7, 0.3);
    }

    /* Features Section */
    .features-section {
        padding: 80px 0;
    }

    .features-grid {
        color: white;
    }

    .features-grid p {
        font-size: 1.1rem;
        line-height: 1.9;
        margin-bottom: 25px;
        color: rgba(255, 255, 255, 0.9);
    }

    .feature {
        text-align: center;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 20px;
        background: linear-gradient(45deg, #667eea, #764ba2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
    }

    .feature h3 {
        color: white;
        margin-bottom: 15px;
        font-size: 1.3rem;
    }

    .feature p {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
    }

    

    /* Responsive */
    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }
        
        .tools-grid {
            grid-template-columns: 1fr;
        }
        
        .footer-links {
            flex-direction: column;
            gap: 15px;
        }
    }

    /* Floating particles effect */
    .particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        pointer-events: none;
    }

    .particle {
        position: absolute;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        animation: float-particles infinite linear;
    }

    @keyframes float-particles {
        0% {
            transform: translateY(100vh) rotate(0deg);
            opacity: 0;
        }
        10% {
            opacity: 1;
        }
        90% {
            opacity: 1;
        }
        100% {
            transform: translateY(-100px) rotate(360deg);
            opacity: 0;
        }
    }

    /* Example variations */
    .particle:nth-child(1) {
        width: 5px; height: 5px; left: 10%; 
        animation-duration: 12s; animation-delay: 0s;
    }
    .particle:nth-child(2) {
        width: 8px; height: 8px; left: 30%; 
        animation-duration: 18s; animation-delay: 2s;
    }
    .particle:nth-child(3) {
        width: 6px; height: 6px; left: 50%; 
        animation-duration: 20s; animation-delay: 4s;
    }
    .particle:nth-child(4) {
        width: 4px; height: 4px; left: 70%; 
        animation-duration: 15s; animation-delay: 1s;
    }
    .particle:nth-child(5) {
        width: 10px; height: 10px; left: 90%; 
        animation-duration: 25s; animation-delay: 3s;
    }
    
    
    .sdt-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.sdt-tool-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: all .25s ease;
}

.sdt-tool-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.15);
}

.sdt-tool-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.sdt-tool-name {
    font-size: 14px;
    font-weight: 600;
}

    
    


css/* Footer */
/* Footer */
main { flex: 1 }
footer {
    background: rgba(0, 0, 0, 0.2);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 18px;
}
.footer-links a:hover {
    color: white;
}

/* Footer Tools Section */
.footer-tools {
    margin: 40px 0 30px;
}
.footer-tools h3 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 40px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}
.tools-grid a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease, transform 0.2s ease;
}
.tools-grid a:hover {
    color: white;
    transform: translateX(5px);
}


/* ── WHY STACKDEVTOOLS – scoped styles ── */
.sdt-why-section {
    padding: 80px 0;
}

.sdt-why-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sdt-why-heading {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
    margin-bottom: 50px;
}

.sdt-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.sdt-why-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.sdt-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 300% 300%;
    animation: sdt-gradient 3s ease infinite;
}

@keyframes sdt-gradient {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.sdt-why-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.sdt-why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    animation: sdt-pulse 2s infinite;
}

@keyframes sdt-pulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.sdt-why-card-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.sdt-why-card-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* ═══════════════════════════════════════════
   BLOG PREVIEW – scoped styles
═══════════════════════════════════════════ */
.sdt-blog-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.03);
}

.sdt-blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sdt-blog-heading {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
    margin-bottom: 50px;
}

.sdt-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.sdt-blog-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    position: relative;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.sdt-blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 300% 300%;
    animation: sdt-gradient 3s ease infinite;
    z-index: 1;
}

.sdt-blog-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.sdt-blog-thumb {
    width: 100%;
    height: 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sdt-blog-thumb-placeholder {
    font-size: 3rem;
    opacity: 0.4;
}

.sdt-blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sdt-blog-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    display: block;
}

.sdt-blog-title {
    color: white;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.sdt-blog-excerpt {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 20px;
    flex: 1;
}

.sdt-blog-read-more {
    color: #4ecdc4;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: letter-spacing 0.2s ease;
}

.sdt-blog-card:hover .sdt-blog-read-more {
    letter-spacing: 0.06em;
}

/* Skeleton loader */
.sdt-skeleton-card {
    pointer-events: none;
}

.sdt-skeleton {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    animation: sdt-shimmer 1.5s infinite;
}

.sdt-skeleton-thumb {
    width: 100%;
    height: 200px;
    border-radius: 0;
}

.sdt-skeleton-line {
    height: 14px;
    margin-bottom: 10px;
    width: 100%;
}

.sdt-skeleton-short { width: 45%; }
.sdt-skeleton-mid   { width: 75%; }

@keyframes sdt-shimmer {
    0%   { opacity: 0.5; }
    50%  { opacity: 1; }
    100% { opacity: 0.5; }
}

/* ═══════════════════════════════════════════
   BOTTOM CTA – scoped styles
═══════════════════════════════════════════ */
.sdt-cta-section {
    padding: 80px 0 100px;
}

.sdt-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sdt-cta-box {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 28px;
    padding: 70px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.sdt-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
    background-size: 300% 300%;
    animation: sdt-gradient 3s ease infinite;
}

/* Subtle animated glow orb behind the content */
.sdt-cta-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78,205,196,0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: sdt-cta-pulse 4s ease-in-out infinite;
}

@keyframes sdt-cta-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1);   opacity: 0.8; }
    50%       { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.sdt-cta-heading {
    position: relative;
    font-size: 2.8rem;
    color: white;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sdt-cta-text {
    position: relative;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.sdt-cta-button {
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(238, 90, 36, 0.3);
    overflow: hidden;
}

.sdt-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.sdt-cta-button:hover::before {
    left: 100%;
}

.sdt-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(238, 90, 36, 0.45);
}

.sdt-blog-view-all {
    display: inline-block;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    transition: color 0.2s ease;
}

.sdt-blog-view-all:hover {
    color: #ffffff;
}

.sdt-blog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sdt-blog-view-all {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.sdt-blog-view-all:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .sdt-blog-heading,
    .sdt-cta-heading {
        font-size: 1.8rem;
    }

    .sdt-blog-grid {
        grid-template-columns: 1fr;
    }

    .sdt-cta-box {
        padding: 50px 24px;
    }

    .sdt-cta-text {
        font-size: 1rem;
    }



    .sdt-why-heading {
        font-size: 1.8rem;
    }

    .sdt-why-grid {
        grid-template-columns: 1fr;
    }



    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-tools h3 {
        font-size: 26px;
    }
    
    .tools-grid a {
        font-size: 15px;
    }
    
    .hero p {
        font-size: 12px;
        margin-bottom: 20px;

    }
}
    

