:root {
  --p1: #7e3ff2;
  --p2: #9965f4;
  --p3: #b794f6;
  --p4: #d4bff9;
  --p5: #efe5fd;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&family=Roboto:wght@400;500&display=swap");

/* body {
  padding-top: 80px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: var(--p1);
  line-height: 1.6;
  background-color: var(--p5);
} */

.navbar {
  background-color: #7e3ff2 !important;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.navbar-brand {
  color: #ffffff !important;
  font-weight: 600;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}

.navbar-brand img {
  height: 35px;
  margin-right: 10px;
  object-fit: contain;
}

.navbar-nav .nav-link {
  position: relative;
  margin: 0 1rem;
  color: #efe5fd !important;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ffffff !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: #ffffff;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-nav .nav-link.active {
  font-weight: 600;
  color: #ffffff !important;
  border-bottom: 2px solid #ffffff;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.navbar-toggler-icon {
  filter: invert(1);
}

#hero.hero-section {
  background-color: #efe5fd !important;
  padding: 100px 20px;
  display: block !important;
  visibility: visible !important;
}

#hero.hero-section h1 {
  color: #7e3ff2 !important;
  font-size: 2.8rem;
  font-weight: 600;
  display: block !important;
  opacity: 1 !important;
}

#hero.hero-section p {
  color: #9965f4 !important;
  font-size: 1.2rem;
  display: block !important;
  opacity: 1 !important;
}

#hero.hero-section .btn {
  background-color: #9965f4 !important;
  color: #ffffff !important;
  border: none !important;
  padding: 12px 25px !important;
  display: inline-block !important;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

#hero.hero-section .btn:hover {
  background-color: #7e3ff2 !important;
  transform: translateY(-3px);
}
#services h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--p1);
}

#services .card {
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(126, 63, 242, 0.1);
  font-family: "Roboto", sans-serif;
  border: 1px solid var(--p3);
}

#services .card:hover {
  background-color: var(--p5);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(126, 63, 242, 0.2);
}

#services .card h5 {
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--p1);
}

#services .card p {
  font-weight: 400;
  font-size: 1rem;
  color: var(--p2);
}

#gallery h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--p1);
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 5px;
  border: 2px solid var(--p3);
}

#contact h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--p1);
}

#contact form {
  background: var(--p5);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(126, 63, 242, 0.1);
  transition: all 0.3s ease;
  font-family: "Roboto", sans-serif;
  border: 1px solid var(--p3);
}

#contact form:hover {
  box-shadow: 0 12px 25px rgba(126, 63, 242, 0.15);
}

#contact form input,
#contact form textarea {
  border-radius: 5px;
  border: 1px solid var(--p3);
  padding: 12px 15px;
  margin-bottom: 15px;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  width: 100%;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  color: var(--p1);
}

#contact form input:focus,
#contact form textarea:focus {
  outline: none;
  border-color: var(--p1);
  box-shadow: 0 0 5px rgba(126, 63, 242, 0.3);
}

#contact form button {
  padding: 12px;
  font-size: 1rem;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  background-color: var(--p1);
  color: var(--p5);
}

#contact form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(126, 63, 242, 0.2);
  background-color: var(--p2);
}

footer {
  margin-top: 40px;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  color: var(--p4);
  background-color: #000000;
  padding: 20px 0;
  text-align: center;
}

@media (max-width: 768px) {
  #contact form {
    padding: 20px;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  #services h2,
  #gallery h2,
  #contact h2 {
    font-size: 1.7rem;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0px 0px 5px var(--p1));
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.btn img {
  border-radius: 50%;
}

.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.call-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.call-float img {
  width: 35px;
  filter: drop-shadow(0px 0px 5px var(--p1));
}

html {
  scroll-behavior: auto;
}

.float-btn {
  position: fixed;
  right: 20px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.float-btn img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0px 0px 8px var(--p1));
}

.float-btn:hover {
  transform: scale(1.2);
}

.whatsapp {
  bottom: 90px;
}

.call {
  bottom: 20px;
}

footer {
  margin-top: 40px;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  color: var(--p3);
  background-color: #000000;
  padding: 20px 0;
  text-align: center;
}

