/* Custom color variables */

:root {
    --primary-color: #D4AF37;
    --text-color: #CBD5E1;
    --hover-color: #D4AF37;
    --bg-dark: #1a202c;
}


/* Base font */

body {
    font-family: 'Open Sans', sans-serif;
}


/* Navbar */

.navbar {
    background-color: var(--bg-dark);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.run-btn {
    background-color: var(--bg-dark);
    color: #fff;
    padding: 4px 12px;
    font-size: 0.8rem;
    border-radius: 6px;
    margin-top: -5px;
    /* moves button slightly up */
    transition: all 0.2s ease;
}

.run-btn:hover {
    background-color: #D4AF37;
    /* slightly darker hover */
    color: #fff;
}

.tool-icon {
    font-size: 1.9rem;
    opacity: 0.6;
    margin-left: 8px;
    /* moves icon right */
}

.tool-grid-section {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.workflow-section {
    margin-top: 0 !important;
    padding-top: 40px;
    /* optional if you want slight spacing */
}


/* Logo container */

.logo-container {
    width: 60px;
    height: 55px;
    background-color: var(#ffffff);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}


/* SVG safety icon */

.safety-icon {
    width: 24px;
    height: 24px;
}

.safety-icon path {
    stroke: #000;
    stroke-width: 2;
    fill: none;
    /* Transparent fill to show background */
}


/* Brand text */

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-logo {
    color: var(--text-color);
    font-size: 26px;
    font-weight: 700;
    transition: color 0.3s ease;
    line-height: 1;
}

.brand-logo:hover {
    color: var(--hover-color);
}

.brand-tagline {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.75rem;
    margin-top: 2px;
}


/* Navigation links with yellow underline on hover */

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 0.5rem 0 !important;
    margin: 0 0.75rem !important;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--hover-color) !important;
}

.nav-link:hover::after {
    width: 100%;
}


/* Access All button */

.btn-access {
    background-color: var(--primary-color);
    border: none;
    color: #000 !important;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 1rem !important;
}

.btn-access:hover {
    background-color: #c19a2d;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}


/* ===== FOOTER STYLES ===== */


/* ===== FOOTER STYLES ===== */


/* Footer Container - REMOVED bottom padding */

.footer-container {
    width: 100%;
    max-width: 100vw;
    opacity: 1;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: rgba(203, 213, 225, 0.2);
    padding-top: 50px;
    /* Keep top padding */
    padding-right: 37px;
    padding-bottom: 0;
    /* CHANGED: Removed bottom padding */
    padding-left: 37px;
    background-color: var(--bg-dark);
    color: white;
    margin-top: 0;
}


/* Container Fluid - No bottom margin */

.footer-container .container-fluid {
    max-width: 1280px;
    margin: 0 auto;
    padding-right: 32px;
    padding-left: 32px;
    padding-bottom: 0;
    /* Ensure no bottom padding */
}


/* Footer Columns */

.footer-column {
    width: 100%;
    max-width: 256px;
    gap: 32px;
    margin-bottom: 0;
    /* Remove bottom margin */
}


/* Horizontal Bar - Adjusted */

.horizontal-bar {
    width: 100%;
    max-width: 1216px;
    justify-content: space-between;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    padding-bottom: 30px;
    /* Add bottom padding here instead */
    margin-top: 0;
    margin-bottom: 0;
    /* Remove bottom margin */
    margin-left: auto;
    margin-right: auto;
}


/* Remove bottom margins from all footer elements */

.footer-container .row {
    margin-bottom: 0 !important;
}

.footer-column {
    margin-bottom: 0 !important;
}

.footer-heading {
    margin-bottom: 1rem !important;
    /* Reduced from 1.5rem */
}


/* Ensure body has no margin/padding at bottom */

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


/* Main content wrapper */

main.py-4 {
    flex: 1;
}


/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1200px) {
    .footer-container .container-fluid {
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media (max-width: 992px) {
    .footer-container {
        padding-top: 40px;
        padding-right: 25px;
        padding-left: 25px;
        padding-bottom: 0;
        /* Ensure no bottom padding */
    }
    .footer-column {
        max-width: 100%;
    }
    .horizontal-bar {
        padding-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding-top: 35px;
        padding-right: 20px;
        padding-left: 20px;
        padding-bottom: 0;
    }
    .footer-container .container-fluid {
        padding-right: 15px;
        padding-left: 15px;
    }
    .horizontal-bar {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .social-icons-simple {
        justify-content: flex-start;
        margin-top: 15px;
        gap: 20px;
    }
    .footer-heading {
        font-size: 11px;
        letter-spacing: 2.2px;
        margin-bottom: 0.75rem !important;
    }
    .footer-link-item {
        font-size: 13px;
        margin-bottom: 0.5rem;
    }
    .social-icon-simple {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .footer-container {
        padding: 30px 15px 0;
        /* Top: 30px, Right/Left: 15px, Bottom: 0 */
    }
    .footer-container .container-fluid {
        padding-right: 0;
        padding-left: 0;
    }
    .horizontal-bar {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .contact-simple-icon {
        font-size: 15px;
    }
    .trademark-text {
        font-size: 11px;
        letter-spacing: 1.1px;
    }
    .social-icon-simple {
        font-size: 15px;
    }
    .social-icons-simple {
        gap: 18px;
    }
}


/* Additional fix to ensure no white space */

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.footer-container {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
}


/* Footer Heading - BOLD */

.footer-heading {
    font-family: 'Open Sans', sans-serif;
    font-weight: 800 !important;
    /* ExtraBold - BOLD */
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: white !important;
    margin-bottom: 1.5rem;
    vertical-align: middle;
    opacity: 1 !important;
    /* Full opacity for headings */
}


/* Footer Link Items */


/* Footer Link Items with Padding */

.footer-link-item {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0%;
    color: white !important;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 0.75rem;
    vertical-align: middle;
    /* Add padding between items */
    padding: 6px 0;
    /* Top/Bottom padding for vertical spacing */
}

.footer-link-item:hover {
    color: var(--primary-color) !important;
    opacity: 1;
    transform: translateX(5px);
}


/* Footer List */

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.75rem;
    padding-left: 0;
}

.footer-text-2 {
    list-style: none;
    padding: 0;
    margin: 20px auto 0;
    max-width: 280px;
}

.footer-text-2 li {
    font-size: 13px;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
    padding-left: 14px;
}


/* Custom bullet */

.footer-text-2 li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #9ca3af;
}

.footer-heading11 {
    margin-top: 6px;
    font-size: 18px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    display: block;
}


/* Footer Text */

.footer-text {
    color: white !important;
    font-size: 0.875rem;
    line-height: 1.5;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}


/* Footer Logo Container */

.footer-logo-container {
    width: 70px;
    height: 60px;
    background-color: white;
    /* border: 2px solid var(--primary-color); */
    /* Yellow border only */
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.footer-logo-icon {
    width: 100px;
    height: 75px;
}

.footer-logo-icon path {
    stroke: var(--primary-color);
    /* Yellow border */
    stroke-width: 2;
    fill: none;
}


/* Card */

.feature-pill-bs {
    background: #fbfdff;
    border-radius: 18px;
    padding: 22px 32px;
    min-height: 96px;
    box-shadow: 0 0 0 1px rgba(20, 40, 80, 0.04);
}


/* Icon */

.icon-bs {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #d4af37;
    /* gold */
}


/* Text */

.title-bs {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.6px;
    color: #1e293b;
}

.subtitle-bs {
    margin-top: 4px;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
}


/* Simple Contact Icons - Yellow Color */

.contact-simple-icon {
    color: var(--primary-color) !important;
    /* Yellow color */
    font-size: 16px;
    margin-top: 0.2rem;
    min-width: 20px;
    transition: color 0.3s ease;
}

.contact-simple-icon:hover {
    color: #ffd700 !important;
    /* Lighter yellow on hover - changeable */
}


/* Horizontal Bar */

.horizontal-bar {
    width: 100%;
    max-width: 1216px;
    justify-content: space-between;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
}


/* Trademark Text - Lower Opacity */

.trademark-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    /* Bold */
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: white !important;
    opacity: 0.6 !important;
    /* Lower opacity */
    margin-bottom: 0;
    vertical-align: middle;
}

.hero-heading-wrapper h1+h1 {
    margin-top: 12px;
}

.hero-heading-1-compact,
.hero-heading-2-compact {
    font-size: 32px;
    line-height: 49px;
    /* slightly increased for better spacing */
    letter-spacing: -1.2px;
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    /* thinner underline */
    text-underline-offset: 5px;
    /* space between text and line */
    margin: 0;
    /* remove default h1 spacing */
}


/* Add space between headings */

.hero-heading-1-compact {
    margin-bottom: 16px;
    /* adjust to 12px / 18px as needed */
}


/* Social Icons - Logos Only (No Circles) */

.social-icons-simple {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
}

.social-icon-simple {
    color: white;
    text-decoration: none;
    font-size: 18px;
    opacity: 0.7;
    /* Lower opacity */
    transition: all 0.3s ease;
    background: none !important;
    /* No background */
    width: auto !important;
    height: auto !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icon-simple:hover {
    color: var(--primary-color);
    opacity: 1;
    transform: translateY(-2px);
}


/* Remove any inherited background or border */

.social-icon-simple i {
    background: none !important;
}


/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1200px) {
    .footer-container .container-fluid {
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media (max-width: 992px) {
    .footer-container {
        padding-top: 40px;
        padding-bottom: 40px;
        padding-right: 25px;
        padding-left: 25px;
    }
    .footer-column {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding-top: 35px;
        padding-bottom: 35px;
        padding-right: 20px;
        padding-left: 20px;
    }
    .footer-container .container-fluid {
        padding-right: 15px;
        padding-left: 15px;
    }
    .horizontal-bar {
        padding-top: 25px;
    }
    .social-icons-simple {
        justify-content: flex-start;
        margin-top: 15px;
        gap: 20px;
    }
    .footer-heading {
        font-size: 11px;
        letter-spacing: 2.2px;
    }
    .footer-link-item {
        font-size: 13px;
    }
    .social-icon-simple {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .footer-container {
        padding: 30px 15px;
    }
    .footer-container .container-fluid {
        padding-right: 0;
        padding-left: 0;
    }
    .horizontal-bar {
        padding-top: 20px;
    }
    .contact-simple-icon {
        font-size: 15px;
    }
    .trademark-text {
        font-size: 11px;
        letter-spacing: 1.1px;
    }
    .social-icon-simple {
        font-size: 15px;
    }
    .social-icons-simple {
        gap: 18px;
    }
}


/* ===== MAIN PAGE STYLES ===== */


/* Main Container */


/* ===== COMPACT VERSIONS ===== */


/* Main Container - Compact */

.main-container {
    width: 1280px;
    max-width: 100%;
    /* min-height: 400px; */
    /* Reduced from 601px */
    opacity: 1;
    padding-right: 32px;
    padding-left: 32px;
    gap: 24px;
    /* Reduced from 32px */
    margin: 0 auto;
}


/* Hero Section - Compact */

.hero-section {
    padding: 25px 0;
    /* Reduced from 80px */
    background-color: #ffffff;
}


/* Hero Headings - Compact */

.hero-heading-1-compact,
.hero-heading-2-compact {
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    font-size: 48px;
    /* Reduced from 71.4px */
    line-height: 50px;
    /* Reduced from 72px */
    letter-spacing: -2px;
    /* Reduced from -3.6px */
    text-align: center;
    vertical-align: middle;
    color: #1a365d;
    margin: 0;
}

.hero-heading-2-compact {
    margin-top: -10px;
    /* Reduced from -15px */
    position: relative;
}

.workflow-section {
    background: #ffffff;
}


/* Eyebrow */

.workflow-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #d4af37;
}


/* Heading */

.workflow-heading {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
}


/* Subtitle */

.workflow-subtitle {
    max-width: 620px;
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
}


/* Cards */

.workflow-card {
    background: #fffdf7;
    border-radius: 14px;
    padding: 32px 28px;
    text-align: left;
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.04);
}


/* Icon */

.workflow-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 20px;
    margin-bottom: 18px;
}


/* Card title */

.workflow-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}


/* Card text */

.workflow-card-text {
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 18px;
}


/* Feature list */

.workflow-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.workflow-list li {
    font-size: 13px;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 8px;
}

.workflow-list i {
    color: #22c55e;
    margin-right: 8px;
}


/* Yellow underline on second H1 - Compact */

.underline-yellow-compact {
    position: relative;
    display: inline-block;
}

.underline-yellow-compact::after {
    content: '';
    position: absolute;
    bottom: 5px;
    /* Reduced from 10px */
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    /* Reduced from 60% */
    height: 4px;
    /* Reduced from 6px */
    background-color: var(--primary-color);
    border-radius: 2px;
    /* Reduced from 3px */
    z-index: -1;
}


/* Search Container - Compact */

.search-container-compact {
    max-width: 700px;
    /* Reduced from 800px */
    margin: 25px auto;
    /* Reduced from 40px */
}


/* Search Bar - Compact */

.search-bar-yellow-compact {
    position: relative;
    display: flex;
    background: #ffffff;
    border-radius: 40px;
    /* Reduced from 50px */
    padding: 4px;
    /* Reduced from 5px */
    border: 1.5px solid var(--primary-color);
    /* Reduced from 2px */
    box-shadow: 0 3px 8px rgba(212, 175, 55, 0.15);
    /* Reduced shadow */
    overflow: hidden;
}

.search-input-compact {
    flex: 1;
    background: transparent;
    border: none;
    color: #2d3748;
    padding: 14px 20px;
    /* Reduced from 18px 25px */
    font-size: 14px;
    /* Reduced from 16px */
    outline: none;
}

.search-input-compact::placeholder {
    color: rgba(45, 55, 72, 0.6);
}


/* Full Search Button - Compact */

.search-button-full-compact {
    background: var(--bg-dark);
    border: none;
    border-radius: 20px;
    /* Reduced from 25px */
    color: #ffffff;
    font-size: 14px;
    /* Reduced from 16px */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    /* Reduced from 0 30px */
    gap: 8px;
    /* Reduced from 10px */
    white-space: nowrap;
}

.search-button-full-compact:hover {
    background: #c19a2d;
    transform: scale(1.02);
}


/* Categories Tags - Compact */

.categories-tags-compact {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    /* Reduced from 12px */
    margin-top: 15px;
    /* Reduced from 25px */
}

.tag-compact {
    background: #f7fafc;
    color: #4a5568;
    padding: 6px 15px;
    /* Reduced from 8px 20px */
    border-radius: 20px;
    /* Reduced from 25px */
    font-size: 12px;
    /* Reduced from 14px */
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e2e8f0;
}

.tag-compact:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    border-color: var(--primary-color);
}


/* Features Container - Compact */

.features-container-compact {
    margin-top: 40px;
    /* Reduced from 60px */
}


/* Feature Cards - Compact */

.feature-card-compact {
    width: 100%;
    max-width: 250px;
    /* Reduced from 282.67px */
    min-height: 140px;
    /* Reduced from 180px */
    background: #ffffff;
    border-radius: 12px;
    /* Reduced from 16px */
    border: 1px solid #e2e8f0;
    padding: 20px 15px;
    /* Reduced from 30px 25px */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    margin: 0 auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    /* Reduced shadow */
}

.feature-card-compact:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.15);
    /* Reduced shadow */
    transform: translateY(-3px);
    /* Reduced from -5px */
}


/* Simple Transparent Icons - Compact */

.feature-icon-transparent-simple-compact {
    color: var(--primary-color);
    font-size: 24px;
    /* Reduced from 32px */
    margin-bottom: 10px;
    /* Reduced from 15px */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    /* Reduced from 50px */
    width: 40px;
    /* Reduced from 50px */
}


/* Feature Titles - Compact */


/* ===== STATS SECTION ===== */

.stats-section-blue-full-compact {
    width: 95%;
    /* Increased width */
    max-width: 1400px;
    /* Slightly larger max width */
    margin: 20px auto;
    padding: 2px 10px;
    /* Reduced padding → reduces height */
    background: #1a365d;
    border-radius: 35px;
    /* More rounded corners */
    box-sizing: border-box;
}


/* ===== CONTAINER SPACING ===== */

.stats-container-full-compact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 80px;
    /* Reduced gap for better compact look */
    width: 100%;
}


