:root {
  --primary-color: #4a6bff;
  --accent-color: #3a4fd9;
  --secondary-color:#692424
  --card-bg: #ffffff;
  --text-color: #333333;
  --border-width: 2px;
  --glow-size: 4px;
  --category-color: #4a6bff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 html, body {
        overflow-x: hidden;
        width: 100%;
    }
body {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, Roboto, sans-serif;
  line-height: 1.6;
  background-color: #FFFFFF;
  color: #000000;
}
a {
  text-decoration: none;
}
.main-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 16px;
}

/* ========================= TYPOGRAPHY ========================= */
h1, h2 {
  text-align: center;
  color: #000000;
}

h1 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 2.5rem;
}

h2 {
  margin-bottom: 24px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.eye-catching-subheading {
  font-size: 1.5rem;
  text-align: center;
  color: #000000;
  opacity: 0.9;
  margin-bottom: 50px;
}

/* ========================= BUTTONS ========================= */
.btn {
  display: block;
  width: 100%;
  max-width: 240px;
  padding: 14px 24px;
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  margin: 20px auto;
  transition: background-color 0.3s ease;
}

.btn:active { transform: scale(0.98); }
.btn-primary { background-color: #007bff; }
.btn-primary:hover { background-color: #0056b3; }
.btn-success { background-color: #28a745; }
.btn-success:hover { background-color: #218838; }
.btn-danger { background-color: #dc3545; }
.btn-danger:hover { background-color: #c82333; }
.btn-warning { background-color: #fd7e14; }
.btn-warning:hover { background-color: #e8590c; }
.btn-info { background-color: #17a2b8; }
.btn-info:hover { background-color: #117a8b; }
.btn-dark { background-color: #343a40; }
.btn-dark:hover { background-color: #1d2124; }

/* Back to Top Button */
    .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background: #ffffff;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        cursor: pointer;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
        z-index: 999;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    .back-to-top.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .back-to-top:hover {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

/* Advanced Settings Toggle */
.button-wrapper {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

#advanced-settings-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  padding: 12px 24px;
  background: linear-gradient(135deg, #6e8efb, #4a6cf7);
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(74, 108, 247, 0.25);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  width: auto;
  margin-bottom: 16px;
}

#advanced-settings-toggle:hover {
  background: linear-gradient(135deg, #5d7df5, #3a5ce4);
  box-shadow: 0 6px 16px rgba(74, 108, 247, 0.4);
  transform: translateY(-2px);
}

#advanced-settings-toggle:active { transform: translateY(0) scale(0.98); }

#advanced-settings-toggle .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}

/* ========================= UPLOAD BOX ========================= */
.upload-container { 
  max-width: 500px;
  width: 100%;
  margin: 30px auto;
  padding: 0 16px;
  text-align: center;
}

.upload-box {
  border: 2px solid #000;               /* black border */
  border-radius: 12px;                  /* rounded corners */
  padding: 30px 25px;
  transition: all 0.3s ease;
  background-color: #ffffff;            /* white card background */
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15); /* subtle shadow */
}

/* Hover effect */
.upload-box:hover,
.upload-box.dragover {
  border-color: #4a6bff;                /* blue highlight */
  box-shadow: 0 12px 30px rgba(74,107,255,0.25);
  transform: translateY(-3px);          /* slight lift */
}

.upload-icon {
  font-size: 60px;                      /* bigger icon */
  color: #4a6bff;                        /* blue icon */
  margin-bottom: 25px;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.upload-icon:hover {
  color: #3a4fd9;                        /* darker on hover */
  transform: scale(1.2);
}

.upload-text,
.upload-box p {
  font-size: 22px;                      /* bigger text */
  color: #1e293b;                        /* dark text for contrast */
  font-weight: 700;                     /* bold text */
  margin-bottom: 20px;
  user-select: none;
}

.upload-btn {
  background-color: #4a6bff;            /* blue button */
  color: #ffffff;                        /* white text */
  font-size: 18px;                       /* bigger font */
  font-weight: 700;                      /* bold */
  padding: 8px 12px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
  cursor: pointer;
}

.upload-btn:hover {
  background-color: #3a4fd9;            /* darker blue on hover */
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

/* ========================= Dragover ========================= */
.upload-box.dragover {
  border-color: #4a6bff;
  background: rgba(74, 107, 255, 0.08);
}
/* ========================= CRITICAL NAVBAR STYLES ========================= */

#navbar-host {
    position: relative;
    z-index: 1000;
    height: 82px;
    width: 100%;
}

/* Premium Loading Animation */
#navbar-host:empty {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    overflow: hidden;
}

#navbar-host:empty::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        #667eea 0%,
        #764ba2 25%,
        #667eea 50%,
        #764ba2 75%,
        #667eea 100%
    );
    background-size: 400% 100%;
    animation: gradient-flow 3s ease-in-out infinite;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

#navbar-host:empty::after {
    content: '';
    width: 140px;
    height: 24px;
    background: linear-gradient(90deg,
        rgba(255,255,255,0.2) 25%,
        rgba(255,255,255,0.4) 50%,
        rgba(255,255,255,0.2) 75%);
    background-size: 200% 100%;
    border-radius: 4px;
    animation: shimmer 1.5s infinite;
    position: relative;
    z-index: 1;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes pulse-opacity {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* ================= NAVBAR CORE ================= */

.navbar {
    height: 82px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100% !important;
    overflow: visible !important;
    transition: all 0.3s ease;
}

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

/* CONTAINER */
.navbar .nav-container {
    width: 100%;
    height: 100%;
    padding: 6px 20px;
}

/* NAV CONTENT (merged base + override) */
.navbar .nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative; /* override preserved */
}

/* LOGO (merged base + desktop override handled below) */
.navbar .logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    white-space: nowrap;
    margin-right: 12px;
}

/* ACTION WRAPPER */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ACTION ICONS (merged normal + final fix) */
.nav-actions .action-icons {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* ICON BUTTON */
.nav-actions .icon-btn {
    flex: 0 0 auto;
    padding: 6px 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
}

.nav-actions .icon-btn svg {
    width: 20px;
    height: 20px;
    color:#FFFFFF;
}

/* DESKTOP NAV (base hidden) */
.navbar .desktop-nav {
    display: none;
    gap: 20px;
    white-space: nowrap;
}

/* NAV LINK */
.navbar .nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    border-radius: 8px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.navbar .nav-link svg {
    width: 28px;
    height: 28px;
    fill: white;
    transition: fill 0.25s ease;
}

/* ================= MOBILE MENU CORE ================= */
/* MOBILE MENU BUTTON */
.navbar .mobile-menu-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 6px;
    margin-left: auto; /* Align to right */
}

/* MOBILE MENU */
.navbar .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100% !important;
    background: #ffffff;
    transform: translateX(-100%);
    transition: 0.3s ease;
    z-index: 99999;
    overflow-x: hidden !important;
    overflow-y: auto;
}

/* OPEN STATE */
.navbar .mobile-menu.open {
    transform: translateX(0);
}

/* MOBILE TOP BAR */
.mobile-menu-top {
    background: #f5f5f7;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* MOBILE TOP LOGO */
.mobile-menu-top .logo-text {
    color: #000 !important;
    font-size: 1.15rem;
    font-weight: 700;
}

/* MOBILE MENU CLOSE BUTTON */
#close-mobile-menu {
    background: #f0f0f0;           /* light circular background */
    border: none;
    border-radius: 50%;             /* circular shape */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0;                   /* hide default ✕, we'll use pseudo-elements */
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2); /* subtle shadow */
    position: relative;             /* needed for pseudo-elements */
}

/* Hover effect */
#close-mobile-menu:hover {
    background: #333;               /* dark background on hover */
    color: #fff;                    /* cross turns white */
    transform: scale(1.1);          /* subtle zoom effect */
}

/* Cross lines using pseudo-elements */
#close-mobile-menu::before,
#close-mobile-menu::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: currentColor;
    top: 50%;
    left: 50%;
    transform-origin: center;
    transition: all 0.3s ease;
}

#close-mobile-menu::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

#close-mobile-menu::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* MOBILE SEARCH BAR (MENU INSIDE ONLY) */
.mobile-search {
    padding: 10px 18px;
    background: #f3f4f6;
    border-radius: 40px;
    margin: 20px;
    display: flex;
    gap: 8px;
}

.mobile-search input {
    width: 100%;
    border: none;
    outline: none;
    background: none;
    font-size: 1rem;
}

/* MOBILE NAV – FULL AUTO SCROLL */
.mobile-nav {
    max-height: calc(100vh - 180px);
    overflow-y: auto;
    padding-bottom: 40px;
}

.mobile-nav::-webkit-scrollbar {
    width: 4px;
}

.mobile-nav::-webkit-scrollbar-thumb {
    background: #9ca3af;
    border-radius: 4px;
}

/* MOBILE NAV LINKS – BIGGER + BOLD (UNIVERSAL) */
.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 22px;
    font-size: 1.20rem !important;
    font-weight: 700 !important;
    color: #000000;
    text-decoration: none;
}

.mobile-nav-link svg {
    width: 28px !important;
    height: 28px !important;
}

/* MOBILE SOCIAL ICONS */
.mobile-social {
    display: flex;
    gap: 16px;
    padding: 20px;
}

.mobile-social svg {
    width: 26px;
    height: 26px;
}

/* REMOVE MOBILE SEARCH TOP RIGHT ICON */
.nav-actions .search-container {
    display: none; /* Mobile search handled in menu only */
}

/* =========================================================
   DEFAULT (MOBILE + TABLET: 0px – 1024px)
   ========================================================= */

/* Show mobile buttons */
.navbar .mobile-menu-btn,
.navbar .mobile-search {
    display: flex;
}
/* ================= DESKTOP ================= */

@media (min-width: 1025px) {

    .navbar .desktop-nav {
        display: flex;
        gap: 24px;
        align-items: center;
        flex-wrap: nowrap;
        position: absolute;      /* merged override */
        left: 50%;               /* merged override */
        transform: translateX(-50%); /* merged override */
    }

    .navbar .mobile-menu-btn,
    .navbar .mobile-search {
        display: none;
    }

    .navbar .nav-content {
        padding: 0 20px;
    }

    .navbar .nav-link {
        font-size: 1.12rem;
        font-weight: 650;
        letter-spacing: 0.3px;
    }

    .navbar .logo-text {
        font-size: 1.45rem;
        font-weight: 800;
    }
}

/* ================= HOVER ================= */

@media (hover: hover) {
    .navbar .nav-link:hover {
        background: rgba(255, 255, 255, 0.12);
        transform: translateY(-1px);
    }

    .navbar .nav-link:hover svg {
        fill: #dc2626;
    }
}
/* =========================================================
      PREMIUM SEARCH MODAL 
   ========================================================= */

/* 1. Light Overlay  */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Light premium overlay */
    background: rgba(15, 23, 42, 0.45); 
    z-index: 999999;
    display: none; 
    padding: 10px;
    align-items: flex-start;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
    /* Blur nikaal diya hai taake page clean lage */
    backdrop-filter: none;
}

/* 2. Container - 600px Limited & Responsive */
.search-container {
    background: #ffffff;
    width: 100%;
    max-width: 600px;
    margin-top: 50px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    max-height: 80vh;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* 3. Header - Specific to avoid clashing */
.search-container .search-header {
    display: flex;
    padding: 12px 15px;
    border-bottom: 1px solid #edf2f7;
    align-items: center;
    background: #ffffff;
    flex-shrink: 0;
}

/* Input Specificity Fix */
.search-header input#globalSearchInput {
    flex: 1;
    border: none !important;
    outline: none !important;
    font-size: 16px;
    padding: 10px;
    color: #1a202c;
    background: transparent;
}

/* Close Button Fix - Using ID to ensure footer icons don't change */
#closeSearch {
    background: #f1f5f9;
    border: none !important;
    width: 32px;
    height: 32px;
    border-radius: 50% !important;
    cursor: pointer;
    font-size: 16px;
    color: #4a5568;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    margin: 0 !important;
    /* Resetting any global button styles */
    min-width: auto !important;
    min-height: auto !important;
}

/* 4. Results List - Internal Scroll Only */
.search-results-list {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    background: #ffffff;
    -webkit-overflow-scrolling: touch;
}

/* 5. Search Items - Styling only inside modal */
.search-container .search-item {
    display: flex;
    flex-direction: column;
    padding: 12px 16px;
    text-decoration: none;
    border-bottom: 1px solid #f8fafc;
    transition: background 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.search-container .search-item:last-child { border-bottom: none; }
.search-container .search-item:hover { background: #f1f5f9; }

.search-container .search-item strong {
    color: #667eea;
    font-size: 15px;
    margin-bottom: 2px;
    display: block;
}

.search-container .search-item span {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: bold;
}

/* Scrollbar Styling */
.search-results-list::-webkit-scrollbar { width: 5px; }
.search-results-list::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 10px;
}

/* 6. Body Lock Fix */
body.modal-open {
    overflow: hidden !important;
    height: 100vh;
}

/* 7. Mobile Friendly */
@media (max-width: 640px) {
    .search-container {
        margin-top: 20px;
        width: calc(100% - 10px);
        max-height: 85vh;
    }
}
/* =========================================================
   ✅ Hard-Isolated Footer (No parent effect possible) 
   ========================================================= */
/* =========================
   FINAL MERGED FOOTER CSS
========================= */

#site-footer {
    width: 100%;
    background: #111;
    color: #fff;
    padding: 80px 10% 40px;
    font-family: 'Poppins', sans-serif;
}

/* Container */
#site-footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Logo section */
#site-footer .footer-logo h2 {
    font-weight: 600;
    margin-bottom: 10px;
}

#site-footer .footer-logo p {
    color: #bbb;
    font-size: 14px;
}

/* Columns */
#site-footer .footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 8px;
}

/* Sub heading */
#site-footer .sub-heading {
    display: block;
    margin: 15px 0 8px;
    font-weight: 600;
    font-size: 14px;
}

/* Links */
#site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#site-footer ul li {
    margin-bottom: 10px;
}