footer p {
  margin-bottom: 15px;
  font-weight: 500;
}

footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

footer .social-icons a {
  color: var(--p3);
  font-size: 1.8rem;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

footer .social-icons a:hover {
  transform: scale(1.3);
  color: var(--p5);
}

footer {
  width: 100%;
  background-color: #000000;
  color: var(--p3);
  text-align: center;
  padding: 20px 0;
  position: relative;
  left: 0;
  bottom: 0;
}

.company-location {
  font-size: 0.9rem;
  color: var(--p3);
}

.company-contact a {
  color: var(--p3);
  text-decoration: none;
}

#about h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: var(--p1);
  margin-bottom: 40px;
  text-align: center;
}

#about p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--p2);
  line-height: 1.6;
  text-align: center;
}

.navbar-nav.d-lg-none .nav-link {
  font-size: 1.3rem;
  color: var(--p3);
}

.hero-section .hero-buttons .btn {
  padding: 12px 25px;
  background-color: var(--p5);
  color: var(--p1);
}

.hero-section h1,
.hero-section p {
  color: var(--p5) !important;
}

#about-stats .counter {
  font-size: 2rem;
  font-weight: 600;
  color: var(--p1);
}

#company-info .card {
  background-color: var(--p5);
  border: 1px solid var(--p3);
}

.service-card {
  height: 260px;
  background-color: var(--p5);
  border: 1px solid var(--p3);
}

#services .service-card:hover {
  background-color: var(--p2) !important;
}

.service-card h5 {
  color: var(--p1);
}

#decorCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

body {
  padding-top: 80px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: var(--p1);
  line-height: 1.6;
  background-color: var(--p5);
  font-weight: 500;
  font-family: "Inter", sans-serif !important;
}

#company-info .card {
  background-color: #ffffff;
  border: 3px solid #7e3ff2 !important;
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 10px rgba(126, 63, 242, 0.1);
  overflow: hidden;
}

#company-info .card:hover {
  transform: scale(1.08);
  background-color: #7e3ff2 !important;
  box-shadow: 0 15px 30px rgba(126, 63, 242, 0.3);
  cursor: pointer;
}

#company-info .counter {
  font-size: 2.5rem;
  font-weight: 700;
  color: #7e3ff2;
  transition: color 0.3s ease;
}

#company-info .card p {
  font-weight: 600;
  color: #9965f4;
  transition: color 0.3s ease;
  margin-bottom: 0;
}

#company-info .card:hover .counter,
#company-info .card:hover p {
  color: #ffffff !important;
}

#company-info .card {
  background-color: #efe5fd !important;
  border: 3px solid #7e3ff2 !important;
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 10px rgba(126, 63, 242, 0.1);
  overflow: hidden;
}

#company-info .card:hover {
  transform: scale(1.08);
  background-color: #7e3ff2 !important;
  box-shadow: 0 15px 30px rgba(126, 63, 242, 0.3);
  cursor: pointer;
}

#company-info .counter {
  font-size: 2.5rem;
  font-weight: 700;
  color: #7e3ff2;
  transition: color 0.3s ease;
}

#company-info .card p {
  font-weight: 600;
  color: #9965f4;
  transition: color 0.3s ease;
  margin-bottom: 0;
}

#company-info .card:hover .counter,
#company-info .card:hover p {
  color: #ffffff !important;
}

.service-link {
  text-decoration: none !important;
}

#services .service-card {
  background-color: #efe5fd !important;
  border: 3px solid #7e3ff2 !important;
  border-radius: 15px;
  padding: 30px !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  box-shadow: 0 4px 10px rgba(126, 63, 242, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#services .service-card h5 {
  font-weight: 700 !important;
  color: #7e3ff2 !important;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

#services .service-card p {
  font-weight: 600 !important;
  color: #9965f4 !important;
  transition: color 0.3s ease;
  line-height: 1.5;
}

#services .service-card:hover {
  transform: scale(1.05);
  background-color: #7e3ff2 !important;
  box-shadow: 0 15px 30px rgba(126, 63, 242, 0.3);
  cursor: pointer;
}