/* ===== CARD ===== */

.stat-card-compact {
    text-align: center;
    flex: 0 1 140px;
    min-width: 110px;
    max-width: 180px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}


/* ===== NUMBER TEXT (Reduce Font Size) ===== */

.stat-number-compact {
    font-size: 26px;
    /* Reduced font size */
    font-weight: 800;
    line-height: 1;
    color: white;
}


/* ===== LABEL TEXT (Reduce Height) ===== */

.stat-label-compact {
    white-space: nowrap;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
}


/* ===== ACCENT COLOR ===== */

.stat-yellow-compact {
    color: var(--primary-color) !important;
}

.stat-label-yellow-compact {
    color: var(--primary-color) !important;
}


/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1200px) {
    .stat-card-compact {
        flex: 1 1 22%;
        /* Slightly bigger spacing */
    }
    .stat-number-compact {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .stat-card-compact {
        flex: 1 1 45%;
        /* 2 per row */
        margin: 8px 0;
    }
    .stat-number-compact {
        font-size: 24px;
    }
    .feature-title-bold-compact {
        font-size: 16px;
        line-height: 22px;
    }
}

@media (max-width: 768px) {
    .stats-container-full-compact {
        justify-content: center;
    }
    .stat-card-compact {
        flex: 1 1 90%;
        /* Single column on mobile */
        margin: 8px 0;
    }
    .stat-number-compact {
        font-size: 22px;
    }
    .stat-label-compact {
        font-size: 9px;
        line-height: 11px;
    }
}

@media (max-width: 992px) {
    .hero-heading-1-compact,
    .hero-heading-2-compact {
        font-size: 32px;
        /* Adjusted from 48px */
        line-height: 34px;
        /* Adjusted from 50px */
        letter-spacing: -1.2px;
        /* Adjusted from -2.5px */
    }
    .feature-card-compact {
        max-width: 100%;
        min-height: 120px;
        /* Adjusted from 160px */
        padding: 15px 12px;
        /* Adjusted from 25px 20px */
        margin-bottom: 10px;
        /* Adjusted from 15px */
    }
    .feature-title-bold-compact {
        font-size: 16px;
        /* Adjusted from 20px */
        line-height: 22px;
        /* Adjusted from 26px */
    }
    .stat-number-compact {
        font-size: 24px;
        /* Adjusted from 32px */
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 30px 0;
        /* Adjusted from 60px */
    }
    .hero-heading-1-compact,
    .hero-heading-2-compact {
        font-size: 24px;
        /* Adjusted from 36px */
        line-height: 26px;
        /* Adjusted from 38px */
        letter-spacing: -1px;
        /* Adjusted from -2px */
    }
    .underline-yellow-compact::after {
        bottom: 3px;
        /* Adjusted from 5px */
        height: 3px;
        /* Adjusted from 4px */
        width: 40%;
        /* Adjusted from 70% */
    }
    .search-bar-yellow-compact {
        flex-direction: column;
        border-radius: 25px;
        overflow: visible;
        gap: 8px;
        /* Adjusted from 10px */
        padding: 0;
        border: none;
        box-shadow: none;
    }
    .search-input-compact {
        border-radius: 25px;
        border: 1.5px solid var(--primary-color);
        padding: 12px 15px;
        /* Adjusted from 15px 20px */
        font-size: 13px;
        /* Adjusted from 14px */
        background: white;
    }
    .search-button-full-compact {
        border-radius: 20px;
        padding: 12px 20px;
        /* Adjusted from 15px 30px */
        width: 100%;
        justify-content: center;
        font-size: 13px;
        /* Adjusted from 14px */
    }
    .categories-tags-compact {
        gap: 6px;
        /* Adjusted from 8px */
    }
    .tag-compact {
        padding: 5px 12px;
        /* Adjusted from 6px 15px */
        font-size: 11px;
        /* Adjusted from 13px */
    }
    .feature-card-compact {
        min-height: 110px;
        /* Adjusted from 150px */
        padding: 15px 10px;
        /* Adjusted from 20px 15px */
    }
    .feature-icon-transparent-simple-compact {
        font-size: 20px;
        /* Adjusted from 28px */
        height: 35px;
        /* Adjusted from 40px */
        width: 35px;
        /* Adjusted from 40px */
    }
    .feature-title-bold-compact {
        font-size: 14px;
        /* Adjusted from 18px */
        line-height: 20px;
        /* Adjusted from 24px */
    }
    .stat-number-compact {
        font-size: 20px;
        /* Adjusted from 28px */
    }
    .stats-section-blue-full-compact {
        padding: 20px 0;
        /* Adjusted from 30px */
    }
    .stats-container-full-compact {
        padding: 0 12px;
        /* Adjusted from 15px */
    }
}

@media (max-width: 576px) {
    .hero-heading-1-compact,
    .hero-heading-2-compact {
        font-size: 20px;
        /* Adjusted from 28px */
        line-height: 22px;
        /* Adjusted from 30px */
        letter-spacing: -0.8px;
        /* Adjusted from -1.5px */
    }
    .underline-yellow-compact::after {
        bottom: 2px;
        /* Adjusted from 3px */
        height: 2px;
        /* Adjusted from 3px */
        width: 30%;
        /* Adjusted from 80% */
    }
    .search-button-full-compact {
        padding: 10px 15px;
        /* Adjusted from 12px 25px */
        font-size: 12px;
        /* Adjusted from 15px */
    }
    .categories-tags-compact {
        gap: 4px;
        /* Adjusted from 6px */
    }
    .tag-compact {
        padding: 4px 10px;
        /* Adjusted from 5px 12px */
        font-size: 10px;
        /* Adjusted from 12px */
    }
    .stat-number-compact {
        font-size: 18px;
        /* Adjusted from 24px */
    }
    .stat-label-compact {
        font-size: 9px;
        /* Adjusted from 10px */
        letter-spacing: 1px;
        /* Adjusted from 1.5px */
    }
    .stats-section-blue-full-compact {
        padding: 15px 0;
        /* Adjusted from 25px */
    }
}

.api-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    gap: 24px;
}