#site-footer ul li a {
    color: #b0bfc6;
    text-decoration: none;
    font-size: 14px;
}

#site-footer ul li a:hover {
    color: #fff;
}

/* CTA Buttons */
#site-footer .cta-buttons {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#site-footer .btn {
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
}

#site-footer .btn-light {
    background: #cbd5e0;
    color: #222;
}

#site-footer .btn-outline {
    border: 1px solid #fff;
    color: #fff;
}

/* Bottom */
#site-footer .footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 13px;
    color: #aaa;
}

/* Social */
#site-footer .social-icons {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

#site-footer .social-icons a {
    color: #fff;
    font-size: 18px;
}

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

/* Tablet */
@media (max-width: 992px) {
    #site-footer .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small mobile */
@media (max-width: 359px) {
    #site-footer .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ========================= TOOLS GRID ========================= */
          /* ============== RELATED TOOLS ===========*/

.tool-category {
  max-width: 1200px;          /* same as features / faq */
  margin: 40px auto;
   padding: 0 16px; 
  box-sizing: border-box;
  overflow-x: hidden;
  text-align: center;
}

.tools-grid {
  display: grid;
  width: 100%;
  gap: 20px;                  /* SAME visual gap as feature-grid */
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

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

.tool-card {
  position: relative;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-radius: 20px;
  margin: 0.5rem;             /* CRITICAL → same visual spacing */
  padding: 16px; 
  text-decoration: none;
  color: #1a1a1a;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  overflow: hidden;
  z-index: 1;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-6px);   /* same lift as feature cards */
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* ========================= ICON ========================= */

.tool-card i,
.tool-card svg {
  display: block;
  margin: 0 auto 0.6rem;
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.tool-card:hover i,
.tool-card:hover svg {
  transform: scale(1.1);
}

/* ========================= TEXT ========================= */

.tool-card h3 {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* ========================= ICON SIZES ========================= */

.icon-sm { width: 30px; height: 30px; }
.icon-md { width: 40px; height: 40px; }
.icon-lg { width: 70px; height: 70px; }
.icon-xl { width: 100px; height: 100px; }

.icon-primary { fill: var(--primary-color); }
.icon-accent { fill: var(--accent-color); }

/* ========== 1. PAGE CONTAINER (scope wrapper) ========== */
.art-page {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

 /* Universal image — works everywhere, always responsive */
        .prox-image {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 0 auto;
            border-radius: 1rem;
            box-shadow: 0 8px 20px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.03);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .prox-image:hover {
            transform: scale(1.005);
            box-shadow:  0 20px 40px rgba(0,0,0,0.08), 0 4px 8px rgba(0,0,0,0.04);
        }

        /* Caption — universal, always consistent */
        .prox-caption {
            margin-top: 0.75rem;
            font-size: 0.875rem;
            color: #6b6b6b;
            font-family: -apple-system, 'Inter', 'SF Pro Text', system-ui, sans-serif;
            text-align: center;
            letter-spacing: 0.01em;
            line-height: 1.45;
        }

/* ========== 2. ARTICLE CONTAINER (No border, just max-width + spacing) ========== */
.art-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ========== 3. TYPOGRAPHY ========== */
.art-page .art-h2 {
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.art-page .art-h3 {
  font-size: 1.9rem;
  font-weight: 700;
  margin: 2rem 0 1.2rem 0;
  letter-spacing: -0.01em;
  border-left: 5px solid #3b82f6;
  padding-left: 1.2rem;
  color: #0f172a;
}

.art-page .art-h4 {
  font-weight: 700;
  font-size: 1.35rem;
  margin: 1.5rem 0 0.75rem 0;
  color: #1e293b;
}

.art-page .art-text-large {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #334155;
}

/* ========== 4. CARDS & SECTIONS (Unified Hover Effect) ========== */

/* 1. Main Card */
.art-card {
  background: #f8fafc;
  border-radius: 28px;
  overflow: hidden; 
  box-shadow: box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  padding:8px 12px;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}
.art-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.15);
  background: #f8fafc;;
}

/* 2. Quick Answer */
.art-quick-answer {
  background: #eef2ff;
  border-left: 6px solid #3b82f6;
  padding: 1.4rem 1.8rem;
  border-radius: 20px;
  margin: 1.8rem 0;
  font-weight: 500;
  color: #1e293b;
  transition: all 0.3s ease;
}
.art-quick-answer:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.1);
  background: #e6edff;
}

/* 3. Steps Grid (Step by Step Guide) */
.art-steps-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.art-step-item {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: flex-start;
  border-bottom: 1px solid #e9edf2;
  padding-bottom: 1.2rem;
  transition: all 0.3s ease;
  border-radius: 16px;
  padding: 1rem;
  margin: -0.5rem;
}
.art-step-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.art-step-number {
  background: #1e293b;
  color: white;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: background 0.2s;
}
.art-step-item:hover .art-step-number {
  background: #3b82f6;
}
.art-step-content {
  flex: 1;
}
.art-step-title {
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: #0f172a;
}

/* 4. Features Grid */
.art-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.6rem;
  margin: 1.8rem 0;
}
.art-feature-item {
  background: #f9fafb;
  padding: 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid #edf2f7;
}
.art-feature-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  border-color: #cbd5e1;
}
.art-feature-item strong {
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.6rem;
  color: #0f172a;
}

/* 5. Use Case Card */
.art-usecase-card {
  background: #fffbeb;
  border-radius: 24px;
  padding: 1.3rem;
  margin: 1.8rem 0;
  border: 1px solid #fde68a;
  transition: all 0.3s ease;
}
.art-usecase-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 15px 30px -12px rgba(245, 158, 11, 0.15);
  background: #fffef5;
}

