/* Base Reset and variables setup */
:root {
    --bg-dark: #070b19;
    --bg-dark-card: #0d1527;
    --bg-light: #ffffff;
    --bg-light-sec: #f8f9fa;
    --text-white: #ffffff;
    --text-muted: #8fa0dd;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --primary-blue: #4caf50;
    --accent-blue: #4caf50;
    --border-color: #1e293b;
    --border-light: #e2e8f0;
    
    /* Branding specific colors matching the UI icons */
    --html-color: #ff6b4a;
    --css-color: #2563eb;
    --js-color: #facc15;
    --php-color: #a855f7;
    --python-color: #38bdf8;
    --laravel-color: #ef4444;
    --react-color: #14b8a6;
    --ai-color: #10b981;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Helper Text Colors */
.text-orange { color: var(--html-color); }
.text-blue { color: var(--css-color); }
.text-yellow { color: var(--js-color); }
.text-purple { color: var(--php-color); }
.text-red { color: var(--laravel-color); }
.text-teal { color: var(--react-color); }

/* NAVBAR COMPONENT */
.navbar {
    margin: 0px !important;
    background-color: var(--bg-dark);
    color: var(--text-white) !important;
    padding: 15px 0 !important; 
    border-bottom: 1px solid var(--border-color) !important;
    position: sticky !important;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    width: 95%;
    max-width: 1440px;
    margin: 0 auto;
    justify-content: space-between;
}

.logo {
    line-height: 1;
}

.logo-w3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-blue);
}
.logo-dash {
    font-size: 24px;
    color: var(--text-white);
}
.logo-html {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-white);
}

.logo-sub {
    margin: 0px;
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
    
}

.search-bar {
    background-color: #162235;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 6px 12px;
    width: 280px;
    color: var(--text-muted);
}

.search-bar input {
    background: none;
    border: none !important;
    outline: none;
    color: var(--text-white) !important;
    margin-left: 8px;
    width: 100%;
    font-size: 13px;
    padding: 0px !important;
}

.search-kbd {
    background-color: #24354f;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    gap: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #cbd5e1;
}
.nav-menu a{
color: #fff;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--accent-blue);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.theme-toggle {
    background: none;
    border: none;
    color: #cbd5e1;
    font-size: 18px;
    cursor: pointer;
}

.btn-login {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-white);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 6px;
}

.btn-signup {
    font-size: 14px;
    font-weight: 500;
    background-color: var(--primary-blue);
    color: var(--text-white);
    padding: 8px 16px;
    border-radius: 6px;
}

/* HERO SECTION */
.hero {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 80px 0;
    position: relative;
}

