body{
    overflow-x: hidden;
}


.pl {
    display: block;
    width: 9.375em;
    height: 9.375em;
  }
  
  .pl__arrows,
  .pl__ring-rotate,
  .pl__ring-stroke,
  .pl__tick {
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }
  
  .pl__arrows {
    animation-name: arrows42;
    transform: rotate(45deg);
    transform-origin: 16px 52px;
  }
  
  .pl__ring-rotate,
  .pl__ring-stroke {
    transform-origin: 80px 80px;
  }
  
  .pl__ring-rotate {
    animation-name: ringRotate42;
  }
  
  .pl__ring-stroke {
    animation-name: ringStroke42;
    transform: rotate(-45deg);
  }
  
  .pl__tick {
    animation-name: tick42;
  }
  
  .pl__tick:nth-child(2) {
    animation-delay: -1.75s;
  }
  
  .pl__tick:nth-child(3) {
    animation-delay: -1.5s;
  }
  
  .pl__tick:nth-child(4) {
    animation-delay: -1.25s;
  }
  
  .pl__tick:nth-child(5) {
    animation-delay: -1s;
  }
  
  .pl__tick:nth-child(6) {
    animation-delay: -0.75s;
  }
  
  .pl__tick:nth-child(7) {
    animation-delay: -0.5s;
  }
  
  .pl__tick:nth-child(8) {
    animation-delay: -0.25s;
  }
  
  /* Animations */
  @keyframes arrows42 {
    from {
      transform: rotate(45deg);
    }
  
    to {
      transform: rotate(405deg);
    }
  }
  
  @keyframes ringRotate42 {
    from {
      transform: rotate(0);
    }
  
    to {
      transform: rotate(720deg);
    }
  }
  
  @keyframes ringStroke42 {
    from,
      to {
      stroke-dashoffset: 452;
      transform: rotate(-45deg);
    }
  
    50% {
      stroke-dashoffset: 169.5;
      transform: rotate(-180deg);
    }
  }
  
  @keyframes tick42 {
    from,
      3%,
      47%,
      to {
      stroke-dashoffset: -12;
    }
  
    14%,
      36% {
      stroke-dashoffset: 0;
    }
  }
.Hero-Container-Placer{
    padding: 0.5vw;
}
/* .Hero-Container {
    position: relative;
    height: 100vh;
    background: url('../Resources/Herobg.png') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    border-radius: 1vw;
}

.Hero-Container::before {
    border-radius: 1vw;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    z-index: 1;
} */
.Hero-Container {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    border-radius: 1vw;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.Hero-Video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.Hero-Video-Overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Adjust the opacity for subtlety */
    z-index: 0; /* Higher than video (z-index: -1), lower than content */
}



/* Ensures content appears above the overlay */
.Hero-Container * {
    position: relative;
    z-index: 2;
}

.Hero-nav-Container{
    width: 100%;
    top: 0;
    padding:0px 3vw;
    z-index: 10000;
    color: white;
    position: fixed;

    background: rgba(32, 32, 32, 0.2); /* light translucent background */
    backdrop-filter: blur(10px); /* blur effect */
    -webkit-backdrop-filter: blur(10px); /* for Safari support */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* optional glassy border */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* subtle shadow for depth */
}

.Hero-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1vw 1vw;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.3); */
    /* position: fixed; */
    width: 100%;
    /* top: 0; */
    z-index: 1000;
}

/* Hero Nav Left - Align to Left */
.Hero-Nav-Left {
    display: flex;
    gap: 25px;
    flex: 1;
}

.Contact-a{
    font-family: 'Poppins';
    font-size: 1.2rem;
    text-decoration: none;
    color: white;
    font-weight: 500;
}
.Contact-a:hover{
    color: black;
}
.Hero-Nav-Left a {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    font-family: 'Poppins';
    font-weight: 500;
    cursor: pointer;
    transition: 0.5s;
}

