body, html {
    height: 100%;
    margin: 0;
    font-family: 'Arial', sans-serif;
    scroll-behavior: smooth;
    cursor: url('/comp.png'), auto;
}
html{
    cursor: url('/comp.png'),auto;
}


/* Navbar Styling */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    
}

.nav-link {
    font-size: 1rem;
    color: #fff !important;
    margin-top: -10px;
    background-color: transparent;
    padding: 10px;
}
.navbar-nav .nav-item .nav-link {
 
    border-bottom: 1px solid black; /* Adds horizontal lines between menu items */
    
  }

.nav-link:hover {
    color: red !important;
}

/* Video Background Styling */
.video-background {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.content {
    z-index: 1;
    margin-top: 60px; /* Adjusted for fixed navbar */
}

h1 span {
    color: red;
    font-weight: bold;
}

p {
    max-width: 600px;
    margin: 20px auto;
    font-size: 1.2rem;
}
.dropdown-item:hover{
   background-color: red;
}
.dropdown-item::after{
    background-color: red;
}

ul li:hover ul.dropdown {
    display: block;
}
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* Removes the slight gap between the dropdown trigger and the dropdown menu */
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.card-text {
    font-size: 1rem;
}

.icon img {
    width: 50px;
    height: 50px;
}

.btn-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.typewriter{
    color: yellow;
    position: relative;
    top: 0;
    animation: colorful 6s infinite;
}
@keyframes colorful {
100% {
filter: hue-rotate(360deg);
}
}

.footer {
    background-color: black;
    color: #fff;
}

.footer-title {
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #ffffff;
}

.social-icon img {
    width: 30px;
    transition: transform 0.3s ease;
}

.social-icon:hover img {
    transform: scale(1.2);
}

.contact-info i {
    margin-right: 10px;
}

.list-unstyled li {
    margin-bottom: 0.5rem;
}

/* Hover animation on the entire footer */
.footer:hover {
    background-color: black;
    transition: background-color 0.5s ease-in-out;
}

.testimonial-section {
    background-color: #e2eaf3;
    padding: 50px 20px;
    border-radius: 10px;
    text-align: center;
}
.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 20px;
}
.testimonial-text {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}
.testimonial-author {
    font-weight: bold;
    color: #007bff;
}
.testimonial-role {
    font-size: 14px;
    color: #777;
}