body {
    background-image: url("images/Unknown-8.jpg");
    
    /* This ensures the image always fills the screen without gaps */
    background-size: cover; 
    
    /* This keeps the image still while you scroll over it */
    background-attachment: fixed; 
    
    background-repeat: no-repeat;
    background-position: center top;

    /* Allows the page to be as long as it needs to be */
    min-height: 100vh; 
    margin: 0;
    overflow-x: hidden;
}

html, body {
  overscroll-behavior: none;
}

html {
  scroll-behavior: smooth;
}

.HeroText {
    background-color: rgba(255, 255, 255, 0);

    width: 40rem;

    height: 650px;

    margin-top: 185px;

    margin-left: 10rem;
}

/* From Uiverse.io by cybrejon */ 
a {
  color: rgba(255, 255, 255, 0.692);
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.397);
  background: rgba(255, 255, 255, 0.068);
  overflow: hidden;
  font-size: 0.9rem;
  font-weight: 600;
  gap: 8px;
  border-radius: 5px;
  margin: 0 5px;
  transition: 0.2s;
  border: 1px solid transparent;

  width: 55%;

  height: 40px;

  margin-top: 30px;
}

a:hover {
  border-color: rgba(255, 255, 255, 0.623);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.144),
    rgba(255, 255, 255, 0.247),
    rgba(255, 255, 255, 0.39)
  );
  box-shadow: 0 6px rgba(255, 255, 255, 0.623);
  transform: translateY(-6px);
}

a:active {
  transform: translateY(2px);
  box-shadow: none;
}

.OrangeText {
    background-image: linear-gradient(to right, rgb(255, 160, 97), rgb(255, 255, 255), rgb(255, 160, 97));
  
  /* Clip the background to the shape of the text */
  background-clip: text;
  -webkit-background-clip: text; /* Vendor prefix for broader support */
  
  /* Make the text transparent to reveal the background gradient */
  color: transparent;
  -webkit-text-fill-color: transparent; /* Vendor prefix for older browsers */
}



.tilt-card:hover {
    /* Gently settle back to flat */
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1.03);
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.5);
}

