body {
    font-family: Arial, sans-serif;
    background-color: #261680d0;
}

.navbar-brand span {
    color: blue; font-family: 'Courier New', Courier, monospace;
}

.hero-banner {
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: white;
}

.hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-text .logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.5rem;
}

section {
    padding: 60px 0;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

p {
    font-size: 1.2rem;
}

.statistic {
    margin: 20px 0;
}

.statistic h3 {
    font-size: 2.5rem;
}

.statistic p {
    font-size: 1.2rem;
}

.bg-primary {
    background-color: #00d9ff67 !important;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.rounded {
    border-radius: 0.25rem !important;
}

.text-white {
    color: #fff !important;
}

        /* Custom Styles */
        .navbar-brand .logo {
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        .carousel-item {
            height: 90vh;
            background-size: cover;
            background-position: center;
        }

        .carousel-caption {
            background: rgba(0, 0, 0, 0.164);
            padding: 1rem;
            border-radius: 10px;
        }

        .service-box {
            transition: transform 0.3s;
        }

        .service-box:hover {
            transform: translateY(-10px);
        }

        .footer {
            background: #333;
            color: #fff;
            padding: 2rem 0;
        }

        .footer a {
            color: #fff;
        }

        .footer .social-icons a {
            margin: 0 10px;
            color: #fff;
        }

        .scroll-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #007bff;
            color: #fff;
            border: none;
            border-radius: 50%;
            padding: 10px 15px;
            cursor: pointer;
            display: none;
        }

        .scroll-to-top:hover {
            background: #0056b3;
        }
