:root {
  --primary: #6366f1;
  --secondary: #10b981;
  --dark: #0f172a;
  --light: #f8fafc;
  --treknode: #d3ba92;
}

.custom-cursor {
  width: 30px;
  height: 30px;
  background-color: white;
  /* This will invert due to blend mode */
  border-radius: 50%;
  position: fixed;
  /* Fixes cursor so it stays on top */
  pointer-events: none;
  /* Prevents it from blocking clicks */
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  /* Inverts colors dynamically */
  transition: transform 0.05s ease-out;
  z-index: 9999;
  /* Ensures cursor stays above everything */
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  /* cursor: none;  */
}

.gradient-text {
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar {
  /* background-color: rgba(243, 245, 248, 0.5) !important; */
  /* Dark with 50% opacity */
  transition: background-color 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(15, 23, 42, 0.9) !important;
  /* Darker when scrolled */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-link {
  position: relative;
  padding: 0.5rem 1rem !important;

}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--treknode);
  bottom: 0;
  left: 0;
  transition: width 0.5s ease;

}

.nav-link:hover::after {
  width: 100%;
}

/* Smooth transition */
#navbar {
  transition: background-color 0.3s ease, color 0.3s ease;
}


/* .section {
    height: 100vh;
     display: flex; 
    align-items: center;
    justify-content: center;
    font-size: 2rem;
} */

.hero-section {
  background: linear-gradient(135deg, var(--dark) 60%, #1e293b);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(var(--primary), transparent);
  opacity: 0.15;
  filter: blur(100px);
  top: -50px;
  right: -50px;
}

.floating-element {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(-2deg);
  }

  50% {
    transform: translateY(-30px) rotate(2deg);
  }
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--primary);
  filter: blur(60px);
  top: -30px;
  left: -30px;
  opacity: 0.3;
  z-index: -1;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin-bottom: 1.5rem;
}



#home {
  background-color: #f8f9fa;
}

/* Light */
#services {
  background-color: #343a40;
  color: white;
}

/* Dark */
#about {
  background-color: #ff5733;
}

/* Bright */
#contact {
  background-color: #009688;
  color: white;
}

/* Teal */

.info_section {
  background: linear-gradient(135deg, var(--dark) 60%, #1e293b);
  color: #ffffff;
  padding: 45px 0 15px 0;
}

.info_section h4 {
  font-weight: 600;
  margin-bottom: 20px;
}

.info_section .info_col {
  margin-bottom: 30px;
}

.info_section .info_contact .contact_link_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;

}

.info_section .info_contact .contact_link_box a {
  margin: 5px 0;
  color: #ffffff;

}

.info_section .info_contact .contact_link_box a i {
  margin-right: 5px;
  /* margin-right: 15px; */
}

.info_section .info_contact .contact_link_box a:hover {
  color: var(--treknode);
}

.info_section .info_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  margin-bottom: 10px;
}

.info_section .info_social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;
  border-radius: 100%;
  margin-right: 10px;
  font-size: 24px;
  margin-right: 20px;
}

.info_section .info_social a:hover {
  color: var(--treknode);
}

.info_section .info_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.info_section .info_links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
  color: #ffffff;
}

.info_section .info_links a:hover {
  color: var(--treknode);
}

.info_section form input {
  border: none;
  border-bottom: 1px solid #ffffff;
  background-color: transparent;
  width: 100%;
  height: 45px;
  color: #ffffff;
  outline: none;
}

.info_section form input::-webkit-input-placeholder {
  color: #ffffff;
}

.info_section form input:-ms-input-placeholder {
  color: #ffffff;
}

.info_section form input::-ms-input-placeholder {
  color: #ffffff;
}

.info_section form input::placeholder {
  color: #ffffff;
}

.info_section form button {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px 55px;
  background-color: #00bbf0;
  color: #ffffff;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  margin-top: 15px;
}

.info_section form button:hover {
  background-color: var(--treknode);
}

.form-control:focus {
  border-color: #1e3c72;
  box-shadow: 0 0 0 0.25rem var(--treknode);
}


.partner-item {
  padding: 1rem;
  margin: 0 1.5rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.partner-item:hover {
  opacity: 1;
}

/* Marquee Animation */
.marquee-wrapper {
  position: relative;
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.animate-marquee:hover {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .marquee-content {
    animation-duration: 20s;
  }
}


/* footer section*/
.footer_section {
  position: relative;
  background-color: #ffffff;
  text-align: center;
}

.footer_section p {
  color: #dcdfe4;
  padding: 25px 0;
  margin: 0;
}

.footer_section p a {
  color: inherit;
}



/* scrool to top */
#scrollToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  display: none; /* Initially hidden */
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s, transform 0.3s;
}

/* Show button when scrolling */
#scrollToTopBtn.show {
  display: flex;
}

#scrollToTopBtn:hover {
  background-color: #0056b3;
  transform: scale(1.1);
}