#services .service-card:hover h5,
#services .service-card:hover p {
  color: #ffffff !important;
}

#gallery .col-md-4 {
  overflow: hidden;
  border-radius: 15px;
  padding: 15px;
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px !important;
  border: 3px solid #7e3ff2 !important;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 4px 10px rgba(126, 63, 242, 0.1);
  cursor: pointer;
}

.gallery-img:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(126, 63, 242, 0.3);
  border-color: #9965f4 !important;
}

#contact form {
  background: #efe5fd !important;
  padding: 40px;
  border-radius: 20px;
  border: 3px solid #7e3ff2 !important;
  box-shadow: 0 10px 30px rgba(126, 63, 242, 0.1);
}

#contact form input,
#contact form textarea {
  border: 2px solid #b794f6 !important;
  background-color: #ffffff !important;
  color: #7e3ff2 !important;
  font-weight: 500;
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

#contact form input::placeholder,
#contact form textarea::placeholder {
  color: #b794f6 !important;
  opacity: 0.8;
}

#contact form input:focus,
#contact form textarea:focus {
  border-color: #7e3ff2 !important;
  box-shadow: 0 0 10px rgba(126, 63, 242, 0.2);
  outline: none;
}

#contact form button {
  background-color: #7e3ff2 !important;
  color: #ffffff !important;
  border: none !important;
  padding: 15px;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  overflow: hidden;
}

#contact form button:hover {
  background-color: #9965f4 !important;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(126, 63, 242, 0.4);
  letter-spacing: 1px;
}

#contact form textarea::-webkit-resizer {
  background-image: linear-gradient(
    135deg,
    transparent 50%,
    #7e3ff2 50%,
    #7e3ff2 60%,
    transparent 60%,
    transparent 70%,
    #7e3ff2 70%
  );
}

#contact form textarea {
  scrollbar-color: #7e3ff2 #efe5fd;
  scrollbar-width: thin;
}

#contact form textarea {
  accent-color: #7e3ff2;
}

.float-btn {
  position: fixed;
  right: 20px;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.float-btn img {
  width: 50px;
  height: 50px;
  filter: none !important;
  box-shadow: none !important;
}

.float-btn:hover {
  transform: scale(1.2);
}

.whatsapp {
  bottom: 90px;
}

.call {
  bottom: 20px;
}

.company-contact p {
  color: #b794f6;
  font-weight: 500;
}

.company-contact a {
  color: #9965f4 !important;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.company-contact a:hover {
  color: #7e3ff2 !important;
  transform: scale(1.05);
  letter-spacing: 0.5px;
}

.company-location p {
  color: #b794f6;
  font-weight: 500;
}

.navbar {
  background-color: #7e3ff2 !important;
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1.4rem;
}

.navbar-nav .nav-link {
  position: relative;
  margin: 0 1rem;
  color: #efe5fd !important;
  font-weight: 600 !important;
  font-size: 1.1rem;
  transition: color 0.4s ease;
}

.navbar-nav .nav-link:hover {
  color: #d4bff9 !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  left: 0;
  bottom: -5px;
  background-color: #d4bff9;
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-toggler {
  border: 2px solid #efe5fd !important;
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3 Visual cues for the user to locate the hamburger icon.%3Cpath stroke='rgba(239, 229, 253, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") !important;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background-color: #7e3ff2;
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
    border: 1px solid #9965f4;
  }

  .navbar-nav .nav-link {
    margin: 10px 0;
    text-align: center;
  }
}
.navbar-toggler {
  border: 2px solid #efe5fd !important;
  padding: 5px 8px;
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  background-image: none !important;
  display: flex !important;
  flex-direction: column;
  justify-content: space-around;
  width: 25px;
  height: 18px;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon {
  content: "";
}

.navbar-toggler-icon::before {
  width: 100%;
  height: 2px;
  background-color: #efe5fd;
}

.navbar-toggler-icon::after {
  width: 100%;
  height: 2px;
  background-color: #efe5fd;
  margin-top: 4px;
}

.navbar-toggler-icon {
  position: relative;
}

.navbar-toggler-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #efe5fd;
}

.navbar-toggler {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 !important;
}

.navbar-toggler-icon {
  background-image: none !important;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #efe5fd;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.navbar-toggler-icon span {
  margin-top: 0;
}

.navbar-toggler {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  background: transparent !important;
}

.navbar-toggler-icon {
  background-image: none !important;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between !important;
  width: 28px !important;
  height: 18px !important;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
  content: "" !important;
  display: block !important;
  width: 100% !important;
  height: 3px !important;
  background-color: #efe5fd !important;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
  position: absolute;
  top: 0;
}

.navbar-toggler-icon span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.navbar-toggler-icon::after {
  position: absolute;
  bottom: 0;
}

.navbar-toggler {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  background: transparent !important;
}

.navbar-toggler-icon {
  background-image: none !important;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between !important;
  width: 28px !important;
  height: 18px !important;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
  content: "" !important;
  display: block !important;
  width: 100% !important;
  height: 3px !important;
  background-color: #efe5fd !important;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
  position: absolute;
  top: 0;
}

.navbar-toggler-icon span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.navbar-toggler-icon::after {
  position: absolute;
  bottom: 0;
}

.navbar-toggler {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  background: transparent !important;
}

.navbar-toggler svg {
  transition: transform 0.3s ease;
}

.navbar-toggler:hover svg {
  transform: scale(1.1);
}

@media (max-width: 991px) {
  .navbar-collapse {
    display: none !important;
  }

  .side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: #7e3ff2;
    z-index: 9999;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 80px 30px;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 20px rgba(0, 0, 0, 0.3);
  }

  .side-menu.active {
    right: 0;
  }

  .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 45px;
    color: #efe5fd;
    cursor: pointer;
    line-height: 1;
  }

  .side-menu .nav-link {
    font-size: 1.4rem !important;
    color: #efe5fd !important;
    margin-bottom: 25px;
    font-weight: 600;
    border-bottom: 1px solid rgba(239, 229, 253, 0.1);
    padding-bottom: 10px;
  }

  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 9998;
    backdrop-filter: blur(3px);
  }

  .menu-overlay.active {
    display: block;
  }
}