.Hero-Nav-Left a:hover {
    font-weight: bold;
    transition: 0.5s;
}


/* Hero Nav Center - Centered */
.Hero-Nav-Center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Hero-Nav-Center-img{
   height: 5rem;
}

/* Hero Nav Right - Align to Right */
.Hero-Nav-Right {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}
.Phone-icon-nav{
    height: 25px;
    width: 25px;
}

.Hero-Nav-Right button {
    background: transparent;
    color: white;
    border: 3px solid #0E323D;
    padding: 0.5vw 1vw;
    border-radius: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}

.Hero-Nav-Right button:hover {
    background: #0E323D;
    color:white;
}

/* hero-texts */
.Hero-main-Texts{
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding-top: 5vw; */
    text-align: center ;
}
.Hero-H1-text{
    font-family: 'Poppins';
    text-align: center;
    font-weight: 300;
    font-size: 3.45vw;
    line-height: 0.9;
    padding: 1.25vw;
    color: #fff;
    /* background-color: #fff;
    mix-blend-mode: lighten; */
    /* outline: 2px solid #000;
    outline-offset: -10px; */
}
.Hero-H1-text b{
    font-weight: 600;
}
.Hero-Span-Test{
    font-weight: 700;
}
.phone-compass-logo{
    display: none;
}
/* --------------------------------- */
.hero-hamburger {
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
    color: white;
}

/* Full-Screen Navigation */
.hero-nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
    z-index: 999;
}

/* Navigation Links */
.hero-nav-links {
    text-align: center;
}

.hero-nav-links div {
    margin: 20px 0;
}

.hero-nav-links div a {
    font-family: 'Poppins';
    color: white;
    font-weight: 200;
    text-decoration: none;
    font-size: 3vw;
    transition: color 0.5s;
}

.hero-nav-links div a:hover {
    color: #ff9800;
    transition: 0.5s;
}

/* Close Button */
.hero-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    z-index: 2000;
}
.hero-nav-menu.active {
    transform: translateY(0);
}

/* Responsive */
@media (min-width: 481px) {
    .hero-hamburger {
        display: none;
    }
}
.navbar-scrolled {
    background-color: #0E323D !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-scrolled a {
    color: #fbfbfb !important;
}


/* --------------------------------- */
.Hero-Text {
    position: absolute;
    top: 50%;
    left: 5%;
    width: 35%;
    color: white;
    font-size: 1.2rem;
    width: 20vw;
    font-weight: 200;
    font-family: "Poppins", sans-serif;
    z-index: 2;
}

.Hero-PlayBtn {
    margin-top: 10%;
    color: white;
    padding: 0.5vw 2vw;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.8); /* White border with slight transparency */
    cursor: pointer;
    font-size:1rem;
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
    backdrop-filter: blur(10px); /* Blur effect for glassmorphism */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2); /* Soft glow effect */
    transition: all 0.5s ease;
}

/* Hover Effect */
.Hero-PlayBtn:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.3);
    transition: 0.5s;
}


/* Right Round Arrow */
.Hero-Arrow {
    position: absolute;
    top: 50%;
    right: 15%;
    z-index: 2;
}

.Hero-Arrow-Circle {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    border: 1px solid white;
    /* Glassmorphism Effect */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari Support */
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}
.Hero-Arrow-Circle-span{
    display: inline-block;
    transform: rotate(-45deg);
}

/* Bottom Left Testimonials */
.Hero-Testimonials {
    position: absolute;
    bottom: 5%;
    left: 20px;
    display: flex;
    align-items: center;
    z-index: 2;
    flex-direction: column;
    color: white;
}

.Hero-UserIcons-img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    margin-left: -20px;
}
.Hero-Testimonials-test{
    font-size: 1rem;
    font-family: 'Poppins';
    line-height: 1;
    /* margin-left: 1vw; */
}
.Hero-Badge {
    position: absolute;
    top: 75%;
    right: 7%;
    display: flex;
    align-items: center;
    padding: 0.5vw;
    border-radius: 50px;
    width: fit-content;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    /* Glassmorphism Effect */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari Support */
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
    border: 1px solid rgb(170, 170, 170);

}