.api-col {
    flex: 0 0 calc(25% - 18px);
    /* 4 cards */
}

.api-tool-card {
    height: 100%;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
}

.api-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* ✅ 4 cards per row */
    gap: 16px;
    /* spacing between cards */
}

.api-tool-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 14px;
    /* ⬅ smaller padding */
    min-height: 200px;
    /* ⬅ reduced height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.api-tool-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.api-tool-icon i {
    font-size: 16px;
    /* ⬅ smaller icon */
}

.api-tool-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.api-tool-desc {
    font-size: 13px;
    line-height: 19px;
    color: #64748B;
}

@media (max-width: 1200px) {
    .api-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .api-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .api-row {
        grid-template-columns: 1fr;
    }
}


/* ===== API TOOLS SECTION ===== */


/* API Tools Section Container */

.api-tools-section {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    opacity: 1;
    padding-top: 30px;
    padding-right: 37px;
    padding-left: 37px;
    gap: 64px;
    padding-bottom: 0 !important;
    background-color: #ffffff;
}

.api-tools-container {
    width: 1280px;
    max-width: 100%;
    padding-right: 32px;
    padding-left: 32px;
    margin: 0 auto;
}


/* Section Header */

.api-tools-header {
    width: 1216px;
    max-width: 100%;
    min-height: 97px;
    opacity: 1;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #e2e8f0;
    padding-bottom: 40px;
    margin: 0 auto;
}

.api-tools-heading {
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    font-size: 32;
    line-height: 48px;
    letter-spacing: -1px;
    color: #1a202c;
    margin-bottom: 12px;
}

.api-tools-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #4a5568;
    opacity: 0.6;
    margin-bottom: 0;
    max-width: 600px;
}


/* Access Inventory Link */

.api-inventory-link {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.api-inventory-link:hover {
    color: #c19a2d;
    transform: translateX(5px);
}


/* API Tools Grid */

.api-tools-grid {
    /* width: 1216px; */
    max-width: 89%;
    min-height: 647px;
    opacity: 1;
    margin: 0 auto;
}


/* API Tool Cards */


/* ===== API TOOLS SECTION - UPDATED ===== */


/* API Tool Card - Updated */

.api-tool-card {
    width: 100%;
    max-width: 378.66px;
    height: 250.5px;
    background: #FFFFFF;
    border-radius: 2px;
    border: 2px solid rgba(212, 175, 55, 0.6);
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.api-tool-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}


/* API Tool Header - Icon and Category Side by Side */

.api-tool-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    width: 100%;
}


/* API Tool Icon - Left Side */

.api-tool-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}


/* API Tool Category - Right Side */

.api-tool-category {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}


/* Category Badge */

.category-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    border-radius: 16px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: capitalize;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    white-space: nowrap;
}


/* API Tool Title */

.api-tool-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    color: #1a202c;
    margin-bottom: 12px;
    margin-top: 0;
}


/* API Tool Description */

.api-tool-desc {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #4a5568;
    opacity: 0.9;
    margin-bottom: 0;
    flex-grow: 1;
}


/* Category Variations */

.category-security {
    background: rgba(66, 153, 225, 0.1);
    color: #4299e1;
    border-color: rgba(66, 153, 225, 0.3);
}

.category-performance {
    background: rgba(72, 187, 120, 0.1);
    color: #48bb78;
    border-color: rgba(72, 187, 120, 0.3);
}

.category-developer {
    background: rgba(159, 122, 234, 0.1);
    color: #9f7aea;
    border-color: rgba(159, 122, 234, 0.3);
}

.category-network {
    background: rgba(237, 137, 54, 0.1);
    color: #ed8936;
    border-color: rgba(237, 137, 54, 0.3);
}

.category-content {
    background: rgba(246, 173, 85, 0.1);
    color: #f6ad55;
    border-color: rgba(246, 173, 85, 0.3);
}


/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1200px) {
    .api-tool-card {
        max-width: 100%;
        height: auto;
        min-height: 280px;
    }
    .api-tool-header {
        margin-bottom: 16px;
    }
    .api-tool-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    .api-tool-title {
        font-size: 20px;
        line-height: 28px;
    }
}

@media (max-width: 992px) {
    .api-tool-card {
        padding: 24px;
        height: auto;
        min-height: 260px;
    }
    .api-tool-header {
        margin-bottom: 16px;
    }
    .api-tool-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    .api-tool-title {
        font-size: 19px;
        line-height: 26px;
    }
    .api-tool-desc {
        font-size: 15px;
        line-height: 22px;
    }
    .category-badge {
        font-size: 12px;
        padding: 5px 12px;
    }
}

@media (max-width: 768px) {
    .api-tool-card {
        padding: 20px;
        min-height: 240px;
    }
    .api-tool-header {
        margin-bottom: 14px;
    }
    .api-tool-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .api-tool-title {
        font-size: 18px;
        line-height: 24px;
    }
    .api-tool-desc {
        font-size: 14px;
        line-height: 20px;
    }
    .category-badge {
        font-size: 11px;
        padding: 4px 10px;
        border-radius: 14px;
    }
}

@media (max-width: 576px) {
    .api-tool-card {
        padding: 16px;
        min-height: 220px;
    }
    .api-tool-header {
        margin-bottom: 12px;
    }
    .api-tool-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
        border-radius: 8px;
    }
    .api-tool-title {
        font-size: 16px;
        line-height: 22px;
    }
    .api-tool-desc {
        font-size: 13px;
        line-height: 18px;
    }
    .category-badge {
        font-size: 10px;
        padding: 3px 8px;
        border-radius: 12px;
    }
}


/* Ensure proper alignment on very small screens */

@media (max-width: 400px) {
    .api-tool-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .api-tool-category {
        justify-content: flex-start;
    }
}


/* ===== OPTIMIZED WORKFLOW SECTION ===== */


/* ===== OPTIMIZED WORKFLOW SECTION - COMPACT ===== */


/* Workflow Section Container - Compact */