@media (min-width: 992px) {
  .side-menu,
  .menu-overlay,
  .close-btn {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .side-menu,
  .menu-overlay {
    display: none !important;
  }
  .navbar-collapse {
    display: flex !important;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    display: none !important;
  }

  .side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #7e3ff2;
    z-index: 9999;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    padding-top: 80px;
  }

  .side-menu.active {
    right: 0;
  }

  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 9998;
  }

  .menu-overlay.active {
    display: block;
  }

  .close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 40px;
    color: white;
    cursor: pointer;
  }
}

@media (min-width: 992px) {
  .side-menu,
  .menu-overlay {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: #7e3ff2;
    z-index: 9999;
    transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 80px 30px;
    box-shadow: -10px 0 20px rgba(0, 0, 0, 0.3);
  }

  .side-menu.active {
    right: 0;
  }

  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 9998;
    backdrop-filter: blur(3px);
  }

  .menu-overlay.active {
    display: block;
  }

  .close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 40px;
    color: #efe5fd;
    cursor: pointer;
  }

  .side-menu .nav-link {
    color: #efe5fd !important;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
  }
}

.custom-fill-btn {
  position: relative;
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  color: #7e3ff2 !important;
  background: transparent !important;
  border: 2px solid #7e3ff2 !important;
  border-radius: 5px;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

.custom-fill-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #7e3ff2;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.custom-fill-btn:hover::before {
  left: 0;
}

.custom-fill-btn:hover {
  color: #ffffff !important;
  box-shadow: 0 5px 15px rgba(126, 63, 242, 0.4);
}

.water-fill-btn {
  position: relative;
  padding: 12px 35px;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #efe5fd !important; /* Base Light Purple */
  color: #7e3ff2 !important; /* Text Purple */
  border: 2px solid #7e3ff2 !important;
  border-radius: 8px;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
  display: inline-block;
  text-decoration: none;
}

