body {
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
   }

.hero {
    color: white;
    padding: 120px 0;
    text-align: center;
}

.service-icon {
    font-size: 40px;
    color: #dc3545;
}

.feature-box {
    padding: 20px;
    transition: transform .3s;
    border-bottom:1px solid rgb(10, 0, 0);
}

.feature-box:hover {
    transform: translateY(-5px);
}

.testimonial {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.achievement {
    background: #dc3545;
    color: white;
    padding: 40px 0;
}

a {
    text-decoration: none;
}

.footer .footer-item .btn-link {
    line-height: 35px;
    color: rgba(255, 255, 255, .5);
    transition: 0.5s;
}

.footer .footer-item .btn-link:hover {
    color: var(--bs-secondary) !important;
}

.footer .footer-item p.mb-4 {
    line-height: 35px;
}

.mega-menu {
    left: 0;
    right: 0;
    display: block;
    /* keep layout intact */
    opacity: 0;
    /* hidden initially */
    transform: translateY(15px);
    /* slide down effect */
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
.webbanner
{
    padding:250px 0;
}
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 1;
        left: 0;
        right: 0;
        transform: translateY(0);
        visibility: visible;
    }
        
}
.navbar-dark .navbar-nav .nav-link {
    color: #f7f6f6;
    /* white text */
    transition: 0.3s;
    
}

/* Hover color */
.navbar-dark .navbar-nav .nav-link:hover {
    color: #ff0000;
    /* red on hover */
}

/* Active link color */
.navbar-dark .navbar-nav .nav-link.active {
    color: #ff0000;
    /* red for active page */
    font-weight: bold;
}

/* Dropdown item colors */
.dropdown-menu .dropdown-item {
    color: #212529;
    /* normal black */
    transition: 0.3s;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #ff0000;
    /* red background */
    color: #fff;
    /* white text on hover */
}

/* Optional: change the button border color */
.navbar-dark .navbar-toggler {
    border: 2px solid red;
    box-shadow: none;


}
.parallax-section {
    background: url('assets/images/hero-image3.jpg') no-repeat center center;
    background-attachment: fixed;
    background-size: cover;
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    /* center text */
    justify-content: center;
    text-align: center;
}

.parallax-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.parallax-section .container {
    position: relative;
    z-index: 2;
}

.product-img {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-img img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.product-item:hover .product-img img {
   transform: scale(1.1);
    /* Zoom effect */
}

.product-item:hover .product-img {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    /* Glow shadow */
}
.step {
    text-align: center;
    position: relative;
}

.step .circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #dee2e6;
    margin: 0 auto;
    line-height: 50px;
    font-size: 20px;
    font-weight: bold;
    color: #495057;
    transition: all 0.3s;
}

.step.active .circle {
    background: #dc3545;
    color: #fff;
}

.step .label {
    margin-top: 10px;
    font-weight: 600;
    font-size: 15px;
}

.line {
    position: absolute;
    top: 25px;
    left: 50%;
    height: 4px;
    width: 100%;
    background: #dee2e6;
    z-index: -1;
}
