body {
    
  font-family: 'Roboto', sans-serif;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
}
.navbar {
    transition: background-color 0.3s ease-in-out;
}
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.card {
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.navbar.scrolled {
    background-color: #181818!important;
}
.navbar.scrolled .nav-link, 
.navbar.scrolled .navbar-brand {
    color: white !important;
}
.navbar.scrolled .btn-dark {
    background-color: white !important;
    color: black !important;
    border-color: white !important;
}
@media (max-width: 990px) and (min-width: 768px) {
.col-md-4 {
min-width: 320px; 
}
}
@media (max-width: 768px) {
    .cursor{
        visibility: hidden;
    }
    #lottie-animation1 {
        visibility: hidden;
    }
}

@media (max-width:1070px) {
#home h1{
margin-top: -50px;
}
#home p{
font-size:20px;
}}
#loading-screen {
position: fixed;
width: 100%;
height: 100vh;
background: rgb(144, 235, 235);
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
transition: opacity 0.8s ease-in-out, visibility 0.9s ease-in-out;
}

#loading-screen.hidden {
opacity: 0;
visibility: hidden;
}

#content {
opacity: 0;
transition: opacity 1s ease-in-out;
}
#content.show {
opacity: 1;
}
.btn-dark{
transition:background-color 0.4s ease-in-out,color 0.4s ease-in-out,border-color 0.4s ease-in-out;
}
.btn-dark:hover {
background-color: rgba(255, 255, 255, 0) ;
color: black ;
border-color: black; 
}
.navbar .nav-link{
transition: color 0.4s ease-in-out,transform 0.4s ease-in-out;
}
.navbar .nav-link:hover {
color: rgb(0, 0, 0);
transform: scale(1.1); 
}
.btn-lg{
transition: transform 0.4s ease-in-out,background-color 0.4s ease-in-out;
}
.btn-lg:hover {
transform: scale(1.05);

}
.cursor{
    background-color:transparent;
    border: 2px solid rgba(110, 208, 233, 0.685);
    width: 10px;
    height: 10px;
    border-radius: 50%;
  position: fixed;
  transform: translate(-50%,-50%);
    pointer-events:none;
transition: width 0.6s ease,height 0.6s ease,background-color 0.3s ease;
z-index: 9999;
}
.card {
    border-radius: 15px;
    transition: transform 1s, box-shadow 0.3s, opacity 0.9s, background-color 0.5s ease, color 0.5s ease;
    opacity: 0.7;
}
.card:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5); 
    opacity: 1;
}
@media (max-width: 800px) {
    .card {
        opacity: 1;
    }



}
footer a:not(i):hover {
    color: #007bff; 
    text-decoration: underline;
    transition: color 0.3s ease-in-out;
}
footer a i:hover {
    color: #000000;
    transform: scale(1.2);
    transition: all 0.3s ease-in-out;
}
.animated-title span {
    display: inline-block;
    transition: transform 0.5s ease, color 0.5s ease;
}

.animated-title span.active {
    transform: scale(1.5);
    color: aqua;
}
.navbar-brand svg path {
    fill: black;
    transition: fill 0.5s ease-in-out;
}
.navbar-brand:hover svg path {
    fill: rgb(255, 255, 255);
}
.navbar.scrolled .navbar-brand svg path {
    fill: white;
}
    .btn-custom-outline {
        border: 2px solid #212529;
        background-color: transparent;
        color: #212529;
        transition: all 0.5s ease;
    }

    .btn-custom-outline:hover {
        background-color: #212529;
        color: #fff;
        border: none;
    }
#chatbot-wrapper {
  font-family: 'Arial', sans-serif;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-width: 500px;
  width: 100%;
  pointer-events: auto;
}
#chatbot-wrapper .container {
  background: white;
  border-radius: 15px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
  max-width: 500px;
  text-align: center;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(20px);
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease, transform 0.4s ease;
  padding-top: 0;
  padding-bottom: 0;
  pointer-events: none;
}
#chatbot-wrapper .container.open {
  max-height: 600px;
  opacity: 1;
  transform: translateY(0);
  padding-top: 30px;
  padding-bottom: 30px;
  pointer-events: auto;
}
#chatbot-wrapper h2 {
  color: #333;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: bold;
}
#chatbot-wrapper textarea {
  width: 100%;
  height: 100px;
  padding: 15px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  resize: none;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.3s, box-shadow 0.3s;
}
#chatbot-wrapper textarea:focus {
  border-color: #6c6cff;
  box-shadow: 0 0 10px rgba(108, 108, 255, 0.2);
}
#chatbot-wrapper button {
  background-color: #464647;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}
#chatbot-wrapper button:hover {
  background-color: #202020;
  transform: scale(1.03);
}
#chatbot-wrapper #response {
  margin-top: 20px;
  background-color: #f1f1f1;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  color: #333;
  font-size: 16px;
  display: none;
  word-wrap: break-word;
  white-space: pre-wrap;
  animation: fadeIn 0.4s ease forwards;
}
#chatbot-wrapper .chatbot-button {
  background-color: #313131;
  color: white;
  padding: 15px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  margin-bottom: 10px;
  user-select: none;
  transition: background-color 0.3s, transform 0.2s;
  animation: pulse 2s infinite ease-in-out;
}
#chatbot-wrapper .chatbot-button:hover {
  background-color: #141414;
  transform: scale(1.1);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(108, 108, 255, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(108, 108, 255, 0.3);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(108, 108, 255, 0);
  }
}
#chatbot-wrapper .chatbot-button.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease-in-out;
}
@media (max-width: 600px) {
  #chatbot-wrapper {
    bottom: 20px;
    right: 20px;
    transform: none;
    max-width: 80vw;
    width: 80vw;
    align-items: flex-end;
  }
  #chatbot-wrapper .container {
    width: 100%;
    max-width: 320px;
    padding: 20px;
  }
}
.slider-container {
  overflow: hidden;
  position: relative;
  width: 60%; /* Make full width */
  margin: auto;
}

.slider-track {
  display: flex;
  gap: 3rem; /* Reduced gap for tighter fit on mobile */
  animation: scroll 25s linear infinite;
  align-items: center;
}

.slider-track img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* Adjust for small devices */
@media (max-width: 480px) {
  .slider-track img {
    width: 50px;
    height: 50px;
  }

  .slider-track {
    gap: 1rem;
  }
    .slider-container {
  width: 100%; /* Make full width */
}
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

