﻿/* ==== Tools Section ==== */
.tools__item {
    background-color: #fff;
    border-radius: 16px;
    border: 2px solid #3498db;
    padding: 50px;
    margin: 3px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 370px;
}

    .tools__item:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .tools__item a {
        text-decoration: none;
        color: inherit;
        display: block;
    }

.tools__item__icon {
    margin-bottom: 15px;
}

    .tools__item__icon svg {
        width: 70px;
        height: 70px;
    }

.tools__item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.tools__item__content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}

/* Responsive layout */
.tools__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px;
}
.custom-bg {
    background: linear-gradient(to bottom right, skyblue, lightgreen);
}

.custom-upload-box {
    background: linear-gradient(to bottom right, #0d47a1, #64b5f6);
    Dark Blue → Light Blue color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
    max-width: 600px;
    margin: auto;
}

    .custom-upload-box h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .custom-upload-box input[type="file"] {
        padding: 10px;
        background-color: white;
        color: #0d47a1;
        border: none;
        border-radius: 8px;
        margin-top: 20px;
    }

.dropdown-item:hover {
    background-color: #f0f8ff;
    border-radius: 5px;
    color: #007bff;
}

.dropdown-icon-red {
    color: #e74c3c;
}

.dropdown-icon-blue {
    color: #3498db;
}

.dropdown-icon-green {
    color: #2ecc71;
}
.dropdown-icon-orange {
    color: #FFA500;  
}

.dropdown-icon-gold {
    color: #FFD700;  
}

.dropdown-icon-lime {
    color: #00FF00;  
}

.dropdown-icon-cyan {
    color: #00FFFF; 
}

.dropdown-icon-magenta {
    color: #FF00FF; 
}

.dropdown-icon-turquoise {
    color: #40E0D0;  
}

.dropdown-icon-deepskyblue {
    color: #00BFFF;  
}

.dropdown-icon-tomato {
    color: #FF6347;  
}

.dropdown-icon-dodgerblue {
    color: #1E90FF; 
}

.dropdown-icon-chartreuse {
    color: #7FFF00; 
}

.dropdown-icon-hotpink {
    color: #FF69B4;  
}

.dropdown-icon-yellowgreen {
    color: #9ACD32;  
}

.dropdown-icon-mediumorchid {
    color: #BA55D3; 
}

.dropdown-icon-springgreen {
    color: #00FF7F; 
}

.dropdown-icon-coral {
    color: #FF7F50; 
}