/* Ye hai dark color ki layer (Water) */
.water-fill-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #7e3ff2; /* Dark Purple Fill */
  z-index: -1;

  /* Shuru mein ye bilkul left mein chhupi hogi */
  transform: scaleX(0);
  transform-origin: left; /* Animation left se shuru hoga */

  /* Transition: speed dono side barabar */
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 1. Jab Hover ho: Left se Right fill hoga */
.water-fill-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* 2. Jab Hover HATAYEIN: Left se Right hi nikal jayega */
.water-fill-btn::before {
  transform-origin: right;
}

.water-fill-btn:hover {
  color: #ffffff !important;
}

.water-fill-btn {
  position: relative !important;
  background-color: #efe5fd !important;
  color: #7e3ff2 !important;
  border: 2px solid #7e3ff2 !important;
  border-radius: 8px !important;
  padding: 12px 35px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  display: inline-block !important;
  overflow: hidden !important;
  z-index: 1 !important;

  transition: color 0.4s ease-in-out !important;

  transform: none !important;
  box-shadow: none !important;
}

.water-fill-btn::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background-color: #7e3ff2 !important;
  z-index: -1 !important;

  transition: left 0.5s ease-in-out !important;
}

.water-fill-btn:hover::before {
  left: 0 !important;
}

.water-fill-btn:hover {
  color: #ffffff !important;
  transform: none !important;
  box-shadow: none !important;
}

.water-fill-btn {
  position: relative !important;
  background-color: #efe5fd !important;
  color: #7e3ff2 !important;
  border: 2px solid #7e3ff2 !important;
  border-radius: 8px !important;
  padding: 12px 35px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  display: inline-block !important;
  overflow: hidden !important;
  z-index: 1 !important;

  transition: color 0.4s ease-in-out !important;

  transform: none !important;
  box-shadow: none !important;
}

.water-fill-btn::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background-color: #7e3ff2 !important;
  z-index: -1 !important;

  transition: left 0.5s ease-in-out !important;
}

.water-fill-btn:hover::before {
  left: 0 !important;
}

.water-fill-btn:hover {
  color: #ffffff !important;
  transform: none !important;
  box-shadow: none !important;
}

.water-fill-btn {
  position: relative !important;
  z-index: 1 !important;
  overflow: hidden !important;
  padding: 12px 35px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  border: 2px solid #7e3ff2 !important;
  border-radius: 8px !important;

  background-color: #efe5fd !important;
  color: #7e3ff2 !important;
  transition: color 0.4s ease-in-out !important;

  transform: none !important;
  box-shadow: none !important;
  display: inline-block !important;
}

.water-fill-btn::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background-color: #7e3ff2 !important;
  z-index: -1 !important;

  transition: left 0.5s ease-in-out !important;
}

.water-fill-btn:hover {
  background-color: #efe5fd !important;
  color: #ffffff !important;
  transform: none !important;
  box-shadow: none !important;
}

.water-fill-btn:hover::before {
  left: 0 !important;
}

.water-fill-btn,
.water-fill-btn:hover,
.water-fill-btn:focus,
.water-fill-btn:active {
  position: relative !important;
  background-color: #efe5fd !important;
  color: #7e3ff2 !important;
  border: 2px solid #7e3ff2 !important;
  outline: none !important;
  box-shadow: none !important;
  transform: none !important;
  overflow: hidden !important;
  z-index: 1 !important;
  transition: color 0.4s ease-in-out !important;
}

.water-fill-btn::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background-color: #7e3ff2 !important;
  z-index: -1 !important;
  transition: left 0.5s ease-in-out !important;
}

.water-fill-btn:hover::before {
  left: 0 !important;
}

.water-fill-btn:hover {
  color: #ffffff !important;
}

#hero .hero-buttons a.water-fill-btn {
  position: relative !important;
  background-color: #efe5fd !important;
  color: #7e3ff2 !important;
  border: 2px solid #7e3ff2 !important;
  padding: 12px 35px !important;
  overflow: hidden !important;
  z-index: 1 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  transition: color 0.4s ease-in-out !important;

  transform: none !important;
  box-shadow: none !important;
}

