
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #eaeaea;
    background-color: #121212;
}

.hero-tools {
    position: relative;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1; 
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ff8800;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-content .btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    background: #ff8800;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero-content .btn:hover {
    background: #ff5500;
    transform: scale(1.1);
}



.tools-section {
    background: #1f1f1f;
    padding: 4rem 0;
    text-align: center;
}

.tools-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ff8800;
}


.tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.tool-card {
    background: #292929;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    color: #fff;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(255, 136, 0, 0.5);
}


.tool-card img.tool-image {
    width: 100%;
    height: auto;
    border-bottom: 4px solid #ff8800;
    transition: transform 0.3s ease-in-out;
}

.tool-card:hover img.tool-image {
    transform: scale(1.05);
}

.tool-card-content {
    padding: 1.5rem;
}

.tool-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ff8800;
}

.tool-card-content p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 1.5rem;
}


.tool-card-content .btn {
    padding: 0.8rem 1.5rem;
    background: #ff5500;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(255, 85, 0, 0.4);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.tool-card-content .btn:hover {
    background: #ff8800;
    box-shadow: 0 6px 25px rgba(255, 136, 0, 0.5);
}


@media (max-width: 768px) {
    .hero-tools h1 {
        font-size: 2.5rem;
    }

    .hero-tools p {
        font-size: 1.2rem;
    }

    .tools-section h2 {
        font-size: 2.5rem;
    }
}

.testimonials-section {
    background: #292929;
    padding: 4rem 2rem;
    color: #fff;
    text-align: center;
}

.testimonials-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ff8800;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.testimonial-card {
    background: #1f1f1f;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-text {
    font-style: italic;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #ff8800;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    color: #ff8800;
}











/* Media Queries */
@media (max-width: 768px) {
   
    .testimonials-section .section-title {
        font-size: 1.8rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    .testimonial-text {
        font-size: 0.8rem;
    }

    .testimonial-author h4 {
        font-size: 0.9rem;
    }

    .testimonial-avatar {
        width: 40px;
        height: 40px;
    }
}































.footer {
    background: linear-gradient(to right, #181717, #121212);
    color: #fff;
    padding: 20px 0;
    font-size: 14px;
}

.footer-container {
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 50px;
    margin-right: 10px;
    color: #ff8800;
}

.footer-logo h2 {
    margin: 0;
    font-size: 24px;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    margin-bottom: 20px;
}

.footer-column {
    flex: 1;
    padding: 0 10px;
}

.footer-column h3 {
    font-size: 18px;
    border-bottom: 2px solid #ff8800;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ff8800;
}

.footer-column ul li i {
    margin-right: 8px;
}

.footer-social {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-social a {
    margin: 0 10px;
    font-size: 24px;
    color: #fff;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #ff8800;
}

.footer-credits {
    text-align: center;
}

.footer-credits p {
    margin: 0;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        padding: 10px 0;
    }
}




.navbar-link::after {
    background-color: #ff8800!important; 
}
.navbar-link:hover {
    color: #ff8800!important;
}

.navbar-signup {
    background-color: #ff8800 !important;
}
.navbar-signup:hover {
   color: #fff !important;
}

.dropdown-menu li a:hover {
    color:#ff8800 !important;
}