.Hero-Badge-Icon {
    background: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.Hero-Badge-Icon i {
    color: rgb(30, 41, 59);
    font-size: 18px;
}

/* ---------------------Hero Testimonial Model ----------------*/
.Hero-Testimonial-Modal {
    display: none;
    position: absolute;
    /* position: fixed; */
    bottom: 7vw;
    left: 2vw;
    width: fit-content;
    height: fit-content;
    justify-content: center;
    border-radius: 1vw;
    align-items: center;
}

.Hero-Testimonial-Modal-content {
    width: 15vw;
    height: 20vw;
    padding: 2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 1vw;
    text-align: center;
    position: relative;
    background-color: rgba(0, 0, 0, 0.6);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.5s ease-in-out;
    backdrop-filter: blur(10px); /* blur effect */
    -webkit-backdrop-filter: blur(10px); /* for Safari support */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* optional glassy border */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* subtle shadow for depth */
}

.Hero-Testimonial-Modal-close {
    position: absolute;
    top: 0.5vw;
    right: 1vw;
    font-size: 1.5vw;
    cursor: pointer;
    color: #f4f4f4;
}

.Hero-Testimonial-Modal-close:hover {
    color: red;
}

#Hero-Testimonial-Modal-img {
    width: 7vw;
    height: 7vw;
    border-radius: 50%;
    margin-bottom: 10px;
}

#Hero-Testimonial-Modal-name {
    font-size: 1vw;
    margin-bottom: 1vw;
    color: #ffffff;
    font-family: 'Poppins';
    font-weight: 400;
}

#Hero-Testimonial-Modal-review {
    font-size: 1vw;
    font-family: 'Poppins';
    font-weight: 200;
    color: #c8c8c8;
}
@keyframes professionalBounce {
    0%, 100% {
      transform: translateY(0);
    }
    30% {
      transform: translateY(-10px);
    }
    50% {
      transform: translateY(0);
    }
    70% {
      transform: translateY(-5px);
    }
  }
  
  .Hero-Enquier-Icons-placer {
      position: fixed;
      bottom: 15px;
      right: 15px;
      display: flex;
      gap: 10px;
      z-index: 1000;
  }
  
  .Hero-Enquier-Icons-size {
      height: 3.5vw;
      animation: professionalBounce 2s ease-in-out infinite;
      transition: transform 0.5s ease;
      cursor: pointer;
  }
  
  /* Sequential bounce delays */
  .Hero-Enquier-Icons-placer a:nth-child(1) .Hero-Enquier-Icons-size {
      animation-delay: 0s;
  }
  
  .Hero-Enquier-Icons-placer a:nth-child(2) .Hero-Enquier-Icons-size {
      animation-delay: 1s;
  }
  
/* Responsive Design */
@media screen and (max-width: 768px) {
    .Hero-UserIcons-img {
        width: 15vw;
        height: 15vw;
    }

    .Hero-Testimonial-Modal-content {
        width: 50vw;
        height: 80vw;
        padding: 4vw;
    }

    .Hero-Testimonial-Modal {
        bottom: -15vw;
    }
    #Hero-Testimonial-Modal-img {
        width: 20vw;
        height: 20vw;
    }

    #Hero-Testimonial-Modal-name {
        font-size: 4vw;
    }

    #Hero-Testimonial-Modal-review {
        font-size: 3vw;
    }

    .Hero-Testimonial-Modal-close {
        font-size: 4vw;
    }
}

/* Modal Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
/* ---------------------Hero Testimonial Model end ----------------*/