#hero .hero-buttons a.water-fill-btn:hover,
#hero .hero-buttons a.water-fill-btn:focus,
#hero .hero-buttons a.water-fill-btn:active {
  background-color: #efe5fd !important;
  color: #ffffff !important;
  transform: none !important;
  box-shadow: none !important;
  outline: none !important;
}

#hero .hero-buttons a.water-fill-btn::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background-color: #7e3ff2 !important;
  z-index: -1 !important;

  transition: left 0.5s ease-in-out !important;
}

#hero .hero-buttons a.water-fill-btn:hover::before {
  left: 0 !important;
}

#hero .hero-buttons a.water-fill-btn {
  position: relative !important;
  background-color: #efe5fd !important;
  color: #7e3ff2 !important;
  border: 2px solid #7e3ff2 !important;
  padding: 12px 35px !important;
  overflow: hidden !important;
  z-index: 1 !important;
  display: inline-block !important;
  text-decoration: none !important;

  transition: color 0.3s ease-in-out !important;

  transform: none !important;
  box-shadow: none !important;
}

#hero .hero-buttons a.water-fill-btn::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background-color: #7e3ff2 !important;
  z-index: -1 !important;

  transition: left 0.4s ease-in-out !important;
}

#hero .hero-buttons a.water-fill-btn:hover::before {
  left: 0 !important;
}

#hero .hero-buttons a.water-fill-btn:hover {
  color: #ffffff !important;
  background-color: #efe5fd !important;
}

#hero .hero-buttons a.water-fill-btn:active,
#hero .hero-buttons a.water-fill-btn:focus {
  background-color: #efe5fd !important;
  color: #7e3ff2 !important;
}

#hero .hero-buttons a.water-fill-btn {
  position: relative !important;
  background-color: #efe5fd !important;
  color: #7e3ff2 !important;
  border: 2px solid #7e3ff2 !important;
  padding: 12px 35px !important;
  overflow: hidden !important;
  z-index: 1 !important;
  display: inline-block !important;
  text-decoration: none !important;
  transform: none !important;
  box-shadow: none !important;
  transition: color 0.4s ease !important;
}

#hero .hero-buttons a.water-fill-btn::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background-color: #7e3ff2 !important;
  z-index: -1 !important;

  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

#hero .hero-buttons a.water-fill-btn:hover::before {
  left: 0 !important;
}

#hero .hero-buttons a.water-fill-btn:hover {
  color: #ffffff !important;
}

#hero .hero-buttons a.water-fill-btn:active,
#hero .hero-buttons a.water-fill-btn:focus {
  background-color: #efe5fd !important;
}

#hero .hero-buttons a.water-fill-btn {
  position: relative !important;
  background-color: #efe5fd !important;
  color: #7e3ff2 !important;
  border: 2px solid #7e3ff2 !important;
  padding: 12px 35px !important;
  overflow: hidden !important;
  z-index: 1 !important;
  display: inline-block !important;
  text-decoration: none !important;
  transform: none !important;
  box-shadow: none !important;

  transition: color 0.6s ease-in-out !important;
}

#hero .hero-buttons a.water-fill-btn::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background-color: #7e3ff2 !important;
  z-index: -1 !important;

  transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

#hero .hero-buttons a.water-fill-btn:hover::before {
  left: 0 !important;
}

#hero .hero-buttons a.water-fill-btn:hover {
  color: #ffffff !important;
}

#hero .hero-buttons a.water-fill-btn:not(:hover)::before {
  left: -100% !important;
  transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

#hero .hero-buttons a.water-fill-btn {
  position: relative !important;
  background-color: #efe5fd !important;
  color: #7e3ff2 !important;
  border: 2px solid #7e3ff2 !important;
  padding: 12px 35px !important;
  overflow: hidden !important;
  z-index: 1 !important;
  display: inline-block !important;
  text-decoration: none !important;
  transition: color 0.5s ease !important;
}

#hero .hero-buttons a.water-fill-btn::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background-color: #7e3ff2 !important;
  z-index: -1 !important;
  transition: left 0.8s ease-in-out !important;
}

#hero .hero-buttons a.water-fill-btn:hover::before {
  left: 0 !important;
  transition: left 0.8s ease-in-out !important;
}

