html {
  scroll-behavior: smooth;
}

.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
              url('../images/hero-bg1.jpg') no-repeat center center/cover;
  color: white;
}

.navbar {
  background: linear-gradient(to right, #0e010e, #00020e) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.navbar .nav-link,
.navbar .navbar-brand,
.navbar-toggler-icon {
  color: #fff !important;
}
.navbar .nav-link {
  color: #fff; /* Default link color */
  transition: color 0.3s ease;
}

.navbar .nav-link:hover {
  color: #ff00ff !important; /* Hover color */
}


.navbar .nav-link {
  transition: color 0.3s ease;
}


.navbar-brand:hover .logo-img {
  content: url('../images/logo1.png');
}

.navbar-brand img {
  height: 40px;
}

.language-toggle .btn {
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 0.8rem;
}

.about-section {
  background-color: #f8f6ff; /* light lavender background */
  padding: 80px 0;
  color: #222;
}

#about img {
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-section {
  background-color: #0d0012 !important;
  padding-bottom: 60px;
}


.contact-section h2,
.contact-section h5,
.contact-section p {
  color: #ffffff !important;
}

.contact-section .btn {
  font-weight: bold;
  font-size: 18px;
}


/* Glowing Button Style */
.btn-glow {
  --glow-color: rgb(217, 176, 255);
  --glow-spread-color: rgba(191, 123, 255, 0.781);
  --enhanced-glow-color: rgb(20, 1, 26);
  --btn-color: rgb(15, 2, 28);
  border: .25em solid var(--glow-color);
  padding: 1em 3em;
  color: var(--glow-color);
  font-size: 15px;
  font-weight: bold;
  background-color: var(--btn-color);
  border-radius: 1em;
  outline: none;
  box-shadow: 
    0 0 1em .25em var(--glow-color),
    0 0 2em 0.5em var(--glow-spread-color),
    inset 0 0 .75em .25em var(--glow-color);
  text-shadow: 0 0 .5em var(--glow-color);
  position: relative;
  transition: all 0.3s;
  display: inline-block;
  text-decoration: none;
}

.btn-glow::after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 120%;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--glow-spread-color);
  filter: blur(2em);
  opacity: .7;
  transform: perspective(1.5em) rotateX(35deg) scale(1, .6);
}

.btn-glow:hover {
  color: var(--btn-color);
  background-color: var(--glow-color);
  box-shadow:
    0 0 0.5em .25em var(--glow-color),
    0 0 1em 0.5em var(--glow-spread-color),
    inset 0 0 .75em .25em var(--glow-color);
}

.btn-glow:active {
  box-shadow:
    0 0 0.6em .25em var(--glow-color),
    0 0 2.5em 2em var(--glow-spread-color),
    inset 0 0 .5em .25em var(--glow-color);
}


/* Uiverse-inspired Service Cards */
.service-card {
  background: #07182E;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 20px;
  text-align: center;
  padding: 2rem 1rem;
  min-height: 250px;
  transition: transform 0.3s ease;
}

.service-card h5,
.service-card p {
  position: relative;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  background-image: linear-gradient(180deg, rgb(0, 183, 255), rgb(255, 48, 255));
  animation: rotBGimg 8s linear infinite;
  transition: all 0.5s linear;
  z-index: 0;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 5px;
  background: #07182E;
  border-radius: 15px;
  z-index: 0;
}

@keyframes rotBGimg {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.service-card:hover {
  transform: translateY(-8px);
}

.contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  color: white;
  transition: all 0.3s ease;
  width: 170px;
  height: 50px;
}


  .contact-button .icon {
    width: 24px;
    height: 24px;
    transition: 0.8s;
  }

  .contact-button:hover .telegram-text {
    display: none;
    position: absolute;
  }

  .contact-button:hover .icon {
    margin-left: 40px;
    display: block;
    transform: rotate(50deg);
  }

  .telegram { 
    background-color: rgb(42, 171, 238);
  }

  .whatsapp {
    background-color: #25D366;
  }

  .email {
    background-color: #555;
  }
  