.workflow-section {
    width: 100%;
    max-width: 100%;
    min-height: 500px;
    /* Reduced from 612px */
    opacity: 1;
    padding: 60px 0;
    /* Reduced from 80px */
    background-color: #efefef;
}

.workflow-container {
    width: 1280px;
    max-width: 100%;
    padding-right: 32px;
    padding-left: 32px;
    gap: 60px;
    /* Reduced from 80px */
    margin: 0 auto;
}


/* Workflow Badge - Compact */

.workflow-badge {
    display: inline-block;
    width: 160px;
    /* Reduced from 189.46px */
    height: 14px;
    /* Reduced from 15px */
    background: var(--primary-color);
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 9px;
    /* Reduced from 10px */
    line-height: 14px;
    /* Reduced from 15px */
    letter-spacing: 3px;
    /* Reduced from 4px */
    text-align: center;
    text-transform: uppercase;
    color: #000000;
    padding: 6px 16px;
    /* Reduced from 8px 20px */
    border-radius: 2px;
}


/* Workflow Heading - Csompact */

.workflow-heading {
    width: 100%;
    max-width: 600px;
    /* Reduced from 706px */
    height: auto;
    /* Changed from 48px */
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    font-size: 36px;
    /* Reduced from 48px */
    line-height: 40px;
    /* Reduced from 48px */
    letter-spacing: 0%;
    text-align: center;
    color: #1E293B;
    margin: 20px auto 16px;
    /* Reduced from 40px auto 24px */
}


/* Workflow Subtitle - Compact */

.workflow-subtitle {
    width: 100%;
    max-width: 500px;
    /* Reduced from 592px */
    height: auto;
    /* Changed from 48px */
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    /* Reduced from 16px */
    line-height: 22px;
    /* Reduced from 24px */
    letter-spacing: 0%;
    text-align: center;
    color: #64748B;
    margin: 0 auto;
}


/* Workflow Cards Container - Compact */

.workflow-cards {
    margin-top: 50px;
    /* Reduced from 80px */
}


/* Profession Card - Compact */

.profession-card {
    width: 100%;
    max-width: 320px;
    /* Reduced from 373.33px */
    height: 280px;
    /* Reduced from 380px */
    background: #FDFBF7;
    border-radius: 4px;
    border: 1px solid #F1F5F9;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.profession-card:hover {
    transform: translateY(-3px);
    /* Reduced from -5px */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    /* Reduced shadow */
    border-color: var(--primary-color);
}


/* Profession Card Header - Compact */

.profession-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px 12px;
    /* Reduced from 24px 24px 16px */
    border-bottom: 1px solid #F1F5F9;
}


/* Profession Icon - Compact */

.profession-icon {
    width: 32px;
    /* Reduced from 40px */
    height: 32px;
    /* Reduced from 40px */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 16px;
    /* Reduced from 20px */
}


/* Profession Badge - Compact */

.profession-badge {
    display: inline-block;
    padding: 4px 10px;
    /* Reduced from 6px 12px */
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    border-radius: 10px;
    /* Reduced from 12px */
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 11px;
    /* Reduced from 12px */
    text-transform: uppercase;
    border: 1px solid rgba(212, 175, 55, 0.2);
}


/* Profession Card Body - Compact */

.profession-card-body {
    padding: 20px;
    /* Reduced from 32px 24px */
}


/* Profession Title - Compact */

.profession-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 9px;
    /* Reduced from 10px */
    line-height: 14px;
    /* Reduced from 15px */
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #475569;
    margin-bottom: 12px;
    /* Reduced from 16px */
}


/* Profession Features List - Compact */

.profession-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profession-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    /* Spacing between items */
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 13px;
    /* Smaller font */
    line-height: 18px;
    color: #475569;
}

.profession-features li:last-child {
    margin-bottom: 0;
}

.profession-features .fa-check-circle {
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}


/* Remove Bootstrap text-success color if you want custom green */

.text-success {
    color: #10b981 !important;
    /* Green color for check marks */
}


/* ===== RESPONSIVE DESIGN - COMPACT ===== */

@media (max-width: 1200px) {
    .workflow-container {
        width: 100%;
        padding-right: 20px;
        padding-left: 20px;
    }
    .profession-card {
        max-width: 100%;
        height: auto;
        min-height: 260px;
        /* Adjusted for compact */
    }
}

@media (max-width: 992px) {
    .workflow-section {
        /* Reduced from 60px */
    }
    .workflow-container {
        gap: 40px;
        /* Reduced from 60px */
    }
    .workflow-heading {
        font-size: 30px;
        /* Reduced from 36px */
        line-height: 34px;
        /* Reduced from 40px */
        margin: 16px auto 12px;
        /* Reduced margins */
    }
    .workflow-subtitle {
        font-size: 14px;
        /* Reduced from 15px */
        line-height: 20px;
        /* Reduced from 22px */
    }
    .workflow-cards {
        margin-top: 40px;
        /* Reduced from 50px */
    }
    .profession-card {
        min-height: 250px;
        /* Adjusted for compact */
    }
    .profession-card-body {
        padding: 16px;
        /* Reduced from 20px */
    }
    .profession-features li {
        font-size: 12px;
        /* Smaller font */
        line-height: 17px;
        margin-bottom: 8px;
        /* Reduced spacing */
    }
}

@media (max-width: 768px) {
    .workflow-section {
        padding: 30px 0;
        /* Reduced from 40px */
    }
    .workflow-container {
        padding-right: 15px;
        padding-left: 15px;
        gap: 30px;
        /* Reduced from 40px */
    }
    .workflow-badge {
        width: auto;
        padding: 5px 14px;
        /* Reduced padding */
        font-size: 8px;
        /* Smaller font */
        letter-spacing: 2.5px;
        /* Reduced spacing */
    }
    .workflow-heading {
        font-size: 26px;
        /* Reduced from 30px */
        line-height: 30px;
        /* Reduced from 34px */
        margin: 12px auto 10px;
        /* Reduced margins */
    }
    .workflow-subtitle {
        font-size: 13px;
        /* Reduced from 14px */
        line-height: 18px;
        /* Reduced from 20px */
    }
    .workflow-cards {
        margin-top: 30px;
        /* Reduced from 40px */
    }
    .profession-card {
        min-height: 240px;
        /* Adjusted for compact */
    }
    .profession-card-header {
        padding: 14px 16px 10px;
        /* Reduced padding */
    }
    .profession-icon {
        width: 28px;
        /* Smaller icon */
        height: 28px;
        /* Smaller icon */
        font-size: 14px;
        /* Smaller icon */
    }
    .profession-badge {
        font-size: 10px;
        /* Smaller font */
        padding: 3px 8px;
        /* Reduced padding */
    }
    .profession-title {
        font-size: 8px;
        /* Smaller font */
        line-height: 12px;
        /* Reduced line height */
        margin-bottom: 10px;
        /* Reduced margin */
    }
    .profession-features li {
        font-size: 11px;
        /* Smaller font */
        line-height: 16px;
    }
    .profession-features .fa-check-circle {
        font-size: 12px;
        /* Smaller check icon */
    }
}

@media (max-width: 576px) {
    .workflow-section {
        padding: 24px 0;
        /* Reduced from 30px */
    }
    .workflow-heading {
        font-size: 22px;
        /* Reduced from 26px */
        line-height: 26px;
        /* Reduced from 30px */
    }
    .workflow-subtitle {
        font-size: 12px;
        /* Reduced from 13px */
        line-height: 16px;
        /* Reduced from 18px */
    }
    .profession-card {
        min-height: 230px;
        /* Adjusted for compact */
    }
    .profession-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 16px 8px;
        /* Reduced padding */
    }
    .profession-category {
        width: 100%;
    }
    .profession-badge {
        display: block;
        text-align: center;
        font-size: 9px;
        /* Smaller font */
    }
    .profession-card-body {
        padding: 14px;
        /* Reduced padding */
    }
    .profession-features li {
        font-size: 10px;
        /* Smaller font */
        line-height: 15px;
        margin-bottom: 6px;
        /* Reduced spacing */
    }
}


/* ===== CUSTOM UTILITY SECTION - BLUE BACKGROUND ===== */


/* Custom Utility Section Container - FULL BLUE BACKGROUND */

.custom-utility-section {
    width: 100%;
    max-width: 100%;
    padding: 80px 0;
    background-color: #1E293B;
    /* Dark blue background */
    background-image: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
}


/* Custom Utility Card - BLUE BACKGROUND WITH BORDER */

.custom-utility-card {
    width: 960px;
    max-width: 100%;
    min-height: 474.3px;
    background: transparent;
    /* Transparent background */
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle white border */
    padding: 80px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}


/* Add decorative gradient effect */

.custom-utility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    border-radius: 12px;
    z-index: 0;
}

.custom-utility-card>* {
    position: relative;
    z-index: 1;
}


/* Custom Utility Icon - TRANSPARENT BLUE */

.custom-utility-icon {
    width: 40px;
    height: 40;
    background: rgba(255, 255, 255, 0.1);
    /* Transparent white */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--primary-color);
    /* Yellow icon */
    font-size: 32px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}


/* Custom Utility Heading - WHITE TEXT */

.custom-utility-heading {
    width: 100%;
    max-width: 568px;
    height: 48px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
    /* White text */
    margin: 0 auto 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}


/* Custom Utility Text - LIGHT GREY TEXT */

