*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;   
   }
   body{
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    font-family: "Inter", sans-serif;
    font-family: "Roboto", sans-serif;
    scroll-behavior: smooth;
   }
   body::-webkit-scrollbar{
       display: none;
   }
  .homie{
     position: relative;
    height: 100vh;
    width: 100vw;
    z-index: 0;
    background-color:black;
    background-image: url(../img/background/colored-powder-explosion.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1s ease-in-out;
    padding: 0px;
  }
  .subhomie{
    position: relative;
    z-index: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.768);
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .navbar{
    height: 15%;
    width: 100%;
    /* background-color: antiquewhite; */
    position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.3s ease-in-out;
    overflow: hidden;
    display: flex;
  }
  .navbar.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index:1111111;
  background-color: rgba(0, 0, 0, 0.895); /* or any color */
  box-shadow: 0 2px 8px rgba(0,0,0,0.3); /* Optional */
  transition: background-color 0.3s ease-in-out;
}

  .logo{
    height: 100%;
    width: 25%;
    /* background-color: red; */
  }
  .logo img{
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
  .links{
    height: 100%;
    width: 50%;
    /* background-color: greenyellow; */
    display: flex;
    align-items: center;
    justify-content: center;
  }
 .links a {
  position: relative;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  padding: 13px 20px;
  letter-spacing: 1px;
  transition: all 0.3s ease-in-out;
}

.links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 5px; /* You can adjust this based on spacing */
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #FFF300;
  transition: width 0.3s ease-in-out;
}

/* Apply underline on hover and active */
.links a:hover::after,
.links a:active::after {
  width: 70%; /* Stylish short underline */
}

/* Optional: text color change on hover/active */
.links a:hover,
.links a:active {
  color: #FFF300;
}