/* 6. FAQ Section */
.art-faq-list {
  margin: 1.5rem 0;
}
.art-faq-entry {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  padding: 1rem;
/* margin: 0 -1rem 1.5rem -1rem; */
  border-radius: 16px;
  transition: all 0.3s ease;
}
.art-faq-entry:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.1);
  background: #fafbfc;
}
.art-faq-question {
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: #0c4a6e;
}
.art-faq-entry:hover .art-faq-question {
  color: #2563eb;
}

/* 7. Conclusion Section */
.art-conclusion {
  background: linear-gradient(135deg, #0f172a, #1e2a3a);
  border-radius: 28px;
  padding: 1.5rem;
  margin: 2.5rem 0;
  color: white;
  text-align: center;
  transition: all 0.3s ease;
}
.art-conclusion:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #1e293b, #0f172a);
}
.art-conclusion p {
  color: #e2e8f0;
  font-size: 1rem;
  line-height: 1.6;
}

/* ========== 5. RESPONSIVE ========== */
@media (max-width: 768px) {
  .art-page .art-h2 {
    font-size: 1.8rem;
  }
  .art-features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .art-page .art-h3 {
    font-size: 1.3rem;
    padding-left: 0.8rem;
  }
  .art-step-item {
    gap: 0.8rem;
  }
}

/* ========================= MEDIA QUERIES ========================= */

/* ========================= RESPONSIVE GRID ========================= */

@media (max-width: 359px) {
  .tools-grid { grid-template-columns: 1fr; }
}

@media (min-width: 360px) and (max-width: 599px) {
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 600px) and (max-width: 799px) {
  .tools-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 800px) and (max-width: 1099px) {
  .tools-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1100px) {
  .tools-grid { grid-template-columns: repeat(5, 1fr); }
}

/* Mobile Typography & Layout (≤768px) */
@media (max-width: 768px) {
  h1, h2 { font-size: 2rem; }
  .eye-catching-subheading {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-align: justify;
  }
  .upload-container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 5px;
  }
  .upload-box {
    padding: 10px 8px !important;
    transform: scale(0.95);
  }
  .upload-icon {
    font-size: 28px !important;
    margin-bottom: 10px;
  }
  .upload-text {
    font-size: 13px !important;
    margin-bottom: 8px;
  }
}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
  h1, h2 { font-size: 1.8rem; }
  .eye-catching-subheading {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-align: justify;
  }
}
