/* Main styles for All in One Tools */

:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Logo styling */
.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

/* Search Results Styling */
.search-result-item {
    transition: background-color 0.2s ease;
}

.search-result-item:hover {
    background-color: #f0f8ff;
}

.search-result-item a {
    display: block;
    color: #333;
}

/* Card Hover Effects */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Tool-specific styles */
.tool-header {
    background-color: rgba(13, 110, 253, 0.1);
    border-left: 5px solid var(--primary-color);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

/* Custom button styles */
.btn-technova {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-technova:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    color: white;
}

/* Footer styling */
footer {
    border-top: 5px solid var(--primary-color);
}

.contact-info {
    background-color: rgba(13, 110, 253, 0.05);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0b5ed7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card {
        margin-bottom: 20px;
    }
    
    .tool-header {
        padding: 15px;
    }
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* Card Styles */
.card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 10px;
    overflow: hidden;
    border: none;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-body {
    padding: 2rem;
}

/* Button Styles */
.btn {
    border-radius: 5px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

/* Icon Styles */
.fas, .fab {
    transition: transform 0.3s;
}

.card:hover .fas, .card:hover .fab {
    transform: scale(1.2);
}

/* Header Styles */
header {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

header h1 {
    font-weight: 700;
}

footer a:hover {
    opacity: 0.8;
}

/* Tool Card Specific */
.tool-card {
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

.tool-card .tool-icon {
    margin-bottom: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    header .lead {
        font-size: 0.9rem;
    }
    
    .card-body {
        padding: 1.5rem;
    }
}

/* Add styles for ad containers */
.ad-container {
    margin: 20px 0;
    min-height: 100px;
    background-color: #f9f9f9;
    border-radius: 5px;
    padding: 10px;
    overflow: hidden;
}

.in-content-ad {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

/* Ad labels */
.ad-container::before {
    content: "Advertisement";
    display: block;
    text-align: center;
    font-size: 10px;
    color: #757575;
    margin-bottom: 5px;
} 