/* From Uiverse.io by devanshsatwara */ 
.ui-btn {
  --btn-default-bg: #010314;
  --btn-padding: 15px 20px;
  --btn-hover-bg: rgb(51, 51, 51);
  --btn-transition: .3s;
  --btn-letter-spacing: .1rem;
  --btn-animation-duration: 1.2s;
  --btn-shadow-color: rgba(0, 0, 0, 0.137);
  --btn-shadow: 0 2px 10px 0 var(--btn-shadow-color);
  --hover-btn-color: #7241FF;
  --default-btn-color: #fff;
  --font-size: 16px;
  /* 👆 this field should not be empty */
  --font-weight: 600;
  --font-family: Menlo,Roboto Mono,monospace;
}

/* button settings 👆 */

.ui-btn {
  box-sizing: border-box;
  padding: var(--btn-padding);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-btn-color);
  font: var(--font-weight) var(--font-size) var(--font-family);
  background: var(--btn-default-bg);
  cursor: pointer;
  transition: var(--btn-transition);
  overflow: hidden;
  box-shadow: var(--btn-shadow);
  border-radius: 10px;
  border: 2px solid #2A2B3A;
}

.ui-btn span {
  letter-spacing: var(--btn-letter-spacing);
  transition: var(--btn-transition);
  box-sizing: border-box;
  position: relative;
  background: inherit;
}

.ui-btn span::before {
  box-sizing: border-box;
  position: absolute;
  content: "";
  background: inherit;
}

.ui-btn:hover, .ui-btn:focus {
  background: var(--btn-default-bg);
  box-shadow: 0px 0px 10px 0px rgba(119, 68, 255, 0.70);
  border: 2px solid #7241FF;
  ;
}

.ui-btn:hover span, .ui-btn:focus span {
  color: var(--hover-btn-color);
}

.ui-btn:hover span::before, .ui-btn:focus span::before {
  animation: chitchat linear both var(--btn-animation-duration);
}

@keyframes chitchat {
  0% {
    content: "#";
  }

  5% {
    content: ".";
  }

  10% {
    content: "^{";
  }

  15% {
    content: "-!";
  }

  20% {
    content: "#$_";
  }

  25% {
    content: "№:0";
  }

  30% {
    content: "#{+.";
  }

  35% {
    content: "@}-?";
  }

  40% {
    content: "?{4@%";
  }

  45% {
    content: "=.,^!";
  }

  50% {
    content: "?2@%";
  }

  55% {
    content: "\;1}]";
  }

  60% {
    content: "?{%:%";
    right: 0;
  }

  65% {
    content: "|{f[4";
    right: 0;
  }

  70% {
    content: "{4%0%";
    right: 0;
  }

  75% {
    content: "'1_0<";
    right: 0;
  }

  80% {
    content: "{0%";
    right: 0;
  }

  85% {
    content: "]>'";
    right: 0;
  }

  90% {
    content: "4";
    right: 0;
  }

  95% {
    content: "2";
    right: 0;
  }

  100% {
    content: "";
    right: 0;
  }
}



.socials {
  width: fit-content;
  height: fit-content;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 20px;
  gap: 20px;
  overflow: hidden;
  border-radius: 27px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.055);
}

/* for all social containers*/
.socials a {
  width: 52px;
  height: 52px;
  background-color: rgba(117, 117, 117, 0);
  display: flex;
  align-items: center;
  border-radius: 10px;
  justify-content: center;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.socials a:hover {
  transform: scale(1.2);
  border-radius: 15px;
}
/*instagram*/
.socials a:nth-child(1):hover {
  background-color: #d62976;
}
/* twitter*/
.socials a:nth-child(2):hover {
  background-color: #bf77f6;
  
}
/* linkdin*/
.socials a:nth-child(3):hover {
  background-color: #0072b1;
}
/* Whatsapp*/
.socials a:nth-child(4):hover {
  background-color: #25d366;
}

.socials a:active {
  transform: scale(1.1);
  transition-duration: 0.3s;
}

/*first-child*/
.socials a svg:first-child {
  display: flex;
  scale: 1.3;
  position: absolute;
  width: 17px;
  opacity: 1;
  transform: translateY(0px);
  transition: all 0.4s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.socials a svg:first-child path {
  fill: rgb(255, 255, 255);
}

.socials a:hover svg:first-child {
  transform: translateY(-40px);
  opacity: 0;
}
/*last-child*/
.socials a svg:last-child {
  display: flex;
  position: absolute;
  width: 17px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.15, 0.83, 0.66, 1);
}
.socials a svg:last-child path {
  fill: rgb(255, 255, 255);
}

.socials a:hover svg:last-child {
  opacity: 1;
  transform: translateY(0px);
}

.footer {
  background: linear-gradient(to bottom, #C6BCF0 70%, #C6BCF0 100%);
  color: #ffffff;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  
}

.footer-column li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: transform 0.3s ease;
}

.footer-column li:hover {
  transform: translateX(5px);
  color: #ffffff;
}

.footer-column p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer p {
  color: #ffffff;
}

.social-icons {
  margin-top: 10px;
  display: flex;
  gap: 15px;
}



.footer-bottom {
  text-align: center;
  padding-top: 30px;
  font-size: 14px;
  border-top: 1px solid #ffffff;
  margin-top: 30px;
}

/* Animations */
.animate {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}
.delay-4 {
  animation-delay: 0.8s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




.contact-form {
  background: linear-gradient(to bottom, #C6BCF0 70%, #4B0082 100%);
  border-radius: 16px;
  transition: box-shadow 0.3s ease;
  margin-top: -40px;
  margin-bottom: -20px;
}

#formheader{
  font-size: 50px;
  margin-top: -8px;
  letter-spacing: -1px;
  color: linear-gradient(90deg, rgba(184,77,255,1) 0%, rgba(93,63,211,1) 35%, rgba(0,212,255,1) 100%);
  
}

.contact-form:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
  background: #f9f9f9;
  border: 2px solid #ffffff;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 500;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #ffffff;
  background-color: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.contact-form textarea.form-control {
  resize: vertical;
}







#footerheader{
color: #fff;
font-size: 50px;
font-weight: bold;
justify-content: center;
}

#footersub{
  color: #fff;
  font-size: 20px;
  font-style: italic;
  justify-content: center;
  }

  #footercopyright{
    color: #fff;
    font-size: 10px;
    
    justify-content: center;
    align-items:end;
    }


#footer{
background: rgb(255,255,255);
background: linear-gradient(to bottom, #C6BCF0 0%, #4B0082 100%);
}