@media(max-width:1550px){
    .Hero-Nav-Left a {
        font-size: 1.2rem;
    }
    .Hero-Nav-Center-img{
        height: 4rem;
    }
    .Hero-Nav-Right button {
        font-size: 1.3rem;
    }
    .Hero-H1-text{
        font-size: 3.45vw;
    }
    .Hero-Text {
        font-size: 1.1rem;
    }
    .Hero-PlayBtn {
        font-size: 1.4rem ;
    }
    .Hero-Arrow-Circle {
        width: 4rem;
        height: 4rem;
        font-size: 1.8rem;
    }
    .Hero-UserIcons-img {
        width: 2.9rem;
        height: 2.9rem;
    }
    .Hero-Testimonials-test{
        font-size: 0.9rem;
    }
    .Hero-Badge {
        font-size: 0.9rem;
    }
    .Hero-Badge-Icon {
        width: 2.8rem;
        height: 2.8rem;
    }
}
@media(max-width:1350px){
    .Hero-Nav-Left a {
        font-size: 1.1rem;
    }
    .Hero-Nav-Center-img{
        height: 3rem;
    }
    .Hero-Nav-Right button {
        font-size: 1.1rem;
    }
    .Contact-a{
        font-size: 1.1rem;
    }
    .Hero-H1-text{
        font-size: 3.45vw;
    }
    .Hero-Text {
        font-size: 0.9rem;
    }
    .Hero-PlayBtn {
        font-size: 1.2rem ;
    }
    .Hero-Arrow-Circle {
        width: 4rem;
        height: 4rem;
        font-size: 1.8rem;
    }
    .Hero-UserIcons-img {
        width: 2.7rem;
        height: 2.7rem;
    }
    .Hero-Testimonials-test{
        font-size: 0.8rem;
    }
    .Hero-Badge {
        font-size: 0.8rem;
    }
    .Hero-Badge-Icon {
        width: 2.6rem;
        height: 2.6rem;
    }
}
@media(max-width:1132px){
    .Hero-Nav-Left a {
        font-size: 0.9rem;
    }
    .Hero-Nav-Center-img{
        height: 2rem;
    }
    .Contact-a{
        font-size: 0.9rem;
    }
    .Hero-Nav-Right button {
        font-size: 0.9rem;
    }
    .Hero-H1-text{
        font-size: 3.5rem;
    }
    .Hero-Text {
        font-size: 0.8rem;
    }
    .Hero-PlayBtn {
        font-size: 1rem ;
    }
    .Hero-Arrow-Circle {
        width: 4rem;
        height: 4rem;
        font-size: 1.8rem;
    }
    .Hero-UserIcons-img {
        width: 2.5rem;
        height: 2.5rem;
    }
    .Hero-Testimonials-test{
        font-size: 0.7rem;
    }
    .Hero-Badge {
        font-size: 0.7rem;
    }
    .Hero-Badge-Icon {
        width: 2.4rem;
        height: 2.4rem;
    }
}
@media (max-width: 1024px) and (orientation: portrait){
    .Hero-Enquier-Icons-size{
        height: 7.5vw;

    }
    .Hero-nav-Container{
        display: none;
    }
    .hero-hamburger{
        display: flex;
    }
    
    .Hero-Nav-Left a {
        font-size: 0.6rem;
    }
    .Hero-Nav-Center-img{
        height: 1rem;
    }
    .Hero-Nav-Right button {
        font-size: 0.6rem;
    }
    .Hero-H1-text{
        font-size: 4rem;
    }
    .Hero-Text {
        font-size: 2rem;
        width: 40vw;
    }
    .Hero-PlayBtn {
        font-size: 2rem ;
    }
    .Hero-Arrow-Circle {
        width: 3rem;
        height: 3rem;
        font-size: 1.8rem;
    }
    .Hero-UserIcons-img {
        width: 3rem;
        height: 3rem;
    }
    .Hero-Testimonials-test{
        font-size: 1rem;
    }
    .Hero-Badge {
        font-size: 1.2rem;
    }
    .Hero-Badge-Icon {
        width: 2.4rem;
        height: 2.4rem;
    }
    .Hero-Testimonial-Modal {
        bottom: 20vw;
    }
    .Hero-Testimonial-Modal-content {
        width: 40vw;
        height: 50vw;
    }
    #Hero-Testimonial-Modal-img{
        height: 20vw;
        width: 20vw;
    }
    #Hero-Testimonial-Modal-name {
        font-size: 4vw;
    }
    #Hero-Testimonial-Modal-review {
        font-size: 2.5vw;
    }
    .Hero-Testimonial-Modal-close {
        font-size: 3vw;
    }
}
@media (max-width: 972px) and (orientation: portrait){
    .Hero-H1-text{
        font-size: 4.3rem;
    }
    .Hero-Text {
        font-size: 1rem;
        width: 50vw;
    }
    .Hero-PlayBtn {
        font-size: 1rem ;
    }
    .Hero-Arrow-Circle {
        width: 4rem;
        height: 4rem;
        font-size: 1.8rem;
    }

    .Hero-Badge {
        font-size: 0.7rem;
    }
    .Hero-Badge-Icon {
        width: 2.4rem;
        height: 2.4rem;
    }
    /* .Hero-Testimonial-Modal {
        bottom: -45vw;
    } */
}
@media(max-width:480px){
    .phone-compass-logo{
        display: flex;
        position: absolute;
        top: 20px;
    }
    .phone-logo-img{
        height: 12vw;
    }
    .Hero-nav-Container{
        display: none;
    }
    .Hero-Container-Placer{
        padding: 0;
    }
    .Hero-Container {
        border-radius: none;
    }
    .Hero-H1-text{
        margin-top: 0;
        font-size: 9vw;
    }
    .Hero-Text {
        top: 50%;
        font-size: 4vw;
        width: 80vw;
    }
    .Hero-PlayBtn {
        margin-top: 3%;
        padding: 2vw 4vw;
    }
    .Hero-Arrow{
        top: 60%;
    }
    .Hero-Badge{
        display: none;
    }
    .Hero-Testimonials{
        bottom: 0;
        top: 75vh;
        left: 20px;
    }
    .Hero-Testimonial-Modal {
        bottom: 50vw;
        left:20px;
    }   
    .Hero-Testimonial-Modal-content {
        width: 50vw;
        height: 65vw;
        border-radius: 2vw;
    }
    .Hero-Testimonial-Modal-close {
        font-size: 6vw;
        margin-top: -5px;
    }
    .Hero-Enquier-Icons-placer{
        position: fixed;
        bottom: 15px;
        right: 15px;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .Hero-Enquier-Icons-size{
        height: 11vw;
    }
    .hero-nav-links div a{
        font-size: 5vw;
    }
}
@media screen and (min-width: 480px) and (max-width: 932px)and (max-height:600px) and (orientation: landscape){
    .Hero-Container{
        height: 100vh;
    }
}
@media (min-width: 1950px) {
    .Hero-Nav-Left a {
        font-size: 1.3vw;
    }
    .Hero-Nav-Center-img{
        height: 4vw;
    }
    .Hero-Nav-Right button {
        font-size: 1.3vw;
    }
    .Hero-H1-text{
        font-size: 5vw;
    }
    .Hero-Text {
        font-size: 1.2vw;
    }
    .Hero-PlayBtn {
        font-size: 1.3vw ;
    }
    .Hero-Arrow-Circle {
        width: 7vw;
        height: 7vw;
        font-size: 1.8vw;
    }
    .Hero-UserIcons-img {
        width: 3vw;
        height: 3vw;
    }
    .Hero-Testimonials-test{
        font-size: 1vw;
    }
    .Hero-Badge {
        font-size: 1vw;
    }
    .Hero-Badge-Icon {
        width: 3vw;
        height: 3vw;
    }
}