body {
    background: #f8f9fa;
    width: 100%;
}

[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition-property: opacity, transform;
    transition-duration: 0.6s;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

/* Hover color effect */
.navbar-nav .nav-link {
    transition: color 0.3s ease;

}

.navbar-nav .nav-item:hover .nav-link {
    color: black !important;
}

.dropdown-convert {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1050;
    background: #fff;
    display: none;
    padding: 40px 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    width: 100%;
}

.dropdown-convert {
    width: auto;
    min-width: 400px;
    /* background: #343a40; */
    color: #fff;
    padding: 10px;
}

.nav-item.position-relative:hover .dropdown-convert,
.nav-item.position-relative:hover .dropdown-all-tools {
    display: block;
    animation: fadeInUp 0.3s ease-in-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-convert h6,
.dropdown-all-tools h6 {
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    /* color: #bbb; */
    color: rgba(0, 0, 0, 0.468);
    margin-bottom: 15px;
}

.dropdown-convert .dropdown-item,
.dropdown-all-tools .dropdown-item {
    font-size: 0.92rem;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease-in-out;
}

.dropdown-all-tools .dropdown-item:hover,
.dropdown-convert .dropdown-item:hover {
    color: black;
    transform: translateX(4px);
}

.dropdown-convert i,
.dropdown-all-tools i {
    font-size: 18px;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

/* Show dropdown on hover for large screens only */
@media (min-width: 992px) {
    #convertDropdownWrapper:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        /* Remove gap to prevent flicker */
    }
}

.hero {
    /* background: linear-gradient(to right, #ec407a, #42a5f5); */
    background: linear-gradient(135deg, #005b96, #009fc2);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}

@media (max-width: 767.98px) {
    .hero h1 {
        font-size: 22px;
        /* line-height: 34px; */
    }

    .hero h2 {
        font-size: 17px;
    }
}

.tool-card {
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border-radius: 15px;
}

.tool-card:hover {
    border: 5px;
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.tool-icon {
    font-size: 40px;
    color: #0d6efd;
    transition: color 0.3s;
}

.tool-card:hover .tool-icon {
    color: #dc3545;
}

.trusted-section {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}

/* 🔹 Glowing Gradient Icon */
.gradient-glow-icon {
    font-size: 2.2rem;
    animation: gradientGlow 2s ease-in-out infinite alternate;
}

@keyframes gradientGlow {
    from {
        text-shadow: 0 0 5px #009fc2, 0 0 10px #005b96;
        color: #ffffff;
    }

    to {
        text-shadow: 0 0 15px #00c6ff, 0 0 30px #0073e6;
        color: #f0faff;
    }
}

.custom-blue-btn {
    background-color: #005b96;
    color: white;
    border: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.custom-blue-btn:hover {
    background-color: #00457a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 91, 150, 0.3);
}


footer {
    background: #343a40;
    color: white;
    padding: 20px 0;
}

footer .container a.text-decoration-none:hover {
    text-decoration: underline !important;
}

footer .container a.text-decoration-none {
    transition: text-decoration 0.2s ease-in-out;
}



/* .footer-title {
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-link {
    color: #adb5bd;
    text-decoration: none;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

.divider {
    border-top: 1px solid #dee2e6;
    margin: 60px 0;
}

.btn-hero {
    margin-top: 20px;
    font-size: 1.1rem;
    padding: 10px 30px;
} */