

section#search-section {
    margin: 30px 0 0 0;
}
/* ==========================================
   SEARCH DROPDOWN STYLES
   ========================================== */
.search-wrapper-dropdown {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.search-box-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 16px 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.search-box-dropdown:focus-within {
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.25);
    transform: translateY(-2px);
}

.search-box-dropdown .search-icon {
    color: #667eea;
    margin-right: 12px;
    flex-shrink: 0;
}

.search-input-dropdown {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: #2d3748;
    background: transparent;
}

.search-input-dropdown::placeholder {
    color: #a0aec0;
}

.search-clear-btn {
    background: #f7fafc;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #718096;
}

.search-clear-btn:hover {
    background: #e2e8f0;
    color: #2d3748;
}

.search-dropdown-results {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    max-height: 500px;
    overflow-y: auto;
    z-index: 1000;
}

.dropdown-results-list {
    padding: 8px;
}

.dropdown-tool-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 12px;
    text-decoration: none;
    color: #2d3748;
    transition: all 0.2s;
    margin-bottom: 4px;
}

.dropdown-tool-item:hover {
    background: #f7fafc;
    transform: translateX(4px);
}

.dropdown-tool-icon {
    font-size: 28px;
    margin-right: 16px;
    flex-shrink: 0;
}

.dropdown-tool-info {
    flex: 1;
    min-width: 0;
}

.dropdown-tool-name {
    font-weight: 600;
    font-size: 15px;
    color: #2d3748;
    margin-bottom: 2px;
}

.dropdown-tool-desc {
    font-size: 13px;
    color: #718096;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-tool-arrow {
    color: #cbd5e0;
    font-size: 18px;
    margin-left: 12px;
}

.dropdown-no-results {
    padding: 40px 20px;
    text-align: center;
}

.no-results-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.dropdown-no-results p {
    color: #718096;
    margin: 0;
}

/* ==========================================
   TOOLS SHOWCASE STYLES
   ========================================== */
.tools-showcase-section {
    padding: 80px 0;
}