#hero .hero-buttons a.water-fill-btn:hover {
  color: #ffffff !important;
}

#hero .hero-buttons a.water-fill-btn:active,
#hero .hero-buttons a.water-fill-btn:focus,
#hero .hero-buttons a.water-fill-btn:hover {
  box-shadow: none !important;
  outline: none !important;
  transform: none !important;
}

#hero .hero-buttons a.water-fill-btn {
  background: linear-gradient(to right, #7e3ff2 50%, #efe5fd 50%) !important;

  background-size: 200% 100% !important;

  background-position: right bottom !important;

  transition: all 0.8s ease-out !important;

  color: #7e3ff2 !important;
  border: 2px solid #7e3ff2 !important;
  padding: 12px 35px !important;
  display: inline-block !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  position: relative !important;
  z-index: 1 !important;
}

#hero .hero-buttons a.water-fill-btn:hover {
  background-position: left bottom !important;
  color: #ffffff !important;
}

#hero .hero-buttons a.water-fill-btn:active,
#hero .hero-buttons a.water-fill-btn:focus {
  box-shadow: none !important;
  outline: none !important;
}

h1,
h2,
h3,
.counter {
  font-family: "Poppins", sans-serif !important;
  font-weight: 700 !important;
}

#hero h1 {
  font-size: 3.5rem !important;
  letter-spacing: -1px;
}
#about p {
  font-family: "Inter", sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 500 !important;
  line-height: 1.8 !important;
  color: #7e3ff2 !important;
  text-align: justify !important;
  text-justify: inter-word;
  margin-bottom: 20px !important;
}

#about p strong {
  font-weight: 700 !important;
  color: #7e3ff2 !important;
}

.container {
  max-width: 1100px !important;
  padding-right: 20px !important;
}

section {
  padding: 60px 0 !important;
  margin: 0 auto !important;
}

#about p,
.service-card p {
  font-family: "Inter", sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 500 !important;
  line-height: 1.8 !important;
  color: #7e3ff2 !important;
  text-align: justify !important;
  text-justify: inter-word;
  margin-bottom: 20px !important;
}

h2 {
  font-family: "Poppins", sans-serif !important;
  font-weight: 700 !important;
  color: #7e3ff2 !important;
  margin-bottom: 40px !important;
  position: relative;
}

.card {
  border-radius: 15px !important;
  border: 2px solid #efe5fd !important;
  padding: 30px !important;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  section {
    padding: 40px 15px !important;
  }
  #about p {
    text-align: center !important;
  }
}

/* Tablet and Mobile adjustments */
@media (max-width: 768px) {
  .navbar-brand img {
    height: 35px; /* Adjust this height for mobile */
    width: auto;
  }

  .navbar-brand {
    font-size: 1.1rem; /* Slightly smaller text so it doesn't wrap */
  }
}

/* Very small phones */
@media (max-width: 480px) {
  .navbar-brand img {
    height: 30px;
  }
}
@media (max-width: 768px) {
  section {
    padding: 40px 15px; /* Adds 15px space on the left and right of all sections */
  }

  #about p {
    font-size: 1rem; /* Slightly smaller font for better readability on small screens */
    line-height: 1.6;
    text-align: left; /* Keeps text easy to read on mobile */
  }

  .counter {
    font-size: 2rem; /* Ensures the numbers stay large enough to see */
  }
}
#decorCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* This pushes the animation BEHIND your text */
  pointer-events: none; /* This allows you to click buttons through the animation */
}

.theme-text-muted {
  font-size: 0.85rem;
  color: #7b529e; /* Matches the purple theme */
  opacity: 0.9;
  font-weight: 500;
}
#hero h1 {
  background: linear-gradient(
    120deg,
    #7e3ff2 0%,
    #7e3ff2 40%,
    #000000 50%,
    #7e3ff2 60%,
    #7e3ff2 100%
  );
  background-size: 200% 200%;
  animation: blackSweep 10s linear infinite alternate;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes blackSweep {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

#skl {
  width: fit-content;
  height: 41px;
}

#logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0-px;
  flex-direction: row;

}

#logo h3{
  margin: 0;
  font-size: 32px;
}