.links a.active::after {
  width: 70%; /* Stylish short underline */
}
.links a.active {
  color: #FFF300;
}


  .call{
    height: 100%;
    width: 25%;
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.call a{
    text-decoration: none;
      background-color: #FFF300;
    color: black;
    font-size: 16px;
    font-weight: 400;
    transform: scaleY(1.0);
    font-family: "Poppins", sans-serif;
    /* font-family: "Inter", sans-serif; */
    border-radius: 50px 50px 50px 50px;
    border: 2px solid #FFF300;
    padding: 10px 30px 10px 30px;
    letter-spacing: 2px;
    transition: all 0.3s ease-in-out;
}
.call a:hover{
    background-color:transparent;
    color:white;
    transition: all 0.3s ease-in-out;
}
.call i{
    color: black;
    margin-right: 10px;
}
.call a:hover i{
    color: #FFF300;
    transition: all 0.3s ease-in-out;
}
  .navbod{
    height: 85%;
    width: 86%;
    padding: 30px;
    /* background-color: blue; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
}
.navbod h1{
    font-size: 50px;
    font-weight: 700;
    color: #FFF300;
    text-align: center;
    margin-bottom: 20px;
}
.navbod h1 span{
    color: white;
}
.navbod p{
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 2px;
    color: white;
    text-align: center;
    margin-bottom: 10px;
}
.gal{
    position: relative;
    z-index: -1;
    height: auto;
    width: 100%;
    background-color: #1b1b1b;
    /* background-color: aqua; */
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 100px;
}
.subgal{
    position: relative;
    z-index: -1;
    height: 100%;
    width: 100%;
    display:grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    gap: 20px; /* spacing between columns */
    padding: 20px;
    place-items: center;
    align-items: center;
    overflow: hidden;
    justify-content: center;

}
.gala{
    height: 350px;
    width: 470px;
    /* background-color: bisque; */
    overflow: hidden;
}
.gala img{
    
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}
.gala img:hover{
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}










.dummyspace{
  height: 300px; 
  width: 100%; 
  background-color: #fff300; 
  display: flex; 
  justify-content: center; 
  align-items: center;
}
.dummyspace h1{
  text-align: center; 
  font-family: Poppins, 
  sans-serif;font-size: 60px;
}
.footer{
  height: 400px;
  width: 100%;
  background-color: #0b0b0b;
  padding: 0px 0px;
}
.subfooter{   
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 55px;
  /* background-color: saddlebrown; */
  flex-direction: column;
}
.sf1{
  height: 85%;
  width: 100%;
  padding: 0px 20px;
  /* background-color: salmon; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.sf1a{
  height: 100%;
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: first baseline baseline;
  justify-content: center;
  /* background-color: blueviolet; */
  overflow: hidden;
}
.sf1a img{
  height: 150px;
  width: 130px;
  object-fit: cover;
}
.sf1a h2{
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #FFF300;
  text-align: left;
  margin-bottom: 10px;
  
}
.sf1a p{
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color:white;
  text-align: left;
  margin-bottom: 5px;
}
.sf1b{
  height: 100%;
  width: 55%;
  /* background-color: #504f3c; */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content:flex-end;
}
.sf1b1{
  height:20%;
  width: 100%;
  /* background-color: cadetblue; */
  display: flex;
  align-items:center;
  justify-content: flex-end;
}
.sf1b1 i{
  font-size: 22px;
  padding: 12px;
  background-color: #e6e3e3;
  color: #222;
  margin: 6px;
}
.sf1b1 i:hover{
  color: #FFF300;
  background-color: #222;
  transition: all 0.3s ease-in-out;
}
.sf1b2{
  height: 20%;
  width: 100%;
  /* background-color: aqua; */
  display: flex;
  align-items: center;
  justify-content:flex-end;
}
.sf1b2 i{
  font-size: 22px;
  padding: 12px;
  color: #fff300;
  margin: 2px;
  margin-bottom: 10px;
}
.sf1b2 p{
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: white;
}
.sf1b3{
  height: 25%;
  width: 100%;
  /* background-color: blue; */
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  border-right: solid 2px gray;
  margin-bottom: 25px;
  padding-right: 10px;
}
.sf1b2 h2{
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: white;
  text-align: left;
  margin-bottom: 10px;
}
.sf1b2 p{
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: white;
  text-align: left;
  margin-bottom: 0px;
}
.sf1b3 h2{
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color:#FFF300;
  text-align: left;
  margin-bottom: 15px;
}
.sf1b3 p{
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: white;
  text-align: left;
  margin-bottom: 0px;
}
.sf2{
  height:15%;
  width: 100%;
  padding: 10px 20px;
  /* background-color: rgba(0, 0, 0, 0.511); */
  border-top: solid 2px rgba(65, 64, 64, 0.356);
  display: flex;
  align-items: center;
  justify-content:space-between;
}
.sf2a{
  height: 100%;
  width: 33%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.sf2a a{
  margin: 4px;
  font-family: "Poppins", sans-serif;
  color: white;
  /* font-weight: 300; */
  font-size: 14px;
  text-decoration: none;
}
.sf2a p{
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color:white;
}
.sf2a a:hover{
  color: #FFF300;
  transition: all 0.3s ease-in-out;
}
.sf2b{
  height: 100%;
  width: 60%;
  /* background-color: #fff; */
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.sf2b p{
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: white;
}
.sf2b span a{
  color: #FFF300;
  text-decoration: none;
}
  /* Circular Scroll Progress */
    .circular-progress {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 53px;
      height: 53px;
      border-radius: 50%;
      background: conic-gradient(#FFF300 0deg, #cccccc67 0deg);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      cursor: pointer;
      transition: background 0.2s ease-in-out;
    }

    .circular-progress::before {
      content: '';
      position: absolute;
      width: 46px;
      height: 46px;
      background: #1b1b1b;
      border-radius: 50%;
      z-index: -1;
      pointer-events: none; /* ✅ fix click issue */
    }

    .arrow-down {
      font-size: 22px;
      color: white;
      transition: transform 0.2s;
      pointer-events: none; /* ✅ allow parent div to receive click */
    }

    .circular-progress:hover .arrow-down {
      transform: translateY(3px);
    }
    /* Rotate arrow to point upward when scrolling back */
.rotate-up {
  transform: rotate(180deg);
}
/* Hide mobile navbar and menu by default on larger screens */
@media (min-width: 768px) {
    .mobile-navbar, 
    .mobile-slide-menu {
        display: none !important;
    }
}


@media screen and (max-width:600px) {
  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;   
   }
   body{
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    font-family: "Inter", sans-serif;
    font-family: "Roboto", sans-serif;
    scroll-behavior: smooth;
   }
   body::-webkit-scrollbar{
       display: none;
   }
  .homie{
    overflow: hidden;
     position: relative;
    height: 100vh;
    width: 100vw;
    z-index: 0;
    background-color:black;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1s ease-in-out;
    padding: 0px;
  }
  .subhomie{
    position: relative;
    z-index: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.822);
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
     /* Mobile Navbar */
.mobile-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000000d9;
    padding: 5px 20px;
    position: fixed;
    width: 100vw;
    top: 0;
    z-index: 10000;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
}

/* Logo */
.mobile-logo-box img {
    height: 60px;
}

/* Hamburger Icon */
.mobile-menu-trigger {
    font-size: 34px;
    color: #fff200d9;
    -webkit-text-stroke: 1px rgb(22, 24, 76);
    cursor: pointer;
}

/* Mobile Slide Menu */
.mobile-slide-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #0b0b0b;
    z-index: 100000;
    transition: left 0.4s ease-in-out;
}

/* Show when active */
.mobile-slide-menu.active {
    left: 0;
}

/* Menu Top Bar */
.menu-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Logo inside menu */
.menu-logo-img {
    height: 150px;
}

/* Close Button */
.menu-close-icon {
    text-align: right;
    padding: 1px;
    cursor: pointer;
    background-color: #FFF300;
}

.menu-close-icon i {
    font-size: 24px;
    color: black;
    padding: 5px 8px;
}

/* Menu List */
.menu-list {
    list-style: none;
    padding-top: 30px;
    margin: 0;
    text-align: left;
}

.menu-list li {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(253, 253, 253, 0.2);
}

.menu-list a {
    text-decoration: none;
    color:whitesmoke;
    font-size: 18px;
    font-weight: 600;
    display: block;
    transition: color 0.3s ease-in-out;
}

.menu-list a:hover {
    color: #FFF300;
}

/* Active Link */
.menu-list a.menu-active {
    color: white;
    font-weight: bold;
    border-left: 4px solid #FFF300;
    padding-left: 10px;
}

  .navbar{
    display: none;
    overflow: hidden;
    height: 15%;
    width: 100%;
    /* background-color: antiquewhite; */
    position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.3s ease-in-out;
    overflow: hidden;
    /* display: flex; */
  }
  .navbar.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index:1111111;
  background-color: rgba(0, 0, 0, 0.895); /* or any color */
  box-shadow: 0 2px 8px rgba(0,0,0,0.3); /* Optional */
  transition: background-color 0.3s ease-in-out;
}

  .logo{
    height: 100%;
    width: 25%;
    /* background-color: red; */
  }
  .logo img{
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
  .links{
    height: 100%;
    width: 50%;
    /* background-color: greenyellow; */
    display: flex;
    align-items: center;
    justify-content: center;
  }
 .links a {
  position: relative;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  padding: 13px 20px;
  letter-spacing: 1px;
  transition: all 0.3s ease-in-out;
}

.links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 5px; /* You can adjust this based on spacing */
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #FFF300;
  transition: width 0.3s ease-in-out;
}

/* Apply underline on hover and active */
.links a:hover::after,
.links a:active::after {
  width: 70%; /* Stylish short underline */
}

/* Optional: text color change on hover/active */
.links a:hover,
.links a:active {
  color: #FFF300;
}

.links a.active::after {
  width: 70%; /* Stylish short underline */
}
.links a.active {
  color: #FFF300;
}


  .call{
    height: 100%;
    width: 25%;
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.call a{
    text-decoration: none;
      background-color: #FFF300;
    color: black;
    font-size: 16px;
    font-weight: 400;
    transform: scaleY(1.0);
    font-family: "Poppins", sans-serif;
    /* font-family: "Inter", sans-serif; */
    border-radius: 50px 50px 50px 50px;
    border: 2px solid #FFF300;
    padding: 10px 30px 10px 30px;
    letter-spacing: 2px;
    transition: all 0.3s ease-in-out;
}
.call a:hover{
    background-color:transparent;
    color:white;
    transition: all 0.3s ease-in-out;
}
.call i{
    color: black;
    margin-right: 10px;
}
.call a:hover i{
    color: #FFF300;
    transition: all 0.3s ease-in-out;
}
  .navbod{
    overflow: hidden;
    height: 85%;
    width: 100%;
    padding: 30px;
    /* background-color: blue; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
}
.navbod h1{
    font-size: 38px;
    font-weight: 700;
    color: #FFF300;
    text-align: center;
    margin-bottom: 20px;
}
.navbod h1 span{
    color: white;
}
.navbod p{
    font-size: 17px;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 2px;
    color: white;
    line-height: 30px;
    text-align: center;
    margin-bottom: 10px;
}
.navbod a{
    margin-top: 30px;
    padding: 15px 30px;
    text-decoration: none;
    color: #FFF300;
    border-radius: 30px;
    border: solid 2px #FFF300;
     transition: all 0.3s ease-in-out
}
.navbod a:hover{
    background-color: #FFF300;
    color: black;
    transition: all 0.3s ease-in-out;
}
.navbod i{
    margin-left: 5px;
    color: #FFF300;
}
.navbod a:hover i{
    color: #000000;

}
.gal{
    position: relative;
    z-index: -1;
    height: auto;
    width: 100%;
    background-color: #1b1b1b;
    /* background-color: aqua; */
    overflow: hidden;
    padding-top: 50px;
    padding-bottom: 50px;
}
.subgal{
    position: relative;
    z-index: -1;
    height: 100%;
    width: 100%;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    place-items: center;
    align-items: center;
    overflow: hidden;
    justify-content: center;

}
.gala{
    height: 350px;
    width: 100%;
    /* background-color: bisque; */
    overflow: hidden;
}
.gala img{
    border-radius: 10px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}
.gala img:hover{
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}









.dummyspace{
  height: 200px; 
  width: 100%; 
  background-color: #fff300; 
  display: flex; 
  justify-content: center; 
  align-items: center;
}
.dummyspace h1{
  text-align: center; 
  font-family: Poppins,sans-serif;
  font-size:38px;
}
.footer{
  overflow: hidden;
  height: auto;
  width: 100%;
  background-color: #0b0b0b;
  
}
.subfooter{   
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: saddlebrown; */
  flex-direction: column;
  padding: 0px 20px;
}
.sf1{
  height: 100%;
  width: 100%;
  padding: 0px 0px;
  /* background-color: salmon; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
}
.sf1a{
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: first baseline baseline;
  justify-content: center;
  /* background-color: blueviolet; */
  overflow: hidden;
}
.sf1a img{
  height: 150px;
  width: 130px;
  object-fit: cover;
}
.sf1a h2{
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #FFF300;
  text-align: left;
  margin-bottom: 10px;
  
}
.sf1a p{
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color:white;
  text-align: left;
  margin-bottom: 5px;
}
.sf1b{
  height: 100%;
  width: 100%;
  /* background-color: #504f3c; */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content:flex-start;
}
.sf1b1{
  height:100%;
  width: 100%;
  /* background-color: cadetblue; */
  display: flex;
  align-items:center;
  justify-content: flex-start;
  margin-top: 30px;
}
.sf1b1 i{
  font-size: 22px;
  padding: 12px;
  background-color: #e6e3e3;
  color: #222;
  margin: 6px;
}
.sf1b1 i:hover{
  color: #FFF300;
  background-color: #222;
  transition: all 0.3s ease-in-out;
}
.sf1b2 {
  height: 100%;
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align items to the left */
  justify-content: flex-start; /* Align content to the top */
}

.sf1b2 i {
  font-size: 18px;
  padding: 12px;
  color: #fff300;
  margin: 0;
  margin-bottom: 10px;
}

.sf1b2 p {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: white;
  margin: 0 0 20px 0; /* Add spacing between lines */
}

.sf1b3{
  height: 100%;
  width: 100%;
  /* background-color: blue; */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-left: solid 2px gray;
  border-right: none;
  margin-bottom: 25px;
  padding-left: 10px;
}
.sf1b2 h2{
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: white;
  margin-bottom: 10px;
  text-align: left;
  margin-left: 0px;
}
.sf1b2 p{
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: white;
  margin-bottom: 0px;
}
.sf1b3 h2{
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color:#FFF300;
  text-align: left;
  margin-bottom: 15px;
}
.sf1b3 p{
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: white;
  text-align: left;
  margin-bottom: 0px;
}
.sf2{
  height:100%;
  width: 100%;
  padding: 0px;
  /* background-color: rgba(0, 0, 0, 0.511); */
  border-top: solid 2px rgba(65, 64, 64, 0.356);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content:space-between;
}
.sf2a{
  height: 100%;
  width: 100%;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.sf2a a{
  margin: 2px;
  font-family: "Poppins", sans-serif;
  color: white;
  /* font-weight: 300; */
  font-size: 13px;
  text-decoration: none;
}
.sf2a p{
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color:white;
}
.sf2a a:hover{
  color: #FFF300;
  transition: all 0.3s ease-in-out;
}
.sf2b{
  height: 100%;
  width: 100%;
  /* background-color: #fff; */
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.sf2b p{
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  color: white;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
.sf2b span a{
  color: #FFF300;
  text-decoration: none;
}
  /* Circular Scroll Progress */
    .circular-progress {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 53px;
      height: 53px;
      border-radius: 50%;
      background: conic-gradient(#FFF300 0deg, #cccccc67 0deg);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      cursor: pointer;
      transition: background 0.2s ease-in-out;
    }

    .circular-progress::before {
      content: '';
      position: absolute;
      width: 46px;
      height: 46px;
      background: #1b1b1b;
      border-radius: 50%;
      z-index: -1;
      pointer-events: none; /* ✅ fix click issue */
    }

    .arrow-down {
      font-size: 22px;
      color: white;
      transition: transform 0.2s;
      pointer-events: none; /* ✅ allow parent div to receive click */
    }

    .circular-progress:hover .arrow-down {
      transform: translateY(3px);
    }
    /* Rotate arrow to point upward when scrolling back */
.rotate-up {
  transform: rotate(180deg);
}





}