.custom-utility-text {
    width: 100%;
    max-width: 542px;
    height: 88px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 29.25px;
    letter-spacing: 0%;
    text-align: center;
    color: #CBD5E1;
    /* Light grey text */
    margin: 0 auto 40px;
    opacity: 0.9;
}


/* Custom Utility Form */

.custom-utility-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}


/* Custom Utility Input - WHITE WITH GREY BORDER */

.custom-utility-input {
    width: 100%;
    max-width: 348px;
    height: 66px;
    background: rgba(255, 255, 255, 0.95);
    /* Almost white */
    border: 1px solid #CBD5E1;
    /* Grey border */
    border-radius: 8px;
    padding: 21px 24px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #1E293B;
    /* Dark blue text */
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.custom-utility-input::placeholder {
    color: #94A3B8;
    /* Light grey placeholder */
    opacity: 0.8;
}

.custom-utility-input:focus {
    background: #ffffff;
    border-color: var(--primary-color);
    /* Yellow border on focus */
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2), 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #1E293B;
    outline: none;
}


/* Custom Utility Button - YELLOW */

.custom-utility-button {
    width: 100%;
    max-width: 212px;
    height: 66px;
    background: var(--primary-color) !important;
    /* Yellow */
    border: none !important;
    border-radius: 8px;
    padding: 24.5px 40px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #000000 !important;
    /* Black text */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
}

.custom-utility-button:hover {
    background: #c19a2d !important;
    /* Darker yellow */
    transform: translateY(-2px);
    box-shadow: 0px 6px 10px -4px rgba(0, 0, 0, 0.15), 0px 12px 20px -3px rgba(0, 0, 0, 0.15) !important;
}

.custom-utility-button:active {
    transform: translateY(0);
    box-shadow: 0px 2px 4px -4px rgba(0, 0, 0, 0.1), 0px 5px 10px -3px rgba(0, 0, 0, 0.1) !important;
}


/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1200px) {
    .custom-utility-card {
        width: 90%;
        padding: 60px;
    }
    .custom-utility-heading {
        font-size: 42px;
        line-height: 42px;
        height: auto;
    }
    .custom-utility-text {
        font-size: 17px;
        line-height: 26px;
        height: auto;
        margin-bottom: 30px;
    }
    .custom-utility-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .custom-utility-section {
        padding: 60px 0;
    }
    .custom-utility-card {
        padding: 50px 40px;
    }
    .custom-utility-heading {
        font-size: 36px;
        line-height: 36px;
        margin-bottom: 20px;
    }
    .custom-utility-text {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    .custom-utility-form .col-lg-5,
    .custom-utility-form .col-lg-3 {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .custom-utility-input,
    .custom-utility-button {
        max-width: 100%;
        margin-bottom: 15px;
    }
    .custom-utility-button {
        max-width: 400px;
    }
    .custom-utility-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .custom-utility-section {
        padding: 40px 0;
    }
    .custom-utility-card {
        padding: 40px 30px;
        width: 95%;
    }
    .custom-utility-heading {
        font-size: 32px;
        line-height: 32px;
        margin-bottom: 16px;
    }
    .custom-utility-text {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 25px;
    }
    .custom-utility-input {
        height: 58px;
        padding: 18px 20px;
        font-size: 15px;
    }
    .custom-utility-button {
        height: 58px;
        padding: 20px 30px;
        font-size: 15px;
    }
    .custom-utility-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .custom-utility-card {
        padding: 30px 20px;
    }
    .custom-utility-heading {
        font-size: 28px;
        line-height: 28px;
    }
    .custom-utility-text {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 20px;
    }
    .custom-utility-input {
        height: 52px;
        padding: 16px 18px;
        font-size: 14px;
    }
    .custom-utility-button {
        height: 52px;
        padding: 18px 25px;
        font-size: 14px;
    }
    .custom-utility-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 15px;
    }
}

@media (max-width: 400px) {
    .custom-utility-heading {
        font-size: 24px;
        line-height: 24px;
    }
    .custom-utility-text {
        font-size: 13px;
        line-height: 18px;
    }
    .custom-utility-input {
        height: 48px;
        padding: 14px 16px;
    }
    .custom-utility-button {
        height: 48px;
        padding: 16px 20px;
    }
    .custom-utility-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}


/* ===== MINIMAL CONTACT PAGE CSS ===== */


/* Custom colors mapping */

.bg-primary {
    background-color: #1E293B !important;
}

.bg-dark {
    background-color: #0F172A !important;
}

.text-warning {
    color: var(--primary-color) !important;
}

.bg-warning {
    background-color: var(--primary-color) !important;
}


/* Custom border classes */

.border-gray-300 {
    border-color: #CBD5E1 !important;
}


/* Custom badge styling */

[style*="letter-spacing: 4px"] {
    line-height: 15px !important;
}


/* Hero heading underline */

.position-relative .bg-warning[style*="height: 4px"] {
    bottom: -6px !important;
}


/* Responsive adjustments */

@media (max-width: 992px) {
    .display-1 {
        font-size: 3.5rem !important;
    }
    .py-lg-6 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
}

@media (max-width: 768px) {
    .display-1 {
        font-size: 2.5rem !important;
    }
    .h1 {
        font-size: 1.75rem !important;
    }
    .lead {
        font-size: 1rem !important;
    }
    .form-control-lg,
    .form-select-lg {
        padding: 0.75rem 1rem !important;
        font-size: 1rem !important;
    }
    .btn-lg {
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem !important;
    }
}

@media (max-width: 576px) {
    .display-1 {
        font-size: 2rem !important;
    }
    .h1 {
        font-size: 1.5rem !important;
    }
    .fs-6 {
        font-size: 0.875rem !important;
    }
}


/* Trust Section */

.trust-section {
    background: #f9fafb;
}

.trust-card {
    padding: 30px 20px;
}

.trust-icon {
    font-size: 26px;
    color: #f5c542;
    margin-bottom: 15px;
}

.trust-title {
    font-weight: 700;
    color: #0b1c2d;
    margin-bottom: 10px;
}

.trust-text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
}


/* Custom Utility CTA */

