/* Tools Page Main Styles - Adhaarprintosp.in */

/* Base Styles */
.tools-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* Header Section */
.tools-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eaeaea;
}

.tools-header h1 {
    font-size: 2.5rem;
    color: #1a3c6e;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.tools-header .subtitle {
    color: #555;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Tool Card */
.tool-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.tool-icon {
    background-color: #f2f7ff;
    padding: 1.5rem 0;
    text-align: center;
}

.tool-icon i {
    font-size: 2.5rem;
    color: #1a3c6e;
}

.tool-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.tool-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #1a3c6e;
}

.tool-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.tool-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a3c6e;
    color: white;
    padding: 0.75rem;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.tool-button i {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.tool-button:hover {
    background-color: #0d2a56;
}

.tool-button:hover i {
    transform: translateX(3px);
}

/* Featured Section */
.tools-featured {
    background: linear-gradient(135deg, #1a3c6e, #2a5ca5);
    border-radius: 10px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.featured-tag {
    position: absolute;
    top: 0;
    right: 2rem;
    background-color: #ff6b35;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 85%, 0 100%);
    height: 2.5rem;
}

.featured-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.featured-button {
    display: inline-block;
    background-color: white;
    color: #1a3c6e;
    padding: 0.8rem 1.5rem;
    margin-top: 1rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* SEO Content */
.tools-seo {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 2.5rem;
}

.seo-content h2 {
    color: #1a3c6e;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.seo-content h3 {
    color: #1a3c6e;
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

.seo-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #444;
}

.seo-content a {
    color: #2a5ca5;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.seo-content a:hover {
    color: #1a3c6e;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.benefit-item {
    background-color: white;
    border-radius: 8px;
    padding: 1.2rem 1rem;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.benefit-item i {
    display: block;
    font-size: 1.5rem;
    color: #1a3c6e;
    margin-bottom: 0.5rem;
}

.benefit-item span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    margin: 2rem 0;
}

.faq-item {
    margin-bottom: 1.5rem;
    background: white;
    border-radius: 8px;
    padding: 1.2rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    font-size: 1.1rem;
    color: #1a3c6e;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.faq-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .tools-header h1 {
        font-size: 2rem;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .tools-featured {
        padding: 2rem;
    }
}

@media screen and (max-width: 576px) {
    .tools-header {
        margin-bottom: 2rem;
    }
    
    .tools-header h1 {
        font-size: 1.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .tools-featured {
        padding: 1.5rem;
    }
    
    .featured-content h2 {
        font-size: 1.5rem;
    }
}