.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-main {
    font-size: 42px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.title-icon {
    font-size: 42px;
}

.section-subtitle {
    font-size: 18px;
    color: #718096;
    margin: 0;
}

.tools-showcase-grid {
    display: grid;
	grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.tool-showcase-card {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 28px 24px;
    text-decoration: none;
    color: #2d3748;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tool-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.2);
}

.tool-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tool-card-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.tool-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
}

.tool-card-desc {
    font-size: 14px;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.tool-card-arrow {
    color: #667eea;
    font-weight: 600;
    font-size: 14px;
}

.section-footer-center {
    text-align: center;
    margin-top: 40px;
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-view-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title-main {
        font-size: 32px;
        flex-direction: column;
    }
    
    .tools-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .search-dropdown-results {
        max-height: 400px;
    }
}






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

.category-tools-section {
    padding: 60px 20px;
    background: white;
}

.category-tools-header {
    text-align: center;
    margin-bottom: 50px;
}

.category-section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tools-count-badge {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
}

.category-section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.tool-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 25px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tool-card:hover::before {
    transform: scaleX(1);
}

.tool-card:hover {
    border-color: var(--primary-purple);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.tool-card-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.tool-card-content {
    flex: 1;
}

.tool-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.tool-card-description {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 15px;
}

.tool-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.tool-card-badge {
    font-size: 12px;
    font-weight: 700;
    color: #10b981;
    background: #d1fae5;
    padding: 4px 12px;
    border-radius: 12px;
}

.tool-card-arrow {
    color: var(--primary-purple);
    transition: transform 0.3s ease;
}

.tool-card:hover .tool-card-arrow {
    transform: translateX(5px);
}

/* No Results Messages */
.no-tools-found,
.no-search-results {
    text-align: center;
    padding: 80px 20px;
}

.no-tools-icon,
.no-results-icon {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-tools-found h3,
.no-search-results h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.no-tools-found p,
.no-search-results p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 25px;
}

/* ========================================
   RELATED CATEGORIES
   ======================================== */

.related-categories-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.related-categories-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.related-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.related-category-card {
    padding: 30px 25px;
    border-radius: 16px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.related-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.related-cat-icon {
    font-size: 48px;
}

.related-cat-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.related-cat-content p {
    font-size: 14px;
    opacity: 0.9;
}

.related-categories-action {
    text-align: center;
    margin-top: 40px;
}
@media (max-width:480px){
		
	.category-tools-section {
		padding: 60px 0px;
		background: white;
	}
	.related-categories-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	.related-category-card {
        padding: 15px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }
	.related-cat-content h3 {
		font-size: 18px;
		font-weight: 700;
		margin-bottom: 5px;
		line-height: 20px;
	}
	.tools-showcase-grid {
        grid-template-columns: 2fr;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        text-align: center;
    }
	.tool-showcase-card {
		padding: 15px;
		gap: 0px;
		flex-direction: column;
	}
	.tool-card-icon {
		font-size: 32px;
		margin-bottom: 0px;
	}
	.tool-card-title {
		font-size: 18px;
		line-height: 22px;
		margin-bottom: 5px;
	}
	.tool-card-desc {
		font-size: 14px;
		line-height: 18px;
	}
	.stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0px;
    }
	.stat-content-new h3 {
        font-size: 18px;
        line-height: 20px;
    }
	.card-label {
		font-size: 16px;
		font-weight: 600;
		opacity: 0.9;
	}
}

@media (max-width:767px) and (min-width:481px) {
	
	.category-tools-section {
		padding: 60px 0px;
		background: white;
	}
	.related-categories-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 10px;
	}
	.related-category-card {
        padding: 15px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }
	.related-cat-content h3 {
		font-size: 18px;
		font-weight: 700;
		margin-bottom: 5px;
		line-height: 20px;
	}
	.tools-showcase-grid {
        grid-template-columns: 2fr;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        text-align: center;
    }
	.tool-showcase-card {
		padding: 15px;
		gap: 0px;
		flex-direction: column;
	}
	.tool-card-icon {
		font-size: 32px;
		margin-bottom: 0px;
	}
	.tool-card-title {
		font-size: 18px;
		line-height: 22px;
		margin-bottom: 5px;
	}
	.tool-card-desc {
		font-size: 14px;
		line-height: 18px;
	}
	.stats-wrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        padding: 0px;
    }
	.stat-content-new h3 {
        font-size: 18px;
        line-height: 20px;
    }
	.card-label {
		font-size: 16px;
		font-weight: 600;
		opacity: 0.9;
	}
	.features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
}
@media (max-width:1024px) and (min-width:768px) {
	.category-tools-section {
		padding: 60px 0px;
		background: white;
	}
	.related-categories-grid {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 10px;
	}
	.related-category-card {
        padding: 15px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }
	.related-cat-content h3 {
		font-size: 18px;
		font-weight: 700;
		margin-bottom: 5px;
		line-height: 20px;
	}
	.tools-showcase-grid {
        grid-template-columns: 2fr;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        text-align: center;
    }
	.tool-showcase-card {
		padding: 15px;
		gap: 5px;
		flex-direction: column;
	}
	.tool-card-icon {
		font-size: 40px;
		margin-bottom: 0px;
	}
	.tool-card-title {
		font-size: 18px;
		line-height: 22px;
		margin-bottom: 5px;
	}
	.tool-card-desc {
		font-size: 14px;
		line-height: 18px;
	}
	.stats-wrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        padding: 0px;
    }
	.stat-content-new h3 {
        font-size: 18px;
        line-height: 20px;
    }
	.features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        padding: 0px;
	}	
	.feature-card {
		padding: 20px;
	}
	.feature-icon {
		font-size: 32px;
		margin-bottom: 5px;
	}
	.feature-card h3 {
		font-size: 20px;
		font-weight: 700;
		margin-bottom: 6px;
		line-height: 26px;
	}
	.feature-card p {
		line-height: 20px;
	}
	.stat-box-new {
		padding: 20px;
		border-radius: 20px;
		display: flex;
		align-items: center;
		gap: 5px;
		flex-direction: column;
		text-align: center;
	}
	.stat-icon-new {
		font-size: 32px;
	}
	.card-label {
		font-size: 18px;
		font-weight: 600;
		opacity: 0.9;
	}
}
@media (max-width:1280px) and (min-width:1024px) {
	.stat-box-new {
		padding: 15px;
		gap: 10px;
	}
	.stat-icon-new {
		font-size: 32px;
	}
	.category-tools-section {
		padding: 60px 0px;
		background: white;
	}
	.related-categories-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
	.related-category-card {
        padding: 15px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }
	.related-cat-content h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 5px;
        line-height: 26px;
    }
	.tools-showcase-grid {
        grid-template-columns: 2fr;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        text-align: center;
    }
	.tools-showcase-section {
		padding: 80px 20px;
	}
	.tool-showcase-card {
		padding: 15px;
		gap: 10px;
		flex-direction: column;
	}
	.tool-card-icon {
		font-size: 40px;
		margin-bottom: 5px;
	}
	.tool-card-title {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 5px;
    }
	.tool-card-desc {
        font-size: 18px;
        line-height: 22px;
    }
	.stats-wrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        padding: 0 20px;
    }
	.stat-content-new h3 {
        font-size: 22px;
        line-height: 26px;
    }
	.stat-content-new p {
		font-size: 16px;
	}
	.features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        padding: 0px;
	}	
	.feature-card {
		padding: 20px;
	}
	.feature-icon {
		font-size: 42px;
		margin-bottom: 5px;
	}
	.feature-card h3 {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 6px;
        line-height: 38px;
    }
	.feature-card p {
		line-height: 22px;
	}	
	.card-label {
		font-size: 20px;
		font-weight: 600;
		opacity: 0.9;
	}
}
@media (min-width:1280px) and (max-width:1400px) {
	.stat-box-new {
		padding: 30px;
		gap: 10px;
	}
	.stat-icon-new {
		font-size: 32px;
	}
	.category-tools-section {
		padding: 60px 0px;
		background: white;
	}
	.related-categories-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
	.related-category-card {
        padding: 25px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }
	.related-cat-content h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 5px;
        line-height: 26px;
    }
	.tools-showcase-grid {
        grid-template-columns: 2fr;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        text-align: center;
    }
	.tools-showcase-section {
		padding: 80px 20px;
	}
	.tool-showcase-card {
		padding: 25px;
		gap: 10px;
		flex-direction: column;
	}
	.tool-card-icon {
		font-size: 40px;
		margin-bottom: 5px;
	}
	.tool-card-title {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 5px;
    }
	.tool-card-desc {
        font-size: 18px;
        line-height: 22px;
    }
	.stats-wrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        padding: 0 20px;
    }
	.stat-content-new h3 {
        font-size: 22px;
        line-height: 26px;
    }
	.stat-content-new p {
		font-size: 16px;
	}
	.features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        padding: 0px;
	}	
	.feature-card {
		padding: 20px;
	}
	.feature-icon {
		font-size: 42px;
		margin-bottom: 5px;
	}
	.feature-card h3 {
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 6px;
        line-height: 38px;
    }
	.feature-card p {
		line-height: 22px;
	}	
	.card-label {
		font-size: 20px;
		font-weight: 600;
		opacity: 0.9;
	}	
}











/* ===== MORE SITES SECTION ===== */
.more-sites-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.more-sites-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.site-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.site-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.site-card-icon {
    font-size: 2.2rem;
    line-height: 1;
}

.site-card-content h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 6px 0;
}

.site-card-content p {
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.site-card-arrow {
    color: #7c83fd;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: auto;
}

.site-card:hover .site-card-arrow {
    color: #a78bfa;
}

/* More Sites - section title override for dark bg */
.more-sites-section .section-title-main,
.more-sites-section .section-subtitle {
    color: #fff;
}

.more-sites-section .section-subtitle {
    color: rgba(255,255,255,0.65);
}

/* Responsive */
@media (max-width: 900px) {
    .more-sites-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .more-sites-grid {
        grid-template-columns: 1fr;
    }
}