.custom-utility-box {
    background: #0b1c2d;
    border-radius: 14px;
    padding: 50px 40px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.custom-utility-title {
    font-weight: 800;
    margin-bottom: 15px;
}

.custom-utility-text {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #cfd6df;
}

.custom-utility-action {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.custom-utility-input {
    max-width: 320px;
    border-radius: 8px;
    border: none;
    padding: 12px 15px;
}

.custom-utility-btn {
    background: #f5c542;
    color: #0b1c2d;
    font-weight: 700;
    border-radius: 8px;
    padding: 12px 24px;
}

.custom-utility-btn:hover {
    background: #e0b737;
}

.custom-utility-footer {
    display: block;
    margin-top: 10px;
    font-size: 11px;
    letter-spacing: 1px;
    color: #9aa4b2;
}

.resource-directory {
    background: #fbfaf6;
}

.directory-title {
    font-weight: 800;
    color: #0b1c2d;
}

.directory-subtitle {
    color: #6c7a89;
}

.search-box {
    position: relative;
    max-width: 300px;
    margin-left: auto;
}

.search-box i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #999;
}

.search-box input {
    padding-left: 36px;
    border-radius: 8px;
}

.filter-panel {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
}

.filter-title {
    font-weight: 700;
    margin-bottom: 15px;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-list li {
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    color: #1e2a3a;
}

.filter-list li.active {
    background: #0b1c2d;
    color: #fff;
}

.support-note {
    background: #0b1c2d;
    color: #cfd6df;
    padding: 15px;
    border-radius: 8px;
    font-size: 13px;
}

.resource-card {
    background: #fff;
    border: 1px solid #f0d68a;
    border-radius: 10px;
    padding: 20px;
    height: 100%;
}

.resource-card h5 {
    font-weight: 700;
    margin-top: 10px;
}

.resource-card p {
    font-size: 14px;
    color: #6c7a89;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
}

.icon-box {
    width: 42px;
    height: 42px;
    border: 1px solid #f0d68a;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b1c2d;
}

.tag {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border: 1px solid #f0d68a;
    border-radius: 4px;
    color: #0b1c2d;
}

.launch-link {
    font-size: 13px;
    font-weight: 700;
    color: #0b1c2d;
    text-decoration: none;
}


/* 
direrctory */

.resource-directory {
    background: #fbfaf6;
}

.directory-title {
    font-weight: 800;
    color: #0b1c2d;
}

.directory-subtitle {
    color: #6c7a89;
}

.search-box {
    position: relative;
    max-width: 300px;
    margin-left: auto;
}

.search-box i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #999;
}

.search-box input {
    padding-left: 36px;
    border-radius: 8px;
}

.filter-panel {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
}

.filter-title {
    font-weight: 700;
    margin-bottom: 15px;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-list li {
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    color: #1e2a3a;
}

.filter-list li.active {
    background: #0b1c2d;
    color: #fff;
}

.support-note {
    background: #0b1c2d;
    color: #cfd6df;
    padding: 15px;
    border-radius: 8px;
    font-size: 13px;
}

.resource-card {
    border: 1px solid #eef0f5;
    border-radius: 14px;
    transition: all 0.35s ease;
    cursor: pointer;
    height: 100%;
    background: #fff;
    position: relative;
    overflow: hidden;
}


/* HOVER EFFECT */

.resource-card:hover {
    transform: translateY(-8px) scale(1.02);
    /* BORDER ANIMATION */
    border: 1px solid #1a365d;
    /* GLOW EFFECT */
    box-shadow: 0 15px 35px rgba(26, 54, 93, 0.2);
    background: #ffffff;
    backdrop-filter: blur(6px);
}


/* OPTIONAL: ANIMATED BACKGROUND OVERLAY */

.resource-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #1a365d, #ffc107);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}


/* SHOW COLOR ANIMATION ON HOVER */

.resource-card:hover::before {
    opacity: 0.08;
}


/* KEEP CONTENT ABOVE ANIMATION */

.resource-card * {
    position: relative;
    z-index: 1;
}


/* CARD */


/* TEXT AREA */

.card-text-content {
    flex-grow: 1;
}


/* ICON */

.tool-mono-icon {
    font-size: 26px;
    color: #000;
    opacity: 0.8;
}


/* FILTER PANEL */

.modern-filter-panel {
    border: 1px solid #eef0f5;
}


/* FILTER ITEMS */

.filter-item {
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    color: #444;
    transition: .2s;
}

.filter-item:hover {
    background: #f5f7fb;
    transform: translateX(5px);
}


/* ACTIVE FILTER */

.active-filter {
    background: #1a365d;
    color: white !important;
}


/* CATEGORY BADGE */

.category-badge {
    font-size: 14px;
    padding: 4px 6px;
}


/* RUN BUTTON */

.btn-run {
    display: block;
    width: 90px;
    margin: 0 auto;
    padding: 6px 0;
    font-size: 14px;
    border-radius: 8px;
    background-color: #1a365d;
    color: #fff;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-run:hover {
    background-color: #ffc107;
    color: #000;
    transform: scale(1.05);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
}

.icon-box {
    width: 42px;
    height: 42px;
    border: 1px solid #f0d68a;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b1c2d;
}

.tag {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border: 1px solid #f0d68a;
    border-radius: 4px;
    color: #0b1c2d;
}

.launch-link {
    font-size: 13px;
    font-weight: 700;
    color: #0b1c2d;
    text-decoration: none;
}


/* ----------------articles -----------css */


/* ================= HERO SECTION ================= */

.knowledge-hero {
    background: #F5F7FA;
    padding: 80px 0 60px;
    border-bottom: 1px solid #E5E7EB;
}

.knowledge-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.knowledge-left h1 {
    font-size: 48px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.knowledge-left h1 span {
    color: #F4B400;
    /* golden highlight */
}

.knowledge-left p {
    font-size: 16px;
    color: #6B7280;
    max-width: 520px;
    line-height: 1.6;
}


/* Search Box */

.knowledge-search {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    padding: 12px 16px;
    border-radius: 8px;
    width: 320px;
}

.knowledge-search input {
    border: none;
    outline: none;
    margin-left: 10px;
    width: 100%;
    font-size: 14px;
    color: #374151;
}

.knowledge-search input::placeholder {
    color: #9CA3AF;
}


/* ================= CATEGORY TABS (FIGMA STYLE) ================= */

.knowledge-tabs {
    background: #ffffff;
    padding: 30px 0;
    border-bottom: 1px solid #E5E7EB;
}

.knowledge-tabs .knowledge-container {
    display: flex;
    justify-content: center;
    /* CENTER THE TABS */
}

.knowledge-tabs ul {
    list-style: none;
    display: flex;
    justify-content: center;
    /* CENTER ITEMS */
    align-items: center;
    gap: 50px;
    padding: 0;
    margin: 0;
}

.knowledge-tabs li {
    position: relative;
}

.knowledge-tabs li a {
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #94A3B8;
    padding-bottom: 10px;
    transition: all 0.3s ease;
}


/* ACTIVE TEXT COLOR */

.knowledge-tabs li.active a {
    color: #111827;
}


/* YELLOW UNDERLINE CENTERED */

.knowledge-tabs li.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    /* short underline like figma */
    height: 3px;
    background: #F4B400;
    border-radius: 2px;
}

.knowledge-tabs li a {
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}


/* ================= ARTICLES GRID ================= */

.knowledge-grid {
    background: #FAFAFA;
}

.knowledge-grid .card {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.knowledge-grid .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.card-img-top {
    height: 220px;
    object-fit: cover;
}


/* Category Badge (Top Left Overlay Style) */

.knowledge-grid .badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #111827 !important;
    color: #F4B400;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
}


/* Card Body */

.knowledge-grid .card-body {
    padding: 25px;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.card-text {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
}

.card small {
    font-size: 12px;
    color: #9CA3AF;
}

.knowledge-grid .text-primary {
    color: #111827 !important;
    font-weight: 600;
    font-size: 13px;
}

.knowledge-grid .card {
    position: relative;
}

@media (max-width: 768px) {
    .knowledge-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .knowledge-search {
        width: 100%;
    }
    .knowledge-left h1 {
        font-size: 34px;
    }
}


/* Briefing */

.professional-briefing {
    background: #0b1c2d;
    color: #cfd6df;
    padding: 70px 0;
}

.professional-briefing h2 {
    color: #fff;
    font-weight: 800;
}

.professional-briefing h2 span {
    color: #e0b737;
}

.briefing-list {
    padding-left: 18px;
}

.briefing-list li {
    margin-bottom: 8px;
}

.briefing-box {
    background: #1b2a3d;
    padding: 30px;
    border-radius: 12px;
}

.briefing-box label {
    font-size: 12px;
    text-transform: uppercase;
}

.briefing-btn {
    background: #e0b737;
    color: #0b1c2d;
    font-weight: 700;
}

.briefing-box small {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: 11px;
    color: #9aa4b2;
}


/* CONTAINER */

.knowledge-container {
    max-width: 1216px;
    margin: auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* HERO */

.knowledge-hero {
    padding: 96px 0 64px;
}

.knowledge-left h1 {
    font-family: 'Open Sans', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #1e293b;
}

.knowledge-left h1 span {
    color: #d4af37;
}

.knowledge-left p {
    max-width: 520px;
    margin-top: 12px;
    font-size: 16px;
    line-height: 26px;
    color: #64748b;
}


/* SEARCH */

.knowledge-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 14px 16px;
    border-radius: 8px;
    width: 320px;
}

.knowledge-search input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
}


/* TABS */

.knowledge-tabs {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 48px;
}

.knowledge-tabs ul {
    display: flex;
    gap: 32px;
    list-style: none;
    padding: 0;
}

.knowledge-tabs li {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
    color: #94a3b8;
    padding-bottom: 16px;
    cursor: pointer;
}

.knowledge-tabs li.active {
    color: #d4af37;
    border-bottom: 2px solid #d4af37;
}


/* GRID */

.knowledge-grid .articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}


/* CARD */

.article-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.article-image {
    position: relative;
}

.article-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    background: #0f172a;
    color: #d4af37;
}


/* CONTENT */

.article-content {
    padding: 24px;
}

.article-content .meta {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 12px;
}

.article-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.article-content p {
    font-size: 14px;
    line-height: 22px;
    color: #64748b;
    margin-bottom: 16px;
}

.article-content a {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1e293b;
    text-decoration: none;
}

.site-logo {
    height: 60px;
    /* Adjust size as needed */
    width: auto;
}

.logo-container {
    display: flex;
    align-items: center;
    margin-right: 10px;
    background-color: #FFFFFF;
}


/* ===== COMPREHENSIVE RESPONSIVE STYLES ===== */


/* Add this at the END of your CSS file */


/* Extra large devices (large desktops, 1400px and up) */

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1320px;
    }
    .hero-heading-1-compact,
    .hero-heading-2-compact {
        font-size: 52px;
        line-height: 1.2;
    }
    .stats-section-blue-full-compact {
        max-width: 1300px;
    }
}


/* Large devices (desktops, 1200px to 1399px) */

@media (min-width: 1200px) and (max-width: 1399px) {
    .hero-heading-1-compact,
    .hero-heading-2-compact {
        font-size: 44px;
        line-height: 1.2;
    }
    .hero-heading-2-compact {
        max-width: 80%;
    }
    .stats-section-blue-full-compact {
        max-width: 1140px;
    }
    .stats-container-full-compact {
        gap: 40px;
    }
    .stat-card-compact {
        flex: 0 1 160px;
    }
    .api-tools-header {
        padding-bottom: 30px;
    }
    .workflow-card {
        padding: 28px 24px;
    }
}


/* Medium large devices (desktops, 992px to 1199px) */

@media (min-width: 992px) and (max-width: 1199px) {
    .hero-heading-1-compact,
    .hero-heading-2-compact {
        font-size: 38px;
        line-height: 1.2;
    }
    .hero-heading-2-compact {
        max-width: 75%;
    }
    .search-container-compact {
        max-width: 600px;
    }
    .search-button-full-compact {
        padding: 0 15px;
    }
    .stats-section-blue-full-compact {
        max-width: 960px;
        padding: 0 px 2px;
    }
    .stats-container-full-compact {
        gap: 30px;
    }
    .stat-card-compact {
        flex: 0 1 140px;
    }
    .stat-number-compact {
        font-size: 24px;
    }
    .tool-card {
        min-height: 160px;
    }
    .tool-card h6.fw-semibold {
        font-size: 20px !important;
    }
    .workflow-heading {
        font-size: 32px;
        line-height: 1.3;
    }
    .workflow-card {
        padding: 24px 20px;
    }
    .workflow-card-title {
        font-size: 15px;
    }
    .workflow-card-text {
        font-size: 13px;
    }
    .trust-card {
        padding: 25px 15px;
    }
    .trust-icon {
        font-size: 24px;
    }
    .trust-title {
        font-size: 16px;
    }
    .trust-text {
        font-size: 13px;
    }
    .custom-utility-box {
        padding: 40px 30px;
    }
    .custom-utility-title {
        font-size: 32px;
    }
    .custom-utility-text {
        font-size: 16px;
        max-width: 500px;
    }
}


