        :root {
            --primary: #11568e;
            --primary-dark: #0a355f;
            --accent: #f9a14a;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --bg-light: #f8fafc;
            --white: #ffffff;
            --border: #e2e8f0;
            --cta-bg: #0b1120;
            --danger: #5f1616bb;
        }
        body {
            padding-top: 76px;
            font-family: 'Poppins', sans-serif;
            background-color: var(--white);
            color: var(--text-dark);
            overflow-x: hidden;
        }
p{
    font: 1rem;
}
        .navbar-custom {
            border-bottom: 2px solid var(--border);
            background-color: var(--white);
            z-index: 1050;
        }

        .navbar-brand img {
            height: 44px;
            width: auto;
        }

        .nav-link {
            color: #475569 !important;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 12px 16px !important;
            transition: color 0.2s;
            position: relative;
            text-decoration: none !important;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .nav-link:hover,
        .nav-link.active,
        .nav-link[aria-expanded="true"] {
            color: var(--primary) !important;
        }

        .dropdown-toggle::after {
            display: inline-block !important;
            content: '\f107' !important;
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 0.9em;
            margin-left: 10px;
            border: none !important;
            transition: transform 0.3s ease;
        }

        .dropdown-toggle::before {
            display: none !important;
            content: none !important;
        }

        .dropdown-toggle.show::after {
            transform: rotate(180deg);
            color: var(--accent);
        }

        @media (min-width: 992px) {
            .dropdown:hover .dropdown-menu {
                display: block;
                margin-top: 0;
                animation: fadeInUp 0.2s ease;
            }

            .megamenu {
                width: 900px;
                left: 50%;
                transform: translateX(-50%);
                position: absolute;
                top: 100%;
                border: none;
                border-radius: 12px;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
                padding: 24px;
                background: white;
            }

            .dropdown-menu.small-dropdown {
                width: 280px;
                right: 0;
                left: auto;
                border: none;
                border-radius: 12px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                padding: 15px;
            }
        }

        @media (max-width: 991px) {
            .navbar-collapse {
                background: white;
                max-height: 80vh;
                overflow-y: auto;
                border-top: 1px solid var(--border);
                padding: 15px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }

            .nav-item {
                border-bottom: 1px solid #f1f5f9;
            }

            .megamenu,
            .dropdown-menu {
                position: static !important;
                width: 100% !important;
                float: none !important;
                transform: none !important;
                box-shadow: none !important;
                border: none !important;
                background: #f8fafc;
                margin-top: 5px;
                padding: 10px 15px;
                display: none;
            }

            .dropdown-menu.show {
                display: block !important;
            }
        }

        .category-header {
            font-size: 0.75rem;
            font-weight: 800;
            text-transform: uppercase;
            color: #94a3b8;
            letter-spacing: 0.8px;
            margin: 15px 0 8px 10px;
        }

        .megamenu-link {
            display: flex;
            align-items: center;
            padding: 12px 14px;
            color: var(--text-dark);
            text-decoration: none !important;
            font-weight: 500;
            border-radius: 8px;
            transition: all 0.2s;
            font-size: 0.95rem;
            border-bottom: 1px solid #eee;
        }

        @media(min-width: 992px) {
            .megamenu-link {
                border-bottom: none;
            }
        }

        .megamenu-link:hover {
            background: #eff6ff;
            color: var(--primary);
            transform: translateX(5px);
        }

        .megamenu-link i {
            width: 24px;
            text-align: center;
            margin-right: 12px;
            color: var(--primary);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translate(-50%, 10px);
            }

            to {
                opacity: 1;
                transform: translate(-50%, 0);
            }
        }

        @keyframes moveBackground {
            0% {
                background-position: 0 0;
            }

            100% {
                background-position: 40px 40px;
            }
        }

        .hero-section {
            background: white;
            padding: 60px 20px;
            text-align: center;
            border-bottom: 1px solid #e2e8f0;
            position: relative;
            overflow: hidden;
            background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
            background-size: 30px 30px;
            animation: moveBackground 20s linear infinite;
        }

        .hero-badge {
            background: #fff;
            color: #11568e;
            padding: 8px 24px;
            border-radius: 50px;
            border: 2px solid #f9a14a;
            font-size: 0.85rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
            margin-bottom: 25px;
            box-shadow: 0 5px 15px rgba(17, 86, 142, 0.2);
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 20px;
            letter-spacing: -1.5px;
            background: linear-gradient(-45deg, #f9a14a, #11568e, #3f81b2);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShine 4s ease infinite;
            line-height: 1.2;
        }

        @keyframes gradientShine {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        .hero-text {
            font-size: 1.25rem;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.7;
            font-weight: 500;
        }

        .btn-hero {
            padding: 16px 50px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.15rem;
            background: #11568e;
            color: white;
            border: none;
            box-shadow: 0 10px 30px rgba(17, 86, 142, 0.4);
            transition: all 0.3s ease;
        }

        .btn-hero:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(17, 86, 142, 0.5);
            color: #64748b;
        }

        .hero-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 120px;
            background: linear-gradient(to top, #ffffff, transparent);
            pointer-events: none;
        }

        .section-padding {
            padding: 90px 0;
        }

        .bg-grey {
            background-color: #f8fafc;
        }
        #popular-tools h3{
        font-size: 1rem;
        color: var(--text-dark);
        font-weight: 600;
        }
        .section-title {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 15px;
            text-align: center;
        }

        .section-desc {
            text-align: center;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto 60px;
            font-size: 1.1rem;
        }

        .tool-card {
            background: white;
            border: 1px solid #f1f5f9;
            border-radius: 12px;
            padding: 25px;
            text-decoration: none;
            display: block;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        }

        .tool-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            border-color: transparent;
        }

        .icon-box {
            width: 45px;
            height: 45px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .theme-blue {
            background: #eff6ff;
            color: var(--primary);
        }

        .theme-orange {
            background: #fff7ed;
            color: #f97316;
        }

        .theme-green {
            background: #f0fdf4;
            color: #16a34a;
        }

        .theme-red {
            background: #fef2f2;
            color: #ef4444;
        }

        .theme-dark {
            background: #f1f5f9;
            color: #334155;
        }

        .stats-wrapper {
            background: white;
            padding: 40px 0 60px;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 1rem;
            color: #64748b;
            margin-top: 12px;
        }.stat-label p {
            margin-top: 12px;
        }

        .why-box {
            margin-bottom: 30px;
            display: flex;
            align-items: flex-start;
        }

        .why-icon {
            width: 50px;
            height: 50px;
            background: #eff6ff;
            color: var(--primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .process-wrapper {
            position: relative;
            z-index: 1;
        }

        .step-card {
            position: relative;
            padding: 30px 20px;
            background: #fff;
            border-radius: 20px;
            border: 1px solid #f1f5f9;
            transition: all 0.4s ease;
            height: 100%;
            z-index: 2;
        }

        .step-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(17, 86, 142, 0.1);
            border-color: var(--primary);
        }

        .step-icon-box {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            background: #f8fafc;
            color: var(--primary);
            position: relative;
            transition: all 0.4s ease;
            border: 2px dashed var(--border);
        }

        .step-card:hover .step-icon-box {
            background: var(--primary);
            color: #fff;
            border-color: transparent;
            animation: pulse-blue 1.5s infinite;
        }

        .step-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            width: 30px;
            height: 30px;
            background: var(--accent);
            color: #fff;
            border-radius: 50%;
            font-size: 0.9rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #fff;
        }

        @media (min-width: 992px) {
            .step-col:not(:last-child) .step-card::after {
                content: '';
                position: absolute;
                top: 70px;
                right: -50%;
                width: 50%;
                height: 3px;
                background-image: linear-gradient(to right, #e2e8f0 50%, transparent 50%);
                background-size: 10px 100%;
                z-index: 1;
            }
        }

        @keyframes pulse-blue {
            0% {
                box-shadow: 0 0 0 0 rgba(17, 86, 142, 0.4);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(17, 86, 142, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(17, 86, 142, 0);
            }
        }

        @keyframes float-icon {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-5px);
            }
        }

        .step-icon-box i {
            animation: float-icon 3s ease-in-out infinite;
        }

        .cta-section {
            background-color: var(--cta-bg);
            background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 30px 30px;
            padding: 100px 20px;
            text-align: center;
            color: white;
        }

        .btn-cta {
            background: white;
            color: var(--primary);
            padding: 16px 45px;
            font-weight: 700;
            border-radius: 50px;
            text-decoration: none;
            transition: 0.3s;
            display: inline-block;
        }

        .btn-cta:hover {
            transform: scale(1.05);
            color: #0a355f;
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
        }

        .article-card {
            border: none;
            border-radius: 16px;
            overflow: hidden;
            background: white;
            height: 100%;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            transition: 0.3s;
        }

        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .article-img {
            height: 180px;
            background: #f1f5f9;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #cbd5e1;
        }

        .article-body {
            padding: 25px;
        }

        .read-more {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 15px;
        }

        .accordion-item {
            border: 1px solid #e2e8f0;
            margin-bottom: 12px;
            border-radius: 8px !important;
            overflow: hidden;
        }

        .accordion-button {
            font-weight: 600;
            padding: 18px 24px;
            background: white;
            color: var(--text-dark);
            box-shadow: none !important;
        }

        .accordion-button:not(.collapsed) {
            background: #f8fafc;
            color: var(--primary);
        }

        footer {
            background: var(--cta-bg);
            color: #94a3b8;
            padding-top: 80px;
            font-size: 0.9rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-brand {
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            text-decoration: none;
            display: block;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: 0.2s;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }

        .social-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            margin-right: 10px;
            transition: 0.3s;
            text-decoration: none;
        }

        .social-btn:hover {
            background: var(--accent);
            color: white;
            transform: translateY(-3px);
        }

        .footer-bottom {
            background: #020617;
            padding: 25px 0;
            margin-top: 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-section {
                padding: 60px 20px;
            }

            .btn-hero {
                width: 100%;
            }
        }

        .article-section {
            background: white;
            padding: 80px 0;
            border-top: 1px solid #e2e8f0;
            margin-top: 60px;
        }

        .content-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .article-title {
            font-size: 1.7rem;
            font-weight: 800;
            color: var(--brand-blue);
            margin-bottom: 35px;
            line-height: 1.2;
        }

        .article-p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-muted);
            margin-bottom: 25px;
            text-align: justify;
        }

        .sub-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--brand-teal);
            margin-top: 50px;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .info-box {
            background: #f0f9ff;
            border-left: 5px solid var(--brand-teal);
            padding: 30px;
            border-radius: 8px;
            margin: 40px 0;
        }

        .content-list {
            padding-left: 20px;
            margin-bottom: 25px;
        }

        .content-list li {
            margin-bottom: 12px;
            color: var(--text-muted);
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .content-list li strong {
            color: var(--brand-blue);
            font-weight: 600;
        }

        @keyframes moveDottedBackground {
            0% {
                background-position: 0 0;
            }

            100% {
                background-position: 30px 30px;
            }
        }

        .ssl-hero {
            background-color: var(---text-light);
            background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
            background-size: 20px 20px;
            animation: moveDottedBackground 30s linear infinite;
            padding: 40px 0px 20px;
            text-align: center;
            border-bottom: 1px solid var(--border);
        }

        .ssl-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 15px;
            letter-spacing: -1px;
        }

        .ssl-hero p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }

        .search-box-wrapper {
            max-width: 650px;
            margin: 0 auto;
            background: var(--white);
            border: 2px solid var(--border);
            border-radius: 50px;
            padding: 5px;
            display: flex;
            align-items: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: 0.3s;
        }

        .search-box-wrapper:focus-within {
            border-color: var(--primary);
            box-shadow: 0 0 0 5px rgba(16, 76, 133, 0.1);
        }

        .ssl-input {
            border: none;
            background: transparent;
            outline: none;
            flex-grow: 1;
            padding: 15px 25px;
            font-size: 1.1rem;
            color: var(--text-dark);
            width: 100%;
        }

        .btn-check-ssl {
            background: var(--primary);
            color: var(--white);
            border: none;
            padding: 12px 35px;
            border-radius: 40px;
            font-weight: 700;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
            white-space: nowrap;
        }

        .btn-check-ssl:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        .tool-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 20px 20px;
        }

        .result-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
            margin-bottom: 60px;
            animation: fadeIn 0.6s ease-out;
        }

        .res-header {
            padding: 40px 30px;
            text-align: center;
            color: var(--white);
        }

        .bg-success-head {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        }

        .bg-warning-head {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
        }

        .bg-danger-head {
            background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
        }

        .lock-icon-wrap {
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            backdrop-filter: blur(5px);
        }

        .domain-title {
            font-size: 1.8rem;
            font-weight: 800;
            word-break: break-all;
            margin-bottom: 10px;
        }

        .status-badge {
            background: rgba(255, 255, 255, 0.9);
            color: var(--text-dark);
            padding: 6px 18px;
            border-radius: 30px;
            font-weight: 800;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
        }

        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1px;
            background: var(--border);
            border-top: 1px solid var(--border);
        }

        .info-item {
            background: var(--white);
            padding: 25px;
            display: flex;
            align-items: flex-start;
            gap: 15px;
            transition: 0.2s;
        }

        .info-item:hover {
            background: var(--bg-light);
        }

        .i-icon {
            width: 45px;
            height: 45px;
            border-radius: 10px;
            background: #eff6ff;
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .i-lbl {
            font-size: 0.75rem;
            text-transform: uppercase;
            color: var(--text-light);
            font-weight: 700;
            display: block;
            margin-bottom: 5px;
        }

        .i-val {
            font-size: 1rem;
            color: var(--text-dark);
            font-weight: 600;
            word-break: break-word;
        }

        .days-badge {
            font-size: 2.2rem;
            font-weight: 800;
            line-height: 1;
        }

        .progress-track {
            height: 8px;
            background: var(--border);
            border-radius: 10px;
            overflow: hidden;
            margin-top: 12px;
        }

        .progress-fill {
            height: 100%;
            border-radius: 10px;
            transition: width 1.5s ease-out;
            width: 0;
        }

        .process-wrapper {
            position: relative;
            z-index: 1;
            padding: 80px 0;
            background: #f8fafc;
        }

        .step-card {
            position: relative;
            padding: 30px 20px;
            background: #fff;
            border-radius: 16px;
            border: 1px solid #f1f5f9;
            transition: all 0.4s ease;
            height: 100%;
            z-index: 2;
        }

        .step-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(17, 86, 142, 0.1);
            border-color: var(--primary);
        }

        .step-icon-box {
            width: 65px;
            height: 65px;
            margin: 0 auto 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            background: #f8fafc;
            color: var(--primary);
            position: relative;
            transition: all 0.4s ease;
            border: 2px dashed var(--border);
        }

        .step-card:hover .step-icon-box {
            background: var(--primary);
            color: #fff;
            border-color: transparent;
            animation: pulse-blue 1.5s infinite;
        }

        .step-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            width: 24px;
            height: 24px;
            background: var(--accent);
            color: #fff;
            border-radius: 50%;
            font-size: 0.75rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #fff;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        @media (min-width: 992px) {
            .step-col:not(:last-child) .step-card::after {
                content: '';
                position: absolute;
                top: 62px;
                right: -50%;
                width: 50%;
                height: 2px;
                background-image: linear-gradient(to right, #e2e8f0 50%, transparent 50%);
                background-size: 8px 100%;
                z-index: 1;
            }
        }

        @keyframes pulse-blue {
            0% {
                box-shadow: 0 0 0 0 rgba(17, 86, 142, 0.4);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(17, 86, 142, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(17, 86, 142, 0);
            }
        }

        @keyframes float-icon {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-3px);
            }
        }

        .step-icon-box i {
            animation: float-icon 3s ease-in-out infinite;
        }

        .seo-section {
            background-color: #fff;
            padding: 80px 0;
        }

        .seo-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .seo-heading-1 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 30px;
            line-height: 1.3;
        }

        .seo-heading-2 {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--primary);
            margin-top: 50px;
            margin-bottom: 20px;
            border-left: 5px solid var(--accent);
            padding-left: 15px;
        }

        .seo-heading-3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .seo-text {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #475569;
            margin-bottom: 20px;
            text-align: justify;
        }

        .seo-feature-box {
            background: #f1f8ff;
            border-radius: 15px;
            padding: 30px;
            margin: 40px 0;
            border: 1px solid #dbeafe;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 15px;
            font-size: 1.05rem;
            color: var(--text-dark);
        }

        .feature-list li::before {
            content: '\f00c';
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: #10b981;
        }

        .seo-image-wrapper {
            margin: 40px 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .seo-image-wrapper img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .seo-image-wrapper:hover img {
            transform: scale(1.02);
        }

        .seo-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
        }

        .seo-table th {
            background: var(--primary);
            color: #fff;
            padding: 15px;
            text-align: left;
        }

        .seo-table td {
            padding: 15px;
            border-bottom: 1px solid #eee;
            color: var(--text-dark);
        }

        .custom-accordion .accordion-item {
            border: none;
            background: #fff;
            border-radius: 10px !important;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
            margin-bottom: 15px;
            border: 1px solid #e2e8f0;
        }

        .custom-accordion .accordion-button {
            font-weight: 700;
            color: var(--primary);
            background-color: #fff;
            padding: 20px;
            border-radius: 10px !important;
        }

        .custom-accordion .accordion-button:not(.collapsed) {
            background-color: #eff6ff;
            color: var(--primary-dark);
            box-shadow: none;
        }

        .custom-accordion .accordion-body {
            color: #64748b;
            line-height: 1.7;
            padding: 20px 25px;
        }

        @media (max-width: 768px) {
            .ssl-hero {
                padding: 50px 15px;
            }

            .ssl-hero h1 {
                font-size: 2rem;
            }

            .search-box-wrapper {
                flex-direction: column;
                border-radius: 20px;
                padding: 10px;
            }

            .ssl-input {
                text-align: center;
                border-bottom: 1px solid var(--border);
                margin-bottom: 10px;
                padding: 10px;
            }

            .btn-check-ssl {
                width: 100%;
                justify-content: center;
            }

            .info-grid {
                grid-template-columns: 1fr;
            }

            .info-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .seo-heading-1 {
                font-size: 1.8rem;
            }

            .seo-heading-2 {
                font-size: 1.4rem;
            }

            .seo-feature-box {
                padding: 20px;
            }
        }

        .converter-card {
            background: var(--white);
            border-radius: 20px;
            border: 1px solid var(--border);
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            padding: 30px;
        }

        .converter-grid {
            display: grid;
            grid-template-columns: 1fr 60px 1fr;
            gap: 20px;
            align-items: stretch;
        }

        .upload-zone {
            border: 2px dashed var(--border);
            border-radius: 16px;
            background: var(--bg-light);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 40px 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            height: 100%;
            min-height: 450px;
        }

        .upload-zone:hover {
            border-color: var(--primary);
            background: #f0f9ff;
            transform: translateY(-2px);
        }

        .upload-zone.active {
            border-color: #10b981;
            background: #f0fdf4;
            border-style: solid;
        }

        .icon-upload {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 20px;
            transition: 0.3s;
        }

        .upload-zone:hover .icon-upload {
            transform: scale(1.1);
        }

        .file-badges {
            display: flex;
            gap: 8px;
            margin-top: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .f-badge {
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 4px;
            background: #fff;
            border: 1px solid var(--border);
            color: var(--text-light);
        }

        .arrow-wrap {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--text-light);
        }

        .output-box {
            background: #1e293b;
            border-radius: 16px;
            border: 1px solid #334155;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            height: 100%;
            min-height: 450px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .output-header {
            background: #0f172a;
            padding: 15px 20px;
            border-bottom: 1px solid #334155;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .lang-badge {
            background: #f59e0b;
            color: #000;
            font-weight: 800;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
        }

        .json-textarea {
            flex: 1;
            width: 100%;
            background: #1e293b;
            color: #e2e8f0;
            border: none;
            padding: 20px;
            font-family: 'Courier New', Courier, monospace;
            font-size: 0.9rem;
            resize: none;
            outline: none;
            line-height: 1.5;
        }

        .json-textarea::placeholder {
            color: #475569;
        }

        .output-actions {
            padding: 15px;
            background: #0f172a;
            display: flex;
            justify-content: flex-end;
            gap: 10px;
        }

        .btn-action {
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
        }

        .btn-copy {
            background: #334155;
            color: white;
            border: 1px solid #475569;
        }

        .btn-copy:hover {
            background: #475569;
        }

        .btn-download {
            background: #10b981;
            color: white;
        }

        .btn-download:hover {
            background: #059669;
        }


        @media (min-width: 992px) {
            .step-col:not(:last-child) .step-card::after {
                content: '';
                position: absolute;
                top: 62px;
                right: -50%;
                width: 50%;
                height: 2px;
                background-image: linear-gradient(to right, #e2e8f0 50%, transparent 50%);
                background-size: 8px 100%;
                z-index: 1;
            }
        }

        @keyframes pulse-blue {
            0% {
                box-shadow: 0 0 0 0 rgba(17, 86, 142, 0.4);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(17, 86, 142, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(17, 86, 142, 0);
            }
        }

        @keyframes float-icon {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-3px);
            }
        }

        .step-icon-box i {
            animation: float-icon 3s ease-in-out infinite;
        }

        @media (max-width: 991px) {
            .converter-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto 50px auto;
                gap: 0;
            }

            .arrow-icon {
                transform: rotate(90deg);
            }

            .upload-zone,
            .output-box {
                min-height: 350px;
            }
        }

        .glass-card {
            background: var(--white);
            border-radius: 20px;
            border: 1px solid var(--border);
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
            padding: 30px;
            height: 100%;
            position: relative;
        }

        .upload-view {
            text-align: center;
            padding: 20px;
            transition: 0.3s;
        }

        .upload-view.drag-over {
            background: #f0f9ff;
            border: 2px dashed var(--primary);
            border-radius: 15px;
        }

        .upload-options {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-top: 30px;
        }

        .upload-btn {
            border: 2px dashed var(--border);
            border-radius: 15px;
            background: var(--bg-light);
            padding: 30px 15px;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .upload-btn:hover {
            border-color: var(--primary);
            background: #f0f9ff;
            transform: translateY(-3px);
        }

        .icon-xl {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .preview-wrapper {
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgb3BhY2l0eT0iMC4wNSI+PGNpcmNsZSBjeD0iMSIgY3k9IjEiIHI9IjEiIGZpbGw9IiMwMDAiLz48L3N2Zz4=');
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 400px;
        }

        .img-result {
            max-width: 100%;
            max-height: 500px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .sidebar-header {
            font-weight: 700;
            color: var(--text-dark);
            border-bottom: 1px solid var(--border);
            padding-bottom: 15px;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .form-label-custom {
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 8px;
            display: block;
        }

        .stats-box {
            background: #f8fafc;
            border-radius: 12px;
            padding: 15px;
            border: 1px solid var(--border);
        }

        .stat-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-size: 0.9rem;
            color: var(--text-dark);
        }

        .stat-val {
            font-weight: 700;
            font-family: monospace;
        }

        .stat-val.saved {
            color: #10b981;
        }

        .radio-option {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            padding: 10px;
            border: 1px solid var(--border);
            border-radius: 8px;
            cursor: pointer;
            transition: 0.2s;
        }

        .radio-option:hover {
            background: #f8fafc;
            border-color: var(--primary);
        }

        .radio-option input {
            margin-right: 10px;
            accent-color: var(--primary);
        }

        .radio-option label {
            cursor: pointer;
            flex: 1;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .btn-download {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            border: none;
            padding: 15px;
            width: 100%;
            border-radius: 10px;
            font-weight: 700;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
        }

        .btn-download:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(17, 86, 142, 0.2);
            color: white;
        }

        .btn-download.disabled {
            background: #ccc;
            pointer-events: none;
        }

        #loader {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.9);
            z-index: 100;
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border-radius: 20px;
        }

        .related-tools {
            padding: 60px 0;
            background: #fff;
            border-top: 1px solid var(--border);
        }

        .tool-link-card {
            background: #f8fafc;
            border: 1px solid var(--border);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            transition: 0.2s;
            display: block;
            text-decoration: none;
            color: var(--text-dark);
        }

        .step-card {
            background: var(--white);
            padding: 25px;
            border-radius: 16px;
            border: 1px solid var(--border);
            text-align: center;
            height: 100%;
        }

        .step-icon {
            width: 60px;
            height: 60px;
            background: #fff7ed;
            color: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin: 0 auto 15px;
        }

        .tool-link-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        }

        .tool-icon {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .tool-name {
            font-weight: 700;
            font-size: 1rem;
        }

        /* UPLOAD BUTTONS (Matching Screenshot) */
        .upload-split-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .upload-btn-box {
            border: 2px dashed;
            border-radius: 16px;
            padding: 30px 15px;
            cursor: pointer;
            transition: 0.2s;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            min-height: 180px;
        }

        .box-browse {
            border-color: #0ea5e9;
            background: #f0f9ff;
            color: #0ea5e9;
        }

        .box-browse:hover {
            background: #e0f2fe;
            transform: translateY(-3px);
        }

        .box-browse i {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .box-camera {
            border-color: #f97316;
            background: #fff7ed;
            color: #f97316;
        }

        .box-camera:hover {
            background: #ffedd5;
            transform: translateY(-3px);
        }

        .box-camera i {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .box-title {
            font-weight: 800;
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: inherit;
        }

        .box-desc {
            font-size: 0.85rem;
            font-weight: 500;
            opacity: 0.8;
        }