@font-face {
  font-family: 'Century Schoolbook Bold';
  src: url('SCHLBKB.TTF') format('truetype');
  font-weight: bold;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Century Schoolbook Bold', serif;
  background-color: #f3eada;
  color: #3a2c1f;
  line-height: 1.5;
}

/* Header */
.header {
  font-family: 'Century Schoolbook Bold', serif;
  background-color: #fff;
  padding:0;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Logo */
.logo-container .logo {
  max-width: 180px;
  height: auto;
  margin-top: 34px;
}
@media (max-width: 768px) {
  .logo-container .logo {
    max-width: 120px;
    width: 100%;
  }

  .header {
    padding: 10px 0;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .logo-container .logo {
    max-width: 100px;
  }
}

/* Navigation Bar */
@media (max-width: 768px) {
  .navbar {
    gap: 1rem;
    margin-top: 0.5rem;
  }

  .navbar a {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .navbar a {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
}

/* Leaf Image */
.leaf-top-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 22vw;
  max-width: 220px;
  height: auto;
  z-index: 10;
  pointer-events: none;
  opacity: 0.3;
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  .leaf-top-left {
    width: 30vw;
    max-width: 160px;
    opacity: 0.25;
    transform: rotate(30deg);
  }
}

@media (max-width: 480px) {
  .leaf-top-left {
    width: 35vw;
    max-width: 120px;
    opacity: 0.2;
    transform: rotate(20deg);
  }
}

/* ============ Base Styles ============ */



.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  position: absolute;
  right: 1rem;
  top: 1.5rem;
  z-index: 1001;
  color: #714b27;
}
.dropdown > a::after {
  content: ' ▼'; /* arrow symbol */
  font-size: 0.7rem;
}






.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 4rem;
    margin-top: 1rem;
    padding: 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.navbar a,
.dropbtn {
    padding: 1rem;
    margin: 0;
    text-decoration: none;
    color: #714b27;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1 rem;
    transition: background-color 0.3s ease;
}

.navbar a:hover,
.dropbtn:hover {
    background-color: #f4f4f4;
    border-radius: 5px;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    top: 100%;
    left: 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.dropdown-content a {
    padding: 0.8rem 1.2rem;
    display: block;
    color: #714b27;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background-color: #f3eada;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown>a::after {
    content: ' ▼';
    /* arrow symbol */
    font-size: 0.7rem;
}



.navbar {
    display: flex;
    gap: 4rem;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 1rem;
}

.navbar a {
    text-decoration: none;
    color: #714b27;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1 rem;
}

/* Dropdown Base */
.dropdown {
    position: relative;
}

.dropbtn {
    padding: 0.8rem 2rem;
    text-decoration: none;
    color: #714b27;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1 rem;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.dropdown-content a {
    color: #714b27;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    text-align: center;
}

.dropdown-content a:hover {
    background-color: #f3eada;
}

.dropdown:hover .dropdown-content {
    display: block;
}







@media (max-width: 768px) {
  .navbar {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background-color: #fff;
    padding: 1rem;
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    z-index: 999;
  }

  .navbar.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .dropdown:hover .dropdown-content {
    display: none; /* disable hover dropdown on mobile */
  }

  .dropdown-content {
    position: relative;
    box-shadow: none;
    padding-left: 1rem;
  }

  .dropdown-content a {
    padding-left: 1.5rem;
  }

  .dropdown > a::after {
    content: ' ▾';
  }

  .dropdown > a:active + .dropdown-content,
  .dropdown > a:focus + .dropdown-content {
    display: block;
  }
}


/* ============ Mobile Styles ============ */

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .navbar {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 2rem 1.5rem;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease-in-out forwards;
  }

  .navbar.show {
    display: flex;
  }

  .navbar a,
  .dropbtn {
    font-size: 1rem;
    color: #714b27;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-content {
    display: none;
    flex-direction: column;
    position: relative;
    background-color: #fff;
    padding-left: 1rem;
    box-shadow: none;
  }

  .dropdown.open .dropdown-content {
    display: flex;
  }

  .dropdown:hover .dropdown-content {
    display: none;
  }

  .dropdown > a::after {
    content: ' ▾';
    font-size: 0.8rem;
  }

  .dropdown-content a {
    font-size: 0.95rem;
    padding: 0.5rem 0;
    color: #714b27;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}


.live-counter-banner {
  text-align: center;
  padding: 40px 20px;
  background: #fff;
  border: 2px solid #5a7552;
  margin: 40px auto 0;
  max-width: 1000px;
}

.live-counter-banner h1 {
  font-size: 2rem;
  color: #5a7552;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.live-counter-banner p {
  font-size: 1rem;
  color: #5a7552;
  letter-spacing: 1px;
}

body {
  margin: -26px;
  background:#5a7552;
  font-family: sans-serif;
  overflow-x: hidden;
}

.stacked-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
  perspective: 1500px;
  overflow: hidden;
  
}

.slider-container {
  width: 70px;
  max-width: 800px;
  height: 500px;
}

.slider {
  position: relative;
  width: 90%;
  height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
}

.slide {
  position: absolute;
  width: 300px;
  height: 400px;
  border-radius: 0px;
  overflow: hidden;
  transition: transform 1s ease, filter 1s ease, opacity 1s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  opacity: 0;
  filter: blur(5px);
  z-index: 1;
  transform: scale(0.75);
  align-items: center;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Active image (center) */
.slide.active {
  transform: translateX(0) scale(1) translateZ(0);
  filter: none;
  opacity: 1;
  z-index: 10;
}

/* LEFT side images */
.slide {
  position: absolute;
  width: 300px;
  height: 400px;
  border-radius: 0px;
  overflow: hidden;
  transition: transform 1s ease, filter 1s ease, opacity 1s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  opacity: 0;
  filter: blur(5px);
  z-index: 1;
  transform: scale(0.75);
  align-items: center;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Active image (center) */
.slide.active {
  transform: translateX(0) scale(1) translateZ(0);
  filter: none;
  opacity: 1;
  z-index: 10;
}

/* LEFT side images */
.slide.left-1 {
  transform: translateX(-80px) scale(0.9);
  filter: blur(1px);
  opacity: 0.6;
  z-index: 3;
}

.slide.left-2 {
  transform: translateX(-160px) scale(0.85);
  filter: blur(1.5px);
  opacity: 0.5;
  z-index: 2;
}

.slide.left-3 {
  transform: translateX(-240px) scale(0.8);
  filter: blur(2px);
  opacity: 0.4;
  z-index: 1;
}

/* RIGHT side images */
.slide.right-1 {
  transform: translateX(80px) scale(0.9);
  filter: blur(1px);
  opacity: 0.6;
  z-index: 3;
}

.slide.right-2 {
  transform: translateX(160px) scale(0.85);
  filter: blur(1.5px);
  opacity: 0.5;
  z-index: 2;
}

.slide.right-3 {
  transform: translateX(240px) scale(0.8);
  filter: blur(2px);
  opacity: 0.4;
  z-index: 1;
}

/* RIGHT side images */
.slide.right-1 {
  transform: translateX(80px) scale(0.9);
  filter: blur(1px);
  opacity: 0.6;
  z-index: 3;
}

.slide.right-2 {
  transform: translateX(160px) scale(0.85);
  filter: blur(1.5px);
  opacity: 0.5;
  z-index: 2;
}

.slide.right-3 {
  transform: translateX(240px) scale(0.8);
  filter: blur(2px);
  opacity: 0.4;
  z-index: 1;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background:transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem 1rem;
  z-index: 20;
  border-radius:0px;
}

.nav.prev {
  left: 250px;
}

.nav.next {
  right:250px;
}

.leaf {
  position: absolute;
  top: 50%;
  width: 300px;
  height: auto;
  opacity: 1;
  z-index: 100;
  pointer-events: none;
  transform: translateY(-50%); /* Center vertically */

  /* Thickness & shadow */
  filter: drop-shadow(0 0 0 #082101)
          drop-shadow(3px 3px 0 #0d2805);
}

/* Left Leaf: flipped horizontally */
.left-leaf {
  left: -30px;
  transform: translateY(-50%);
}

/* Right Leaf: attached to right side, no flip */
.right-leaf {
  right: -30px;
  transform: translateY(-50%) scaleX(-1);
}
@media (max-width: 768px) {
  .leaf {
    width: 200px;
    opacity: 0.7;
    filter: drop-shadow(0 0 0 #082101)
            drop-shadow(2px 2px 0 #0d2805);
  }

  .left-leaf {
    left: -20px;
  }

  .right-leaf {
    right: -20px;
  }
}
.pagination-dots {
  position: absolute;
  bottom: 30px;
  display: flex;
  gap: 10px;
  z-index: 15;
}

.pagination-dots .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s;
  margin-bottom:20px ;
}

.pagination-dots .dot.active {
  background: #333;
}


/* Footer Section - UPDATED */
.footer {
    background-color: #ffffff;
    padding: 10px;
    border-top: 1px solid #ddd;
    color: #6c8c6b;
    font-family: 'Century Schoolbook Bold', serif;
    position: relative;
    font-size: 1rem;
}

.footer h2 {
    text-align: center;
    font-family: serif;
    color: #a5513a;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto; /* ✅ Changed to center content */
    padding: 0 2rem; /* ✅ Added padding instead of margin-left */
    margin-left: 21rem;
}

.footer-left,
.footer-right {
    flex: 1;
    min-width: 200px;
}

.footer-left h3,
.footer-right h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #6c8c6b;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.footer-left p {
    color: #6c8c6b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    padding-left: 0; /* ✅ Removed padding-left */
}

.footer-right ul {
    padding-right: 0; /* ✅ Removed padding-right */
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.footer-right ul li {
    margin-bottom: 1rem;
}

.footer-right ul li a {
    text-decoration: none;
    color: #6c8c6b;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-right ul li a:hover {
    color: #355c34;
}

.footer-leaf {
    position: absolute;
    bottom: 84px;
    right: 20px;
    width: 22vw;
    max-width: 220px;
    opacity: 0.2;
    pointer-events: none;
    transform: rotate(-90deg);
}

/* ✅ ENHANCED MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .footer {
        padding: 20px 10px;
    }

    .footer h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        letter-spacing: 0.5px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem; /* ✅ Reduced padding for mobile */
        margin: 0 auto;
    }

    .footer-left,
    .footer-right {
        padding: 0;
        min-width: unset;
        width: 100%;
    }

    .footer-left p {
        padding-left: 0;
        text-align: center;
    }

    .footer-right ul {
        padding: 0;
        margin: 1rem 0;
        text-align: center;
    }

    .footer-right ul li {
        margin-bottom: 0.75rem;
    }

    .footer-leaf {
        width: 28vw;
        max-width: 160px;
        bottom: 20px;
        right: 10px;
    }
}

/* ✅ EXTRA SMALL DEVICES */
@media (max-width: 480px) {
    .footer {
        padding: 20px 5px;
    }

    .footer h2 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        letter-spacing: 0;
    }

    .footer-content {
        gap: 1.5rem;
        padding: 0 0.5rem; /* ✅ Minimal padding for very small screens */
    }

    .footer-left p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .footer-right ul li a {
        font-size: 0.9rem;
    }

    .footer-leaf {
        width: 35vw;
        max-width: 120px;
        right: 10px;
        bottom: 5px;
    }
}

/* Footer bottom */
.footer-bottom {
    margin-top: 40px;
    padding: 20px 10px;
    border-top: 1px solid #ddd;
    font-size: 12px;
    line-height: 1.6;
    color: #6c8c6b;
    text-align: center;
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-bottom a {
    display: inline-flex;
    align-items: center;
    position: relative;
    text-decoration: none;
    color: #6c8c6b;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-bottom a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #6c8c6b;
    transition: width 0.3s ease;
}

.footer-bottom a:hover {
    color: #355c34;
}

.footer-bottom a:hover::after {
    width: 100%;
}

.footer-bottom .xl-logo {
    height: 30px;
    margin-right: 8px;
}

/* Responsive footer bottom */
@media (max-width: 768px) {
    .footer-bottom {
        font-size: 10px;
        padding: 15px 10px;
    }

    .footer-bottom .xl-logo {
        height: 20px;
    }

    .footer-bottom a::after {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-bottom {
        font-size: 9px;
        padding: 10px 5px;
    }

    .footer-bottom .xl-logo {
        height: 18px;
        margin-right: 5px;
    }
}
@media (max-width: 480px) {
  .stacked-slider {
    height: 50vh;
    padding: 5px;
  }

  .slider-container {
    width: 20vw;
    height: 100px;
   
  }

  .slide {
    width: 50px;
    height: 100px;
    left: 40px;
  }

  .slide.left-1 {
    transform: translateX(-50px) scale(0.9);
  }

  .slide.left-2 {
    transform: translateX(-100px) scale(0.85);
  }

  .slide.left-3 {
    transform: translateX(-150px) scale(0.8);
  }

  .slide.right-1 {
    transform: translateX(50px) scale(0.9);
  }

  .slide.right-2 {
    transform: translateX(100px) scale(0.85);
  }

  .slide.right-3 {
    transform: translateX(150px) scale(0.8);
  }

  .pagination-dots .dot {
    width: 8px;
    height: 8px;
    margin-bottom: 0;
  }

  .leaf {
    width: 120px;
    opacity: 0.6;
    
  }

  .left-leaf {
    left: -10px;
    
  }

  .right-leaf {
    right: -10px;
   
  }
}
@media (max-width: 768px) {
  .stacked-slider {
    height: 75vh;
    padding: 0 20px;
  }

  .slider-container {
    width: 85vw;
    height: 360px;
  }

  .slide {
    width: 220px;
    height: 300px;
  }

  .slide.left-1 {
    transform: translateX(-60px) scale(0.9);
  }

  .slide.left-2 {
    transform: translateX(-120px) scale(0.85);
  }

  .slide.left-3 {
    transform: translateX(-180px) scale(0.8);
  }

  .slide.right-1 {
    transform: translateX(60px) scale(0.9);
  }

  .slide.right-2 {
    transform: translateX(120px) scale(0.85);
  }

  .slide.right-3 {
    transform: translateX(180px) scale(0.8);
  }

  .nav {
    font-size: 1.75rem;
    padding: 0.4rem 0.8rem;
  }

  .nav.prev {
    visibility: hidden;
    left: 40px;
  }

  .nav.next {
    visibility: hidden;
    right: 40px;
  }

  .leaf {
    width: 60px;
    opacity: 0.7;
  }

  .left-leaf {
    left: -5px;
  }

  .right-leaf {
    right: -5px;
  }

  .pagination-dots .dot {
    width: 6px;
    height: 6px;
    margin-bottom: 0;
  }
}.social-bar {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.social-bar a {
    display: block;
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}

.social-bar img {
    width: 100%;
    height: auto;
    display: block;
}

.social-bar a:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .social-bar {
        top: auto;
        bottom: 10%;
        right: 10px;
        transform: none;
        gap: 8px;
    }

    .social-bar a {
        width: 30px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .social-bar {
        top: 30%;
        /* optional: reposition slightly */
        gap: 8px;
    }

    .social-bar a {
        width: 30px;
        height: 30px;
    }

    .social-bar a:hover {
        transform: scale(1.05);
        /* smaller scale on small screens */
    }
}




@media (max-width: 480px) {
    .hamburger {
        display: block;
        font-size: 1.8rem;
        position: absolute;
        right: 1rem;
        top: 1rem;
        z-index: 1001;
        color: #714b27;
        cursor: pointer;
    }

    .navbar {
        display: none;
        flex-direction: column;
        position: static;
        top: 0;
        right: -100%;
        width: 95%;
        height: 300px;
        background: #fff;
        padding: 2rem 1.5rem;
        z-index: 1000;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease;
        gap:0.5rem;
    }

    .navbar.active {
        display: flex;
        right: 0;
        top: 90px;
    }

    .navbar a,
    .dropbtn {
        font-size: 0.9rem;
        padding: 0.75rem 0;
        color: #714b27;
        text-transform: uppercase;
        text-decoration: none;
        font-weight: bold;
        border-bottom: 1px solid #eee;
    }

    .dropdown-content {
        position: relative;
        background-color: #fff;
        padding-left: 0.5rem;
        box-shadow: none;
        display: none;
        flex-direction: column;
    }

    .dropdown.open .dropdown-content {
        display: flex;
    }

    .dropdown>a::after {
        content: ' ▾';
        font-size: 0.8rem;
    }

    .dropdown-content a {
        font-size: 0.85rem;
        padding: 0.5rem 0;
        color: #714b27;
    }

    .dropdown:hover .dropdown-content {
        display: none;
    }

    .dropdown>a::after {
        content: ' ▾';
        font-size: 0.8rem;
    }

    .dropdown {
        position: relative;
        width: 100%;
    }

    .dropdown-content {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        display: none;
        flex-direction: column;
        padding-left: 1rem;
        z-index: 999;

    }

    .dropdown.open .dropdown-content {
        display: flex;
    }

    .dropdown>a::after {
        content: ' ▾';
        font-size: 0.8rem;
    }

    .dropdown-content a {
        font-size: 0.85rem;
        padding: 0.5rem 0;
        color: #714b27;
        border-bottom: 1px solid #eee;
        margin-left:-18px;
    }

    .dropdown:hover .dropdown-content {
        display: none;
    }


}
/* Footer bottom */
.footer-bottom {
  margin-top: 40px;
  padding: 20px 10px;
  border-top: 1px solid #ddd;
  font-size: 12px;
  line-height: 1.6;
  color: #6c8c6b;
  text-align: center;
}

.footer-bottom p {
  margin: 5px 0;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  position: relative;
  text-decoration: none;
  color: #6c8c6b;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-bottom a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #6c8c6b;
  transition: width 0.3s ease;
}

.footer-bottom a:hover {
  color: #355c34;
}

.footer-bottom a:hover::after {
  width: 100%;
}

.footer-bottom .xl-logo {
  height: 30px;
  margin-right: 8px;
}

/* Responsive footer bottom */
@media (max-width: 768px) {
  .footer-bottom {
    font-size: 10px;
    padding: 15px 10px;
    flex-direction: column;
  }

  .footer-bottom .xl-logo {
    height: 20px;
  }

  /* Make footer-bottom links always underlined on mobile */
  .footer-bottom a::after {
    width: 100%;
  }
}
/* Scroll to Top Button */
#scrollToTopBtn {
  position: fixed;
  bottom: 2rem;
  right: 30px;
  z-index: 999;
  background-color: #714B27;
  /* brown tone */
  border: none;
  outline: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: none;
  /* hidden initially */
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#scrollToTopBtn img {
  width: 24px;
  height: 24px;
}

#scrollToTopBtn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}