.elementor-747 .elementor-element.elementor-element-d87eb06{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--justify-content:space-around;--gap:0px 0px;--flex-wrap:wrap;--background-transition:0.3s;}.elementor-747 .elementor-element.elementor-element-0c7f248{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--justify-content:space-around;--background-transition:0.3s;}.elementor-747 .elementor-element.elementor-element-e34d726{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--justify-content:space-around;--gap:0px 0px;--background-transition:0.3s;--margin-block-start:0px;--margin-block-end:0px;--margin-inline-start:-115px;--margin-inline-end:0px;--padding-block-start:0px;--padding-block-end:0px;--padding-inline-start:0px;--padding-inline-end:0px;}.elementor-747 .elementor-element.elementor-element-9bef949 > .elementor-widget-container{padding:0px 0px 0px 0px;}.elementor-747 .elementor-element.elementor-element-9bef949.elementor-element{--align-self:stretch;}.elementor-747 .elementor-element.elementor-element-9a64ece{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--background-transition:0.3s;}.elementor-747 .elementor-element.elementor-element-3496b3d{--spacer-size:50px;}.elementor-747 .elementor-element.elementor-element-dbd022c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--background-transition:0.3s;--margin-block-start:0px;--margin-block-end:0px;--margin-inline-start:0px;--margin-inline-end:0px;--padding-block-start:0px;--padding-block-end:0px;--padding-inline-start:0px;--padding-inline-end:0px;}.elementor-747 .elementor-element.elementor-element-1fb4cca iframe{height:325px;}.elementor-747 .elementor-element.elementor-element-1fb4cca{width:var( --container-widget-width, 111.331% );max-width:111.331%;--container-widget-width:111.331%;--container-widget-flex-grow:0;}.elementor-747 .elementor-element.elementor-element-1fb4cca.elementor-element{--flex-grow:0;--flex-shrink:0;}.wgl-canvas-outer{opacity:0.58;}body.elementor-page-747 #main.site-main{z-index:0;}body.elementor-page-747:not(.elementor-motion-effects-element-type-background), body.elementor-page-747 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#011830;}@media(min-width:768px){.elementor-747 .elementor-element.elementor-element-0c7f248{--width:45%;}.elementor-747 .elementor-element.elementor-element-e34d726{--width:35%;}.elementor-747 .elementor-element.elementor-element-9a64ece{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-8adfe27 */.contact-section {
  background: transparent; /* 👈 No background */
  color: #fff;
  text-align: center;
  padding: 1px 20px;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

/* Heading */
.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #fff;
}

.contact-section h2 span {
  color: #a259ff;
}

/* Contact Grid */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-bottom: 40px;
}

/* Contact Cards */
.contact-card {
  background: rgba(255, 255, 255, 0.05); /* light transparent glass effect */
  border-radius: 15px;
  padding: 25px 20px;
  width: 325px;
  text-align: left;
  transition: 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.contact-card h3 {
  color: #a259ff;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* Contact Items */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-item i {
  font-size: 1.2rem;
  color: #a259ff;
  margin-top: 5px;
}

.contact-item a {
  color: #fff;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Details section */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-bottom: 30px;
}

/* Social icons */
.social-links a {
  margin: 0 10px;
  color: #fff;
  font-size: 1.3rem;
  transition: color 0.3s, transform 0.3s;
}

.social-links a:hover {
  color: #a259ff;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid, .contact-details {
    flex-direction: column;
    align-items: center;
  }

  .contact-card {
    width: 90%;
  }
}

/* ===== ANIMATIONS ===== */

/* Fade-in and slide effects */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
}

.slide-up {
  opacity: 0;
  animation: slideUp 1.2s ease forwards;
}

.slide-left {
  opacity: 0;
  animation: slideLeft 1.2s ease forwards;
}

.slide-right {
  opacity: 0;
  animation: slideRight 1.2s ease forwards;
}

/* Animation delays */
.delay-1 { animation-delay: 0.4s !important; }
.delay-2 { animation-delay: 0.6s !important; }
.delay-3 { animation-delay: 0.8s !important; }
.delay-4 { animation-delay: 1s !important; }

/* Keyframes */
@keyframes fadeIn {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideLeft {
  0% { opacity: 0; transform: translateX(-50px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
  0% { opacity: 0; transform: translateX(50px); }
  100% { opacity: 1; transform: translateX(0); }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-9bef949 *//* Center the form container */
.wpcf7 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 20vh; /* full height */
  background: transparent;
}

/* Contact form styling */
.wpcf7 form {
  background: rgba(255, 255, 255, 0.05); /* transparent white for blur effect */
  backdrop-filter: blur(10px); /* frosted glass blur */
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8); /* white border */
  border-radius: 15px;
  padding: 25px 15px;
  width: 100%;
  max-width: 500px; /* limit width */
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
  color: #fff;
  text-align: left;
}

/* Label styling */
.wpcf7 form label {
  display: block;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
}

/* Input, textarea, file fields */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="number"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="file"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  padding: 15px 15px;
  color: #fff;
  font-size: 15px;
  margin-bottom: 20px;
  outline: none;
  transition: 0.3s ease;
}

/* Focus effect */
.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  border-color: #a259ff;
  box-shadow: 0 0 8px rgba(162, 89, 255, 0.5);
}

/* Submit button */
.wpcf7 input[type="submit"] {
  display: block;                /* makes it a block element */
  width: 50%;                    /* half the form width */
  margin: 0 auto;                /* centers horizontally */
  background: #a259ff;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: 0.3s ease;
  text-align: center;
}

.wpcf7 input[type="submit"]:hover {
  background: #7a3fe0;
  box-shadow: 0 0 10px rgba(162, 89, 255, 0.7);
}


@media (max-width: 768px) {
  .wpcf7 input[type="submit"] {
    width: 100%;
  }
}/* End custom CSS */