/* Tablets (768px to 991px) */

@media (min-width: 768px) and (max-width: 991px) {
    /* Hero Section */
    .hero-section {
        padding: 20px 0;
    }
    .hero-heading-1-compact,
    .hero-heading-2-compact {
        font-size: 32px;
        line-height: 1.2;
    }
    .hero-heading-2-compact {
        max-width: 70%;
    }
    .hero-heading-wrapper {
        max-width: 700px;
    }
    /* Search */
    .search-container-compact {
        max-width: 550px;
        margin: 20px auto;
    }
    .search-bar-yellow-compact {
        padding: 3px;
    }
    .search-input-compact {
        padding: 12px 18px;
        font-size: 13px;
    }
    .search-button-full-compact {
        padding: 0 15px;
        font-size: 13px;
    }
    .tag-compact {
        padding: 5px 12px;
        font-size: 11px;
    }
    /* Stats Section */
    .stats-section-blue-full-compact {
        width: 90%;
        padding: 15px 10px;
        border-radius: 30px;
    }
    .stats-container-full-compact {
        gap: 20px;
    }
    .stat-card-compact {
        flex: 0 1 130px;
        min-width: 100px;
    }
    .stat-number-compact {
        font-size: 22px;
    }
    .stat-label-compact {
        font-size: 9px;
        letter-spacing: 0.8px;
    }
    /* Tools Section */
    .api-tools-section {
        padding: 20px 20px 0;
    }
    .api-tools-container {
        padding: 0 20px;
    }
    .api-tools-header {
        padding-bottom: 25px;
    }
    .api-tools-heading {
        font-size: 28px;
        line-height: 1.3;
    }
    .api-tools-subtitle {
        font-size: 16px;
        max-width: 450px;
    }
    .api-inventory-link {
        font-size: 14px;
    }
    .tool-card {
        min-height: 150px;
        padding: 1.25rem !important;
    }
    .tool-card h6.fw-semibold {
        font-size: 20px !important;
    }
    .tool-icon {
        font-size: 1.7rem;
    }
    .text-muted.small {
        font-size: 13px !important;
    }
    .run-btn {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    /* Workflow Section */
    .workflow-section {
        padding: 40px 0;
    }
    .workflow-eyebrow {
        font-size: 10px;
    }
    .workflow-heading {
        font-size: 30px;
        line-height: 1.3;
    }
    .workflow-subtitle {
        font-size: 14px;
        max-width: 550px;
    }
    .workflow-card {
        padding: 24px 20px;
    }
    .workflow-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-bottom: 15px;
    }
    .workflow-card-title {
        font-size: 15px;
    }
    .workflow-card-text {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    .workflow-list li {
        font-size: 12px;
    }
    .workflow-list i {
        font-size: 13px;
        margin-right: 6px;
    }
    /* Trust Section */
    .trust-section {
        padding: 50px 0;
    }
    .trust-card {
        padding: 20px 15px;
    }
    .trust-icon {
        font-size: 24px;
        margin-bottom: 12px;
    }
    .trust-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .trust-text {
        font-size: 13px;
        line-height: 1.5;
    }
    /* Custom Utility */
    .custom-utility-box {
        padding: 35px 30px;
    }
    .custom-utility-title {
        font-size: 30px;
    }
    .custom-utility-text {
        font-size: 15px;
        max-width: 450px;
        margin-bottom: 25px;
    }
    .custom-utility-action {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .custom-utility-input {
        max-width: 100%;
        width: 100%;
    }
    .custom-utility-btn {
        width: auto;
        min-width: 150px;
    }
    .custom-utility-footer {
        font-size: 10px;
    }
    /* Pagination */
    .pagination {
        margin-top: 30px;
    }
}


/* Large phones (576px to 767px) */

@media (min-width: 576px) and (max-width: 767px) {
    /* Hero Section */
    .hero-section {
        padding: 20px 0;
    }
    .main-container {
        padding: 0 20px;
    }
    .hero-heading-1-compact,
    .hero-heading-2-compact {
        font-size: 28px;
        line-height: 1.2;
    }
    .hero-heading-1-compact {
        margin-bottom: 10px;
    }
    .hero-heading-2-compact {
        max-width: 90%;
        font-size: 32px;
    }
    .hero-heading-wrapper {
        max-width: 100%;
    }
    /* Search */
    .search-container-compact {
        max-width: 100%;
        margin: 20px 0;
    }
    .search-bar-yellow-compact {
        flex-direction: column;
        border-radius: 20px;
        padding: 0;
        border: none;
        box-shadow: none;
    }
    .search-input-compact {
        width: 100%;
        border-radius: 30px;
        border: 1.5px solid var(--primary-color);
        margin-bottom: 10px;
        padding: 14px 20px;
        font-size: 14px;
    }
    .search-button-full-compact {
        width: 100%;
        border-radius: 30px;
        padding: 14px 20px;
        justify-content: center;
        font-size: 14px;
    }
    .categories-tags-compact {
        gap: 8px;
        margin-top: 15px;
    }
    .tag-compact {
        padding: 6px 14px;
        font-size: 12px;
    }
    /* Stats Section */
    .stats-section-blue-full-compact {
        width: 95%;
        padding: 20px 10px;
        border-radius: 25px;
        margin: 15px auto;
    }
    .stats-container-full-compact {
        gap: 20px;
    }
    .stat-card-compact {
        flex: 0 1 calc(50% - 20px);
        min-width: auto;
        max-width: 100%;
    }
    .stat-number-compact {
        font-size: 24px;
    }
    .stat-label-compact {
        font-size: 10px;
        letter-spacing: 0.5px;
    }
    /* Tools Section */
    .api-tools-section {
        padding: 20px 15px 0;
    }
    .api-tools-container {
        padding: 0;
    }
    .api-tools-header {
        padding-bottom: 20px;
    }
    .api-tools-header .row {
        flex-direction: column;
    }
    .api-tools-header .col-md-8,
    .api-tools-header .col-md-4 {
        width: 100%;
        text-align: left !important;
    }
    .api-tools-heading {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 8px;
    }
    .api-tools-subtitle {
        font-size: 15px;
        max-width: 100%;
        margin-bottom: 15px;
    }
    .api-inventory-link {
        font-size: 14px;
        margin-bottom: 10px;
        display: inline-block;
    }
    .tool-card {
        min-height: 145px;
        padding: 1.25rem !important;
    }
    .tool-card h6.fw-semibold {
        font-size: 20px !important;
    }
    .tool-icon {
        font-size: 1.6rem;
    }
    /* Workflow Section */
    .workflow-section {
        padding: 35px 0;
    }
    .workflow-eyebrow {
        font-size: 10px;
    }
    .workflow-heading {
        font-size: 28px;
        line-height: 1.3;
    }
    .workflow-subtitle {
        font-size: 14px;
        max-width: 100%;
        padding: 0 15px;
    }
    .workflow-card {
        padding: 24px 20px;
        margin-bottom: 15px;
    }
    .workflow-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .workflow-card-title {
        font-size: 16px;
    }
    .workflow-card-text {
        font-size: 13px;
        line-height: 1.5;
    }
    /* Trust Section */
    .trust-section {
        padding: 40px 0;
    }
    .trust-section .row {
        gap: 20px;
    }
    .trust-card {
        padding: 25px 20px;
        margin-bottom: 0;
    }
    .trust-icon {
        font-size: 26px;
    }
    .trust-title {
        font-size: 16px;
    }
    .trust-text {
        font-size: 13px;
        max-width: 400px;
        margin: 0 auto;
    }
    /* Custom Utility */
    .custom-utility-box {
        padding: 35px 20px;
    }
    .custom-utility-title {
        font-size: 28px;
    }
    .custom-utility-text {
        font-size: 15px;
        max-width: 100%;
        margin-bottom: 25px;
    }
    .custom-utility-action {
        flex-direction: column;
        gap: 15px;
    }
    .custom-utility-input {
        max-width: 100%;
        width: 100%;
        padding: 12px 15px;
    }
    .custom-utility-btn {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    .custom-utility-footer {
        font-size: 10px;
    }
    /* Pagination */
    .pagination {
        margin-top: 25px;
    }
    .pagination .page-link {
        padding: 0.5rem 0.75rem;
        font-size: 14px;
    }
}


/* Small phones (up to 575px) */

@media (max-width: 575px) {
    /* Hero Section */
    .hero-section {
        padding: 15px 0;
    }
    .main-container {
        padding: 0 15px;
    }
    .hero-heading-1-compact,
    .hero-heading-2-compact {
        font-size: 24px;
        line-height: 1.2;
    }
    .hero-heading-1-compact {
        margin-bottom: 8px;
        font-size: 28px;
    }
    .hero-heading-2-compact {
        max-width: 100%;
        font-size: 26px;
    }
    .hero-heading-wrapper {
        max-width: 100%;
    }
    /* Search */
    .search-container-compact {
        max-width: 100%;
        margin: 15px 0;
    }
    .search-bar-yellow-compact {
        flex-direction: column;
        border-radius: 20px;
        padding: 0;
        border: none;
        box-shadow: none;
    }
    .search-input-compact {
        width: 100%;
        border-radius: 25px;
        border: 1.5px solid var(--primary-color);
        margin-bottom: 10px;
        padding: 14px 18px;
        font-size: 14px;
    }
    .search-button-full-compact {
        width: 100%;
        border-radius: 25px;
        padding: 14px 18px;
        justify-content: center;
        font-size: 14px;
    }
    .categories-tags-compact {
        gap: 6px;
        margin-top: 12px;
    }
    .tag-compact {
        padding: 5px 12px;
        font-size: 11px;
    }
    /* Stats Section */
    .stats-section-blue-full-compact {
        width: 100%;
        padding: 15px 8px;
        border-radius: 20px;
        margin: 10px auto;
    }
    .stats-container-full-compact {
        gap: 15px;
    }
    .stat-card-compact {
        flex: 0 1 calc(50% - 15px);
        min-width: auto;
        max-width: 100%;
    }
    .stat-number-compact {
        font-size: 22px;
    }
    .stat-label-compact {
        font-size: 9px;
        letter-spacing: 0.5px;
        white-space: normal;
    }
    /* Tools Section */
    .api-tools-section {
        padding: 20px 15px 0;
    }
    .api-tools-container {
        padding: 0;
    }
    .api-tools-header {
        padding-bottom: 20px;
    }
    .api-tools-header .row {
        flex-direction: column;
    }
    .api-tools-header .col-md-8,
    .api-tools-header .col-md-4 {
        width: 100%;
        text-align: left !important;
    }
    .api-tools-heading {
        font-size: 26px;
        line-height: 1.2;
        margin-bottom: 6px;
    }
    .api-tools-subtitle {
        font-size: 14px;
        max-width: 100%;
        margin-bottom: 12px;
    }
    .api-inventory-link {
        font-size: 13px;
        margin-bottom: 8px;
        display: inline-block;
    }
    .row.g-3 {
        margin: -8px;
    }
    .row.g-3>[class*="col-"] {
        padding: 8px;
    }
    .tool-card {
        min-height: 140px;
        padding: 1rem !important;
    }
    .tool-card .d-flex.align-items-start.mb-2 {
        margin-bottom: 0.5rem !important;
    }
    .tool-card h6.fw-semibold {
        font-size: 20px !important;
    }
    .tool-icon {
        font-size: 1.5rem;
    }
    .text-muted.small {
        font-size: 12px !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.4;
    }
    .run-btn {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    /* Workflow Section */
    .workflow-section {
        padding: 30px 0;
    }
    .workflow-eyebrow {
        font-size: 9px;
        letter-spacing: 1.5px;
    }
    .workflow-heading {
        font-size: 24px;
        line-height: 1.3;
        margin-top: 8px !important;
    }
    .workflow-subtitle {
        font-size: 13px;
        max-width: 100%;
        padding: 0 10px;
        line-height: 1.5;
    }
    .workflow-section .row.g-4 {
        margin-top: 20px;
    }
    .workflow-card {
        padding: 22px 18px;
        margin-bottom: 10px;
    }
    .workflow-icon {
        width: 38px;
        height: 38px;
        font-size: 17px;
        margin-bottom: 12px;
    }
    .workflow-card-title {
        font-size: 15px;
        margin-bottom: 8px;
    }
    .workflow-card-text {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 12px;
    }
    .workflow-list li {
        font-size: 11px;
        margin-bottom: 6px;
    }
    .workflow-list i {
        font-size: 12px;
        margin-right: 5px;
    }
    /* Trust Section */
    .trust-section {
        padding: 30px 0;
    }
    .trust-section .row {
        gap: 15px;
    }
    .trust-card {
        padding: 20px 15px;
        margin-bottom: 0;
    }
    .trust-icon {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .trust-title {
        font-size: 15px;
        margin-bottom: 6px;
    }
    .trust-text {
        font-size: 12px;
        line-height: 1.5;
        max-width: 280px;
        margin: 0 auto;
    }
    /* Custom Utility */
    .custom-utility-box {
        padding: 30px 15px;
        border-radius: 12px;
    }
    .custom-utility-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .custom-utility-text {
        font-size: 13px;
        line-height: 1.5;
        max-width: 100%;
        margin-bottom: 20px;
    }
    .custom-utility-action {
        flex-direction: column;
        gap: 12px;
    }
    .custom-utility-input {
        max-width: 100%;
        width: 100%;
        padding: 12px 15px;
        font-size: 14px;
    }
    .custom-utility-btn {
        width: 100%;
        max-width: 180px;
        margin: 0 auto;
        padding: 10px 20px;
        font-size: 14px;
    }
    .custom-utility-footer {
        font-size: 9px;
        margin-top: 8px;
    }
    .alert-success {
        font-size: 13px;
        padding: 0.5rem;
    }
    /* Pagination */
    .pagination {
        margin-top: 20px;
    }
    .pagination .page-link {
        padding: 0.4rem 0.65rem;
        font-size: 13px;
    }
    /* Container padding adjustments */
    .container,
    .container-fluid {
        padding-right: 12px;
        padding-left: 12px;
    }
    /* Footer responsiveness (if needed) */
    .footer-container {
        padding: 30px 15px 0;
    }
    .footer-column {
        margin-bottom: 20px;
    }
    .footer-heading {
        margin-bottom: 1rem;
    }
    .footer-link-item {
        font-size: 12px;
        padding: 4px 0;
    }
    .social-icons-simple {
        justify-content: center;
        gap: 20px;
    }
    .horizontal-bar {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .trademark-text {
        font-size: 10px;
    }
}


/* Extra small phones (up to 375px) */

@media (max-width: 375px) {
    .hero-heading-1-compact {
        font-size: 24px;
    }
    .hero-heading-2-compact {
        font-size: 22px;
    }
    .stat-card-compact {
        flex: 0 1 100%;
    }
    .stat-number-compact {
        font-size: 26px;
    }
    .tool-card h6.fw-semibold {
        font-size: 18px !important;
    }
    .tool-icon {
        font-size: 1.3rem;
    }
    .workflow-heading {
        font-size: 22px;
    }
    .custom-utility-title {
        font-size: 22px;
    }
    .custom-utility-btn {
        max-width: 160px;
    }
}


/* Landscape orientation fixes */

@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        padding: 15px 0;
    }
    .stats-section-blue-full-compact {
        margin: 10px auto;
    }
    .workflow-section {
        padding: 25px 0;
    }
    .trust-section {
        padding: 25px 0;
    }
}


/* Print styles */

@media print {
    .navbar,
    .footer-container,
    .search-container-compact,
    .custom-utility-box,
    .btn,
    .pagination {
        display: none !important;
    }
    body {
        background: white;
        color: black;
    }
    .container {
        width: 100%;
        max-width: 100%;
    }
}


/* ===============================
   GLOBAL PAGINATION STYLING
================================= */

.pagination {
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    justify-content: center;
}

.pagination .page-link {
    border: none;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #1a365d;
    background: #f5f7fb;
    min-width: 48px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.pagination .page-link:hover {
    background: #1a365d;
    color: #fff;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 18px rgba(26, 54, 93, 0.25);
}

.pagination .active .page-link {
    background: #1a365d;
    color: #fff;
    font-weight: 600;
    transform: scale(1.08);
    box-shadow: 0 10px 22px rgba(26, 54, 93, 0.35);
}

.pagination .page-link:active {
    transform: scale(0.95);
}

.pagination .disabled .page-link {
    background: #e9ecef;
    color: #aaa;
    cursor: not-allowed;
    opacity: 0.6;
}

.pagination .page-link[rel="prev"],
.pagination .page-link[rel="next"] {
    font-size: 17px;
    font-weight: 600;
}


/* WRAPPER IMPROVEMENT */


/* WRAPPER */

.pagination {
    gap: 18px;
    /* more space between items */
    padding: 4px 5px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}


/* BUTTONS */

.pagination .page-link {
    border: none;
    padding: 12px 18px;
    /* increased size */
    border-radius: 12px;
    font-size: 15px;
    /* slightly bigger text */
    font-weight: 500;
    color: #1a365d;
    background: #f5f7fb;
    min-width: 48px;
    /* consistent width */
    height: 44px;
    /* consistent height */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}


/* HOVER */

.pagination .page-link:hover {
    background: #1a365d;
    color: #fff;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 18px rgba(26, 54, 93, 0.25);
}


/* ACTIVE */

.pagination .active .page-link {
    background: #1a365d;
    color: #fff;
    font-weight: 600;
    transform: scale(1.08);
    box-shadow: 0 10px 22px rgba(26, 54, 93, 0.35);
}


/* CLICK */

.pagination .page-link:active {
    transform: scale(0.95);
}


/* DISABLED */

.pagination .disabled .page-link {
    background: #e9ecef;
    color: #aaa;
    cursor: not-allowed;
    opacity: 0.6;
}


/* PREV/NEXT */

.pagination .page-link[rel="prev"],
.pagination .page-link[rel="next"] {
    font-size: 17px;
    font-weight: 600;
}


/* CLICK FEEDBACK */

.pagination .page-link:active {
    transform: scale(0.95);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}


/* DISABLED */

.pagination .disabled .page-link {
    background: #e9ecef;
    color: #aaa;
    cursor: not-allowed;
    opacity: 0.6;
}


/* PREV/NEXT BUTTONS (OPTIONAL POLISH) */

.pagination .page-link[rel="prev"],
.pagination .page-link[rel="next"] {
    font-size: 16px;
    font-weight: 600;
}


/* SMOOTH APPEAR ANIMATION */

.pagination {
    animation: fadeSlideUp 0.4s ease;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}