.slide-in-right {
	-webkit-animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2026-2-28 17:15:29
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-right
 * ----------------------------------------
 */
/* 1. Update the class to handle the "landing" state */
/* The container handles the positioning and the entry animation */
/* The container handles the slide-in and the 3D space */
.image-container {
    position: absolute; 
    /* Anchor it 5% away from the right edge instead of 67rem from left */
    right: 17%; 
    top: 150px;
    perspective: 1200px; 
    z-index: 5;
    /* Prevents this container from expanding the page width */
    max-width: 40vw; 
}

.tilt-card {
    width: auto; 
    height: 70vh; 
    border-radius: 10px; 
    box-shadow: -25px 20px 40px rgba(0, 0, 0, 0.45);
    
    /* Default starting position */
    transform: rotateX(10deg) rotateY(-20deg) rotateZ(2deg);
    
    /* Short transition for smooth "following" */
    transition: transform 0.1s linear, box-shadow 0.5s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

/* On hover, we just increase the scale and shadow; JS handles the rotation */
.tilt-card:hover {
    box-shadow: 0px 30px 60px rgba(0, 0, 0, 0.6);
}

/* Entry Animation (Only handles sliding the container) */
.slide-in-right {
    animation: slide-in-right 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-in-right {
  0% {
    transform: translateX(200px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* 1. The Container */
.emoji-background {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 300vh; 
    z-index: 0; /* Sit above the background image, but below text */
    overflow: hidden;
    pointer-events: none; 
}

/* 2. The Base Emoji Style */
.emoji {
    position: absolute;
    top: -50px;
    font-size: 2rem;
    filter: grayscale(100%);
    opacity: 0.15; 
    /* 'infinite' makes it loop forever */
    /* 'linear' makes the speed constant so it doesn't stutter */
    animation: fall 10s linear infinite; 
}

/* 3. THE "BATTERIES" (Timing and Position) */
/* Without these, they stay at the top-left forever */
.emoji:nth-child(1) { left: 5%;  animation-duration: 13s;  animation-delay: 0s; }
.emoji:nth-child(2) { left: 15%; animation-duration: 19s; animation-delay: 2s; }
.emoji:nth-child(3) { left: 30%; animation-duration: 14s; animation-delay: 4s; }
.emoji:nth-child(4) { left: 50%; animation-duration: 20s; animation-delay: 1s; }
.emoji:nth-child(5) { left: 65%; animation-duration: 11s;  animation-delay: 5s; }
.emoji:nth-child(6) { left: 80%; animation-duration: 17s; animation-delay: 3s; }
.emoji:nth-child(7) { left: 90%; animation-duration: 25s; animation-delay: 6s; }
.emoji:nth-child(8) { left: 95%; animation-duration: 30s; animation-delay: 0.5s; }

/* 4. The Movement Logic */
@keyframes fall {
    0% {
        transform: translateY(-25px) rotate(0deg);
    }
    100% {
        transform: translateY(305vh) rotate(360deg);
    }
}

.grid-overlay {
    position: absolute;
    /* Aligns it to the right where your image is */
    left: 43.5rem; 
    top: -2.5vh;
    
    /* Size of the circular area */
    width: 75rem;
    height: 75rem;
    
    /* The Grid Pattern */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;

    /* 1. This clips the container itself into a circle */
    border-radius: 50%;

    /* 2. This makes the grid lines fade out smoothly toward the edges */
    /* This is what prevents the 'rectangular' or 'chopped' look */
    mask-image: radial-gradient(circle, black 40%, transparent 75%);
    -webkit-mask-image: radial-gradient(circle, black 40%, transparent 75%);

    z-index: -1;
    pointer-events: none;
}

.instruction {
  display: flex;             /* 1. Enable Flexbox */
  flex-direction: column;    /* 2. Stack children (the p tag) vertically */
  justify-content: center;   /* 3. Center children vertically */
  align-items: center;       /* 4. Center children horizontally */

  /* Keep your existing styles below */
  width: 85%;
  max-width: 800px;
  min-height: 400px;         /* 5. Ensure there is enough height to see the centering */
  padding: 40px; 
  background: rgba(165, 165, 165, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(165, 165, 165, 0.3);
  margin: 70px auto 300px auto;
  position: relative;

  margin-bottom: 400px;
}

.face {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
  /* Use vw (viewport width) so it shrinks as the window does */
  width: 15vw; 
  
  /* Set a limit so it doesn't get too huge on big screens */
  max-width: 250px; 
  /* Set a limit so it doesn't disappear on tiny screens */
  min-width: 80px;
  height: auto;
  
  /* Initial state: both are hidden until animation starts */
  opacity: 0;
  /* Apply the animation: 0.8s duration, loops forever */
  animation: alternate-face 1.2s infinite;
}

/* Face 1 starts immediately */
.face1 {
  animation-delay: 0s;
}

/* Face 2 starts halfway through the cycle */
.face2 {
  animation-delay: 0.6s; /* Half of the 0.8s duration */
}

@keyframes alternate-face {
  /* Spend most of the time visible, then vanish instantly */
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}

@import url('https://fonts.googleapis.com/css?family=Amiri|Poppins&display=swap');

/**** slider ****/

#testimonial-slide-container, ul
{
	height: 200px;
}

#testimonial-slide-container
{
	margin: auto;
	overflow: hidden;
	padding: 20px;
	
	margin-top: 50px;
  margin-bottom: 400px;
 
	
	position: relative;
  right: -20%;
	width: 600px;

  /* From https://css.glass */
  background: rgba(165, 165, 165, 0.1);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(165, 165, 165, 0.3);

  z-index: 5;
  
}

.glass-decoration {
    /* Aspect Ratio: maintains a rectangular shape relative to width */
    width: 80px;
    height: 120px; 

    /* Liquid Glass Effect (Matching your existing style) */
    background: rgba(165, 165, 165, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(165, 165, 165, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    
    /* Make them look slightly "deeper" or "behind" */
    opacity: 0.6;
    pointer-events: none;
}

#testimonial-slide-container li
{
	float: left;
	position: relative;
	width: 600px;
	display: inline-block;
	height: 200px;
  
}

#testimonial-slide-container ul
{
	list-style: none;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 9000px;
	transition: left .3s linear;
	-moz-transition: left .3s linear;
	-o-transition: left .3s linear;
	-webkit-transition: left .3s linear;
	margin-left: -25px;
  font-family: 'Poppins', sans-serif;
 color: #a8a8a8;
}

/*** Content ***/

.testimonial-slide
{
  display: table;
	margin: 0 auto;
	padding: 20px 0 0 0;
	width: 550px;
  min-height: 180px;
}

#testimonial-slide-positioner {
 display: table-cell;
 vertical-align: middle;
}

.testimonial-slide h4
{
  float: right;
  font-family: 'Mona Sans', sans-serif;
  margin: 0 25px;
  font-size: 24px;
  letter-spacing: -1px;
 	color: #dddddd;

  font-weight: 600;
}

.testimonial-slide  p
{
 display: inline-block;
	margin: 0 25px;
	font-weight: semi-bold;
	line-height: 150%;
	text-align: justify;
}

/*** target hooks ****/

@-webkit-keyframes slide-animation {
	0% {opacity:0;}
	2% {opacity:1;}
	20% {left:0px; opacity:1;}
	22.5% {opacity:0.6;}
	25% {left:-600px; opacity:1;}
	45% {left:-600px; opacity:1;}
	47.5% {opacity:0.6;}
	50% {left:-1200px; opacity:1;}
	70% {left:-1200px; opacity:1;}
	72.5% {opacity:0.6;}
	75% {left:-1800px; opacity:1;}
	95% {opacity:1;}
	98% {left:-1800px; opacity:0;} 
	100% {left:0px; opacity:0;}
}

#testimonial-slide-container ul
{
	-webkit-animation: slide-animation 25s infinite;
}

/* pause content on mouse over */

#testimonial-slide-container ul:hover
{
	-moz-animation-play-state: paused;
	-webkit-animation-play-state: paused;
}

.star-pattern-overlay {
    position: absolute;
    /* Adjusted top to be relative to the container rather than a massive negative percentage */
    top: -825px;
    left: -7%;
    width: 100%;
    height: 100% !important;
    min-height: 600px;
    
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="12px" height="12px" fill="white" opacity="0.1"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg>');
    
    background-size: 100px 100px; 
    background-repeat: repeat;

    /* ANIMATION ADDED HERE */
    /* 20s is the speed - increase for slower, decrease for faster */
    animation: moveStarsRight 20s linear infinite;

    mask-image: radial-gradient(circle, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle, black 40%, transparent 80%);
    z-index: 1;
    pointer-events: none;
}

/* The logic for the infinite scroll */
@keyframes moveStarsRight {
    from {
        background-position: 0 0;
    }
    to {
        /* This moves the background 100px (one full tile) to the right */
        background-position: 100px 0;
    }
}

/* Shared Styles for all Leveling Rectangles */
.glass-deco, .glass-deco2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%); /* This keeps it vertically centered */
    width: 60px;
    height: 110px;
    background: rgba(165, 165, 165, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(165, 165, 165, 0.3);
    pointer-events: none;
    z-index: 1; /* Sits behind the main content box */
}

/* Positioning for Testimonial Rectangles (relative to 600px box) */
.deco-left { 
    left: -80px; 
}
.deco-right { 
    right: -80px; 
}

/* Positioning for Instruction Rectangles (relative to 800px box) */
.deco-left2 { 
    left: -90px; 
}
.deco-right2 { 
    right: -90px; 
}

/* Fix: Make sure the instruction box doesn't hide things sticking out of it */
.instruction {
    /* Keep your existing flex/background styles */
    overflow: visible !important; 
}

/* Hide on small screens so they don't squash the text */
@media (max-width: 1050px) {
    .glass-deco, .glass-deco2 {
        display: none;
    }
}

@keyframes levitateRight {
    0% { transform: translateX(0); }
    50% { transform: translateX(-100px); }
    100% { transform: translateX(0); }
}