.elementor-kit-8{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-8 e-page-transition{background-color:#FFBC7D;}.elementor-kit-8 img:hover{filter:brightness( 100% ) contrast( 100% ) saturate( 100% ) blur( 0px ) hue-rotate( 0deg );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ===== Enhanced Interactive Background with Animated Squares ===== */
:root {
  --gradient-1: #1E40AF;
  --gradient-2: #7E22CE;
  --gradient-3: #06B6D4;
  --gradient-4: #3B82F6;
  --transition-speed: 0.5s;
}

body {
  /* Rich gradient background */
  background: linear-gradient(-45deg, var(--gradient-1), var(--gradient-2), var(--gradient-3), var(--gradient-4));
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  /* Interactive properties */
  transition: all var(--transition-speed) ease;
  position: relative;
}

/* Main gradient animation */
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Square animation container - replaces bubble texture */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

/* Generate animated squares */
.square-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.square {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(1px);
  animation: squareFloat 15s linear infinite, rotate 15s linear infinite, zoom 10s ease-in-out infinite;
}

/* Create squares of various sizes */
.square:nth-child(1) {
  width: 80px;
  height: 80px;
  left: 10%;
  animation-delay: 0s;
}

.square:nth-child(2) {
  width: 120px;
  height: 120px;
  left: 20%;
  animation-delay: 2s;
  animation-duration: 17s;
}

.square:nth-child(3) {
  width: 50px;
  height: 50px;
  left: 35%;
  animation-delay: 4s;
  animation-duration: 12s;
}

.square:nth-child(4) {
  width: 150px;
  height: 150px;
  left: 50%;
  animation-delay: 0s;
  animation-duration: 20s;
}

.square:nth-child(5) {
  width: 70px;
  height: 70px;
  left: 65%;
  animation-delay: 3s;
}

.square:nth-child(6) {
  width: 100px;
  height: 100px;
  left: 80%;
  animation-delay: 5s;
  animation-duration: 13s;
}

.square:nth-child(7) {
  width: 110px;
  height: 110px;
  left: 5%;
  animation-delay: 7s;
  animation-duration: 14s;
}

.square:nth-child(8) {
  width: 60px;
  height: 60px;
  left: 90%;
  animation-delay: 1s;
  animation-duration: 18s;
}

/* Square floating animation */
@keyframes squareFloat {
  0% {
    top: 110%;
    opacity: 1;
  }
  100% {
    top: -10%;
    opacity: 0;
  }
}

/* Square rotation animation */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Zoom in/out animation */
@keyframes zoom {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.5) rotate(180deg);
  }
  100% {
    transform: scale(1) rotate(360deg);
  }
}

/* Ensure content sits above the squares */
body > *:not(.square-container) {
  position: relative;
  z-index: 2;
}

/* Interactive Element Styling */
.interactive-element {
  padding: 20px;
  margin: 15px;
  border-radius: 10px;
  transition: all var(--transition-speed) ease;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hover Effects for Interactive Elements */
.interactive-element:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.2);
}

/* Color Shift on Hover - Add this class to elements you want to affect the background */
.color-shift:hover {
  animation: none;
  cursor: pointer;
}

/* Different hover effects for different sections */
.color-shift-warm:hover ~ body {
  --gradient-1: #F97316;
  --gradient-2: #EC4899;
  --gradient-3: #EAB308;
  --gradient-4: #F43F5E;
  animation-play-state: paused;
}

.color-shift-cool:hover ~ body {
  --gradient-1: #0EA5E9;
  --gradient-2: #2DD4BF;
  --gradient-3: #10B981;
  --gradient-4: #3B82F6;
  animation-play-state: paused;
}

.color-shift-dark:hover ~ body {
  --gradient-1: #1E293B;
  --gradient-2: #334155;
  --gradient-3: #475569;
  --gradient-4: #0F172A;
  animation-play-state: paused;
}

/* Animated Pulse Effect for Buttons */
.pulse-button {
  position: relative;
  overflow: hidden;
}

.pulse-button:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform .5s, opacity 1s;
}

.pulse-button:active:after {
  transform: scale(0, 0);
  opacity: 0.3;
  transition: 0s;
}

/* Floating Animation for Cards */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.floating {
  animation: float 5s ease-in-out infinite;
}
header, .site-header {
    display: none !important;
}

footer, .site-footer {
    display: none !important;
}/* End custom CSS */