body{
    font-family: 'Times New Roman', Times, serif;
    background: linear-gradient(135deg, #ffffff, #007BFF, red);
    min-height: 100vh;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    
}

.navbar .navbar-nav .nav-link:hover {
    color: rgb(255, 255, 255) !important;
    transform: scale(1.2);
    transition: 1s ease;
  }
  .navbar .navbar-nav .nav-link.active:hover {
    color: rgb(255, 255, 255) !important;
    transform: scale(1.2);
    transition: 1s ease;
  }

  .navbar .navbar-nav .nav-link.active {
    color: white !important;
    transition: 1s ease;
  }
  .navbar .navbar-nav .nav-link {
    transition: 1s ease;
  }
  .bg-deep-dark{
    background-color: rgb(33, 37, 41);
  }
  .gradient-text {
    background: linear-gradient(to right, yellow, white); /* Define the gradient colors */
    -webkit-background-clip: text; /* Clip the background to the text */
    -webkit-text-fill-color: transparent; /* Make the text transparent so the background is visible */
    background-clip: text;
    text-fill-color: transparent;
}
.gradient-text2 {
    background: linear-gradient(to right, red, green, blue);
    /* Define the gradient colors */
    -webkit-background-clip: text;
    /* Clip the background to the text */
    -webkit-text-fill-color: transparent;
    /* Make the text transparent so the background is visible */
    background-clip: text;
    text-fill-color: transparent;
}
#headerNav{
    /* background-color: transparent; */
    transition: background-color 0.6s ease-in-out;
}
.animated-image {
    /* width: 100px; Adjust size as needed */
    /* height: auto;  */
    animation: subtleMove 3s ease-in-out infinite; /* Animation properties */
}

@keyframes subtleMove {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(5px, 5px); /* Slightly move down and to the right */
    }
    50% {
        transform: translate(-5px, -5px); /* Move slightly up and to the left */
    }
    75% {
        transform: translate(5px, -5px); /* Move slightly up and to the right */
    }
    100% {
        transform: translate(0, 0); /* Return to original position */
    }
}
.card {
    transition: transform 0.3s ease; /* Smooth transition */
}

.card:hover {
    transform: scale(1.03); /* Scale the card */
}
.zoom-text {
    display: inline; /* Change to inline so it behaves like a normal text */
}
.zoom-text span {
    display: inline-block; /* Allows for transformation */
    opacity: 0; /* Start hidden */
    transform: scale(0.5); /* Start smaller */
    animation: zoomIn 0.5s forwards; /* Zoom in animation */
}

@keyframes zoomIn {
    100% {
        opacity: 1; /* Fully visible */
        transform: scale(1); /* Original size */
    }
}
::-webkit-scrollbar{
    display: none;
}
.skeleton{
    height: 100%;
    width: 100%;
    animation: skeleton-loding 1s linear infinite alternate;
}
@keyframes  skeleton-loding{
    0%{
        background-color: hsl(200, 20%, 70%);
    }
    100%{
        background-color: hsl(200, 20%, 95%);
    }
}
.nav li{
    list-style-type: none; /* Remove default list styling */
    margin: 0; /* Remove margin */
}
.carousel-caption h5{
    font-family: Arial, Helvetica, sans-serif !important; 
    font-weight: bolder;
    font-size: larger;
}
@media (max-width: 400px) {
    .carousel-caption h5{
        font-size: 20px;
        font-weight: bolder;
    }
    iframe{
        width: 200px;
        height: 100px;
    }
}
.dropdown-item{
    color: white;
}
a{
    text-decoration: none;
}
.dropdown-item :hover{
color: black;
}
/* @media (max-width: 767px) {
    #whyus2  {
        background-image: url('../images/hero/why-us.gif');
        background-size: cover;
        background-position: center;
        min-height: 300px;
    }

    #whyus img {
        display: none; 
    }
} */
 /* Loader styling */
/* Loader styling */
#loader {
    position: fixed;
    left: 50%;
    top: 50%;
    width: 80px;
    height: 80px;
    margin-left: -40px;
    margin-top: -40px;
    border-radius: 50%;
    border: 8px solid transparent;
    border-top: 8px solid #3498db;
    border-bottom: 8px solid #3498db;
    animation: rotate 1.5s linear infinite, pulse 1.5s ease-in-out infinite;
    z-index: 9999;
  }
  
  /* Rotate animation */
  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /* Pulsing effect */
  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.7);
    }
    70% {
      box-shadow: 0 0 0 50px rgba(52, 152, 219, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
    }
  }
  
  #loader.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease;
  }
    