.hero-container {
    display: flex;
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.badge {
    background-color: #162235 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 6px 12px !important;
    border-radius: 20px !important;
    font-size: 13px !important;
    margin-bottom: 25px !important;
    color: #cbd5e1 !important;
    font-weight: normal !important;
}

.badge-new {
    background-color: var(--html-color);
    color: var(--text-white);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
}

.hero-text h1 {
    margin: 0px  !important;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #ffffff !important;
}

.hero-text .highlight {
    color: var(--accent-blue);
}

.hero-text p {
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 35px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--text-white);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary {
    background-color: #162235;
    border: 1px solid var(--border-color);
    color: var(--text-white);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-features {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #94a3b8;
}

.hero-features i {
    color: var(--ai-color);
}

/* HERO GRAPHIC / MOCK EDITOR COMPONENTS */
.hero-graphic {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.mock-editor {
    background-color: #050814;
    border: 1px solid #1e293b;
    border-radius: 12px;
    width: 100%;
    max-width: 550px;
    height: 380px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    overflow: hidden;
}

.editor-header {
    background-color: #0a0f1d;
    padding: 12px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #1e293b;
}

.dot {
    width: 100%;
    max-width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}
.red { background-color: #ef4444; }
.yellow { background-color: #f59e0b; }
.green { background-color: #10b981; }

.tabs {
    display: flex;
    margin-left: 20px;
    gap: 5px;
}

.tab {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 6px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tab.active {
    background-color: #162235;
    color: var(--text-white);
}

.editor-body {
    padding: 20px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    line-height: 1.5;
    color: #cbd5e1;
}

.token.tag { color: #f43f5e; }
.token.attr-name { color: #fb923c; }
.token.attr-value { color: #38bdf8; }

/* Floating Live Preview window */
.mock-preview {
    position: absolute;
    bottom: -30px;
    right: 20px;
    background-color: var(--text-white);
    color: var(--text-dark);
    border-radius: 12px;
    padding: 24px;
    width: 240px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.3);
}

.preview-badge {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-gray);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.mock-preview h2 {
    font-size: 18px;
    margin: 8px 0;
}

.mock-preview p {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.btn-preview {
    background-color: var(--primary-blue);
    color: var(--text-white);
    border: none;
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
}

/* TECHNOLOGY CARD GRID */
.tech-grid-section {
    padding: 60px 0;
    background-color: var(--bg-light-sec);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tech-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.tech-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.html-icon { color: var(--html-color); background-color: #fff0eb; }
.css-icon { color: var(--css-color); background-color: #ebf2ff; }
.js-icon { color: #d9a406; background-color: #fefcbf; }
.php-icon { color: var(--php-color); background-color: #f3e8ff; }
.python-icon { color: var(--css-color); background-color: #e0f2fe; }
.laravel-icon { color: var(--laravel-color); background-color: #fef2f2; }
.react-icon { color: var(--react-color); background-color: #e6fffa; }
.ai-icon { color: var(--ai-color); background-color: #e6fffa; }

.tech-info h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.tech-info p {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 14px;
    line-height: 1.4;
}

.tech-info a {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* THREE-COLUMN MIXED CONTENT LAYOUT */
.content-columns {
    padding: 60px 0;
}

.columns-wrapper {
    display: grid;
    grid-template-columns: 260px 1fr 320px;
    gap: 40px;
}

.col-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.col-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.view-all-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-blue);
}

/* Left Column Styling */
.tutorial-list li {
    margin-bottom: 12px;
}

.tutorial-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
}

.tutorial-list a:hover {
    background-color: var(--bg-light-sec);
}

.column-left .view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: 15px;
    padding-left: 12px;
}

/* Center Column Styling (Trending Cards) */
.trending-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.trend-card {
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.trend-card-banner {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--text-white);
    font-weight: 800;
}

.html-bg { background: linear-gradient(135deg, #ff8a71, #ff6b4a); }
.js-bg { background: linear-gradient(135deg, #ffe066, #facc15); color: #1e293b; }
.php-bg { background: linear-gradient(135deg, #c084fc, #a855f7); }
.laravel-bg { background: linear-gradient(135deg, #fca5a5, #ef4444); }

.trend-card-body {
    padding: 20px;
}

.tag-label {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 12px;
}

.html-tag { background-color: #fff0eb; color: var(--html-color); }
.js-tag { background-color: #fefcbf; color: #b45309; }
.php-tag { background-color: #f3e8ff; color: var(--php-color); }
.laravel-tag { background-color: #fef2f2; color: var(--laravel-color); }

.trend-card-body h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.trend-card-body p {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.4;
    height: 36px;
    overflow: hidden;
}

.trend-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--text-gray);
    border-top: 1px solid var(--border-light);
    padding-top: 12px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    background-color: #cbd5e1;
    border-radius: 50%;
}

.carousel-dots .dot.active {
    background-color: var(--primary-blue);
    width: 20px;
    border-radius: 4px;
}

/* Right Column Styling (Developer Tools List) */
.tools-list li {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    margin-bottom: 12px;
    background-color: var(--bg-light);
}

.tool-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 18px;
}

.blue-bg { background-color: #3b82f6; }
.teal-bg { background-color: #14b8a6; }
.green-bg { background-color: #10b981; }
.yellow-bg { background-color: #eab308; }
.blue-dark-bg { background-color: #1e3a8a; }
.purple-bg { background-color: #8b5cf6; }

.tools-list h5 {
    font-size: 14px;
    margin-bottom: 2px;
}

.tools-list p {
    font-size: 12px;
    color: var(--text-gray);
}

.explore-tools {
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: 15px;
}

/* AI TOOLS CARD SECTION (DARK BLUE BACKGROUND) */
.ai-tools-section {
    background-color: var(--bg-dark-card);
    color: var(--text-white);
    padding: 60px 0;
}

.section-heading {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
}

.section-subheading {
    font-size: 15px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 40px;
}

.ai-tools-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.ai-card {
    background-color: #162235;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

.ai-card:hover {
    transform: translateY(-5px);
}

.ai-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.icon-purple { background-color: rgba(168, 85, 247, 0.15); color: #c084fc; }
.icon-green { background-color: rgba(16, 185, 129, 0.15); color: #34d399; }
.icon-pink { background-color: rgba(236, 72, 153, 0.15); color: #f472b6; }
.icon-lime { background-color: rgba(132, 204, 22, 0.15); color: #a3e635; }
.icon-yellow { background-color: rgba(234, 179, 8, 0.15); color: #fde047; }
.icon-blue { background-color: rgba(59, 130, 246, 0.15); color: #60a5fa; }

.ai-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
}

.ai-card p {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.4;
    margin-bottom: 20px;
}

.arrow-link {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 12px;
    color: #64748b;
}

/* BOTTOM EXTRA BLOCKS (CHALLENGES / ARTICLES / NEWSLETTER) */
.bottom-blocks {
    padding: 60px 0;
    background-color: var(--bg-light-sec);
}

.blocks-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 320px;
    gap: 40px;
    align-items: start;
}

.block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.block-header h3 {
    font-size: 18px;
    font-weight: 700;
}

.block-header a {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-blue);
}

.block-sub {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

/* Challenges item box block style */
.challenge-item {
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.challenge-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 18px;
}

.challenge-details h5 {
    font-size: 14px;
    margin-bottom: 2px;
}

.challenge-details p {
    font-size: 12px;
    color: var(--text-gray);
}

.badge-difficulty {
    margin-left: auto;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

.badge-difficulty.easy { background-color: #e6fffa; color: #0d9488; }
.badge-difficulty.medium { background-color: #fffbeb; color: #d97706; }
.badge-difficulty.hard { background-color: #fef2f2; color: #dc2626; }

.btn-block-action {
    background-color: var(--primary-blue);
    color: var(--text-white);
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

/* Articles block item list styling */
.article-item {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.article-item:last-child {
    border-bottom: none;
}

.article-img {
    width: 90px;
    height: 70px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-weight: 700;
    font-size: 14px;
}

.thumb-html { background-color: #ff6b4a; }
.thumb-js { background-color: #3b82f6; }
.thumb-laravel { background-color: #111827; }
.thumb-ai { background-color: #6366f1; }

.article-details h5 {
    font-size: 14px;
    margin-bottom: 4px;
    line-height: 1.3;
}

.article-details p {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 6px;
}

.article-meta {
    font-size: 11px;
    color: #94a3b8;
}

/* Newsletter form layout block */
.block-newsletter {
    background: linear-gradient(135deg, #4f46e5, #3b82f6);
    color: var(--text-white);
    padding: 30px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.block-newsletter h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.block-newsletter p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #e0e7ff;
}

.newsletter-form input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    margin-bottom: 12px;
    font-size: 14px;
    outline: none;
}

.newsletter-form button {
    width: 100%;
    padding: 12px;
    background-color: #1e1b4b;
    color: var(--text-white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.newsletter-foot {
    font-size: 11px;
    color: #c7d2fe;
    display: block;
    margin-top: 12px;
}

.newsletter-graphic {
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-size: 90px;
    color: rgba(255,255,255,0.08);
    transform: rotate(-15deg);
}

/* MAIN FOOTER SYSTEM */
.main-footer {
    background-color: var(--bg-dark);
    color: #cbd5e1;
    padding: 60px 0 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr repeat(4, 1.2fr);
    gap: 40px;
    padding-bottom: 50px;
}

.brand-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #94a3b8;
    margin: 15px 0;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #162235;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 14px;
}

.social-links a:hover {
    background-color: var(--accent-blue);
    color: var(--text-white);
}

.footer-links-col h4 {
    color: var(--text-white);
    font-size: 15px;
    margin-bottom: 18px;
}

.footer-links-col a {
    display: block;
    font-size: 13px;
    margin-bottom: 10px;
    color: #94a3b8;
}

.footer-links-col a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
    font-size: 13px;
    color: #64748b;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.scroll-top {
    background-color: var(--primary-blue);
    color: var(--text-white);
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Layout Alignments */
.navbar, .hero, .tech-grid-section, .content-columns, .ai-tools-section, .bottom-blocks, .main-footer {
    width: 100%;
    clear: both;
}

.tech-grid, .columns-wrapper, .ai-tools-grid, .blocks-wrapper, .footer-grid {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .tech-grid, .ai-tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .columns-wrapper, .blocks-wrapper, .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   MOBILE RESPONSIVE
=========================== */

@media (max-width:768px){

.container{
    width:100%;
}

/* NAVBAR */

.nav-container{
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
}

.search-bar{
    width:100%;
}

.nav-menu{
    display:none;
}

.nav-actions{
    width:100%;
    justify-content:space-between;
}

/* HERO */

.hero{
    padding:60px 0;
}

.hero-container{
    flex-direction:column;
    gap:35px;
}

.hero-text h1{
    font-size:32px;
}

.hero-text p{
    font-size:16px;
}

.hero-cta{
    flex-direction:column;
}

.btn-primary,
.btn-secondary{
    width:100%;
    justify-content:center;
}

.hero-features{
    flex-wrap:wrap;
    gap:12px;
}

.mock-editor{
    height:270px;
}
.editor-body{
    display: none !important;
}

.mock-preview{
    position: absolute;
        right: auto;
        bottom: 9px;
}


/* TECH */

.tech-grid-section,.content-columns{
    padding: 5px 0;
}
.tech-grid{
    grid-template-columns:1fr;
}

/* CONTENT */

.columns-wrapper{
    grid-template-columns:1fr;
    gap:30px;
}

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

/* AI */

.ai-tools-grid{
    grid-template-columns:repeat(2,1fr);
}

/* BOTTOM */

.blocks-wrapper{
    grid-template-columns:1fr;
}

/* FOOTER */

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

.bottom-flex{
    flex-direction:column;
    text-align:center;
    gap:15px;
}

}

/* Small phones */

@media (max-width:480px){

.hero-text h1{
    font-size:28px;
}

.section-heading{
    font-size:24px;
}

.ai-tools-grid{
    grid-template-columns:1fr;
}

.hero{
    padding:45px 0;
}

.tech-card{
    flex-direction:column;
    text-align:center;
}


.tech-icon, .tech-info{
    margin:auto;
    
}

}

pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
     color: #c7c3c3; 
    word-break: break-all;
    word-wrap: break-word;
     background-color: #000; 
    border: none !important;
}