
        :root {
            --bg-dark: #0a0404;
            --bg-card: #262626;
            --bg-inner-card: #0a2a3d;
            --accent-gold: #83c46f;
            --text-light: #ffffff;
            --text-muted: #b3b3b3;
            --border-color: #333333;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            padding-bottom: 50px;
        }

        /* --- Header Top Bar --- */
        header {
            background-color: #0b0b0b;
            border-bottom: 1px solid var(--border-color);
            padding: 15px 20px;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .logo-placeholder {
            font-size: 22px;
            font-weight: bold;
            color: var(--text-light);
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .logo-placeholder span {
            color: var(--accent-gold);
        }

        .top-nav-tabs {
            display: flex;
            gap: 10px;
        }

        .nav-tab {
            background-color: #222;
            color: var(--text-muted);
            padding: 8px 16px;
            text-decoration: none;
            border-radius: 4px;
            font-size: 14px;
            font-weight: bold;
            border: 1px solid #444;
            cursor: pointer;
        }
        
        .nav-tab.active {
            color: var(--accent-gold);
            background-color: #2b2615;
            border-color: var(--accent-gold);
        }

        /* --- Filter / Search Bar --- */
        .search-strip {
            background-color: #222;
            padding: 15px 20px;
            border-bottom: 1px solid var(--border-color);
        }

        .search-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .search-container select, 
        .search-container input {
            background-color: #111;
            color: white;
            border: 1px solid #444;
            padding: 10px;
            border-radius: 4px;
            font-size: 14px;
            min-width: 140px;
            flex: 1;
        }

        /* --- Main Layout Split --- */
        .main-content {
            max-width: 1400px;
            margin: 30px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 30px;
        }

        /* --- Left Column: Listings --- */
        .listings-heading h1 {
            font-size: 28px;
            margin-bottom: 10px;
        }
        
        .listings-heading p {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 25px;
        }
        
        .listings-heading p a {
            color: var(--accent-gold);
            text-decoration: none;
        }

        .listing-card {
            background-color: var(--bg-inner-card);
            border: 1px solid #4a4329;
            border-radius: 4px;
            padding: 20px;
            margin-bottom: 20px;
            display: flex;
            gap: 20px;
        }

        .image-gallery-box {
            display: flex;
            gap: 8px;
            flex-shrink: 0;
        }

        .main-preview-img {
            width: 160px;
            height: 180px;
            background-color: #444;
            border-radius: 4px;
            object-fit: cover;
        }

        .thumbnail-stack {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .thumb-img {
            width: 45px;
            height: 56px;
            background-color: #555;
            border-radius: 2px;
            object-fit: cover;
        }

        .card-details {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .card-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .card-desc {
            color: #e0e0e0;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        /* --- NEW: Contact & Share Section --- */
        .contact-share-wrapper {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid var(--border-color);
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .btn-contact {
            flex: 1;
            background-color: #25D366; /* WhatsApp Green */
            color: #fff;
            border: none;
            padding: 10px 15px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            transition: opacity 0.2s;
            font-size: 14px;
        }

        .btn-call {
            background-color: #007bff; /* Call Blue */
        }

        .btn-share {
            background-color: #444;
            color: #fff;
        }

        .btn-contact:hover {
            opacity: 0.8;
        }

        /* --- Right Column: Sidebar Panels --- */
        .sidebar-panel {
            background-color: transparent;
        }

        .update-item {
            border-bottom: 1px solid var(--border-color);
            padding: 15px 0;
        }

        .update-title {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 8px;
        }
        
        .update-title a {
            color: var(--accent-gold);
            text-decoration: none;
            font-weight: bold;
        }

        .update-body {
            display: flex;
            gap: 10px;
        }

        .update-thumb {
            width: 40px;
            height: 50px;
            background-color: #444;
            border-radius: 3px;
            flex-shrink: 0;
            object-fit: cover;
        }

        .update-text {
            font-size: 12px;
            color: #ccc;
            line-height: 1.4;
        }

        /* --- Image Folder Section Styles --- */
        .image-folder-section {
            max-width: 1400px;
            margin: 30px auto;
            padding: 0 20px;
            display: none;
        }

        .folder-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .folder-card {
            background-color: var(--bg-inner-card);
            border: 1px solid #4a4329;
            border-radius: 6px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.2s ease, border-color 0.2s ease;
        }

        .folder-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-gold);
        }

        .folder-card img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            display: block;
        }

        .folder-info {
            padding: 15px;
            text-align: center;
        }

        .folder-info h3 {
            font-size: 16px;
            color: var(--text-light);
            margin-bottom: 5px;
        }

        .folder-info p {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* =========================================
           RESPONSIVE MEDIA QUERIES (Tablet & Mobile)
           ========================================= */

        /* --- Tablet (up to 992px) --- */
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr; /* Stacks main content and sidebar */
            }
            .search-container input, 
            .search-container select {
                flex: 1 1 45%; 
            }
        }

        /* --- Mobile (up to 576px) --- */
        @media (max-width: 576px) {
            .header-container {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .top-nav-tabs {
                width: 100%;
                justify-content: center;
            }
            .search-container {
                flex-direction: column;
            }
            .search-container input, 
            .search-container select {
                width: 100%;
            }
            .listing-card {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .contact-share-wrapper {
                width: 100%;
                flex-direction: column; /* Stacks buttons on mobile */
            }
            .folder-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); 
            }
        }

footer {
            background-color: #080808;
            border-top: 1px solid var(--border-color);
            margin-top: auto;
            padding: 40px 20px 20px 20px;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-col h4 {
            font-size: 18px;
            color: var(--accent-gold);
            margin-bottom: 15px;
            border-bottom: 2px solid var(--accent-gold);
            display: inline-block;
            padding-bottom: 5px;
        }

        .footer-col p,
        .footer-col li {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.8;
            list-style: none;
        }

        .footer-col a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-col a:hover {
            color: var(--accent-gold);
        }

        .footer-contact-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 20px;
            border-top: 1px solid #222222;
            text-align: center;
            color: #666666;
            font-size: 13px;
        }


.search-tags {
    font-size: 11px;
    color: #333333; /* Very dim color matching a dark background */
    text-align: center;
    margin-top: 20px;
    opacity: 0.5; /* Makes it faint */
    transition: opacity 0.3s ease;
}

.search-tags:hover {
    opacity: 1; /* Becomes visible only when hovered */
}

.search-tags a {
    color: #444444; /* Dim link color */
    text-decoration: none;
    margin: 0 4px;
}

.search-tags a:hover {
    color: #83c46f;
}


/* Container Constraint & Card Styling */
.animated-text-card {
  width: 100%;
  max-width: 500px;
  height: 280px;
  margin: 40px auto;
  padding: 24px;
  box-sizing: border-box;

  /* Typography */
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.8;
  color: #f8fafc;
  text-align: left;

  /* Glassmorphism Styling */
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
              0 0 20px rgba(99, 102, 241, 0.2);

  /* Scrollable setup for 100 words */
  overflow-y: auto;
}

/* Base style for EVERY word span */
.animated-text-card span {
  display: inline-block;
  opacity: 0;
  transform: translateY(15px) scale(0.9);
  filter: blur(4px);
  
  /* Staggered entry animation using inline --i variable */
  animation: wordReveal 0.5s cubic-bezier(0.2, 0.65, 0.35, 1) forwards;
  animation-delay: calc(var(--i) * 0.12s); /* Delay between each word */
}

/* Special Highlight & Pause Effect for Comma-Separated Words */
.animated-text-card span.comma {
  color: #38bdf8; /* Bright Cyan Highlight */
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
  margin-right: 6px; /* Extra spacing after commas */
}

/* Keyframes for the Word Entrance */
@keyframes wordReveal {
  0% {
    opacity: 0;
    transform: translateY(15px) scale(0.8);
    filter: blur(4px);
  }
  70% {
    transform: translateY(-2px) scale(1.05); /* Soft spring bounce */
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Custom Scrollbar */
.animated-text-card::-webkit-scrollbar {
  width: 5px;
}

.animated-text-card::-webkit-scrollbar-track {
  background: transparent;
}

.animated-text-card::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #6366f1, #38bdf8);
  border-radius: 10px;
}





/*Animated code*/


        /* Mobile Responsiveness */
        @media (max-width: 576px) {
            .search-tags {
                padding: 12px 15px;
                gap: 8px;
            }

            .search-tags span {
                width: 100%; /* Force label to own line on small screens */
                margin-bottom: 4px;
            }

            .search-tags a {
                font-size: 12px;
                padding: 5px 12px;
            }
        }

        @media (max-width: 576px) {
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-col h4 {
                display: block;
            }

            .footer-contact-list li {
                justify-content: center;
            }
        }
   
