* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   

     
}

html, body {
    overflow-x: hidden;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    background: linear-gradient(to right, rgb(224, 224, 224),white,rgb(224, 224, 224)); /* Added background gradient */
}

body {
    font-family: 'Bahnschrift', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #000;
}

a {
    text-decoration: none;
    color: inherit;
}
a:hover{
    color:red
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    object-fit: cover;
}

h1, h2 {
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    color: #000;
}

h2 {
    margin-bottom: 20px;
    color: black;


}

p {
    font-size: 1.2rem;
    color:black;
    line-height: 1.6;
}

/* Header Section */
header {
    width: 100%;
  }
  
  nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 0;
    font-size: 14px;
    text-transform: uppercase;
  }
  
  #main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: background-color 0.3s ease;
    background-color: transparent;
    z-index: 1000;
  }
  
  #main-nav.scrolled {
    background-color: maroon;
  }
  
  #main-nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  #main-nav a:hover{
    color: red;
}

  #main-nav .logo {
    height: 40px;
  }

/* Footer */
.footer {
    background: maroon;
    color: #dbe7ff;
    padding: 30px 5% 20px; /* Lait ng padding */
    font-family: 'Montserrat', sans-serif;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* mas maliit na min size */
    gap: 20px; /* Bawasan gap */
    max-width: 1200px;
    margin: auto;
  }
  
  .footer h3 {
    font-size: 1rem; /* Mas maliit font-size */
    color: #ffffff;
    margin-bottom: 10px; /* Bawas spacing */
  }
  
  .footer-brand img {
    max-width: 100px; /* Mas maliit logo */
    margin-bottom: 10px; /* Bawas margin */
  }
  
  .footer-brand p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #ffffff;
  }
  
  .footer-links ul,
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin: 5px 0; /* Bawas margin */
    font-size: 0.9rem;
  }
  
  .footer-contact li {
    font-size: 0.9rem;
    margin-bottom: 6px; /* Bawas spacing */
  }
  
  .footer-contact i {
    margin-right: 6px;
  }
  
  .footer-social .social-icons a {
    font-size: 1.1rem;
    margin-right: 10px;
  }
  
  .footer-bottom {
    border-top: 1px solid #ffffff;
    text-align: center;
    margin-top: 20px; /* Bawas margin-top */
    padding-top: 10px; /* Bawas padding-top */
    font-size: 0.8rem;
  }


.carousel-container {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    position: relative;
    margin-bottom: 2.5cm;
}   

.carousel-slide {
    display: flex;
    width: 100%; 
    transition: transform 0.5s ease-in-out;
}

.carousel-slide img {
    width: 100%;
    flex-shrink: 0;
}


@keyframes slideAnimation {

        0%, 25% { transform: translateX(0%); }
        30%, 50% { transform: translateX(-100%); }
        55%, 75% { transform: translateX(-200%); }
        80%, 100% { transform: translateX(-300%); }


}
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    height: 35px;
    width: 35px;
}

.prev { left: 10px; }
.next { right: 10px; }

.p-container {
    width: 80%;
    max-width: 1318px;
    height: auto;
    margin: 20px auto;
    background-color: #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    border: 2px solid #ccc;
}

.p-content-box {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    text-align: justify; /* Ginawang justified para pantay */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.8; /* Pinalaki ang line height para mas madaling basahin */
    border-left: 5px solid #ff1a1a;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
    max-width: 1000px; /* Nilimitahan ang max width para hindi masyadong mahaba */
    margin: 35px auto; /* Center align sa loob ng container */
}

.p-content-box h2 {
    text-align: left; /* Naka-center pa rin ang mga heading */
}



.title {
    font-size: 2em;
    font-weight: bolder;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 3cm;
}

/* Arrow styling */
    .arrow {
        width: 10px;
        height: 30px;
        margin: 0 auto;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 15px solid black; /* Kulay ng arrow */
        animation: bounce 1s infinite;
    }

/* Bounce animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}


/* Main container */
.motor-container {
    display: flex;
    justify-content: center;
    width: 100vw;
    overflow: hidden;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

/* Grid layout */
.motor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
}


/* Text and Image Base Style */
.text, .image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    opacity: 0; /* Hidden by default */
    transform: scale(0.8); /* Shrink before appearing */
    transition: opacity 1.0s ease-out, transform 1.0s ease-out;

}

/* When element is in viewport, animation triggers */
.text.show, .image.show {
    opacity: 1;
    transform: scale(1);

}

/* Text styling */
.text {
    flex-direction: column;
    text-align: left;
    max-width: 90%;
    position: relative;
}

/* Image full width */
.image {
    align-self: stretch;
    width: 100%;
    padding: 0;
    margin: 0;
}
.image:hover{
    transform: translate3d(0, 0, 0) scale(1.2);
}


/* Image full width */
.image img {
    max-width: 100%;
    width: 100vw;
    height: auto;
    object-fit: cover;
}

#scrollTopBtn {
    display: none; /* Initially hidden */
    position: fixed;
    bottom: 90%;
    right: 20px;
    background-color: white;
    color: red;
    border: none;
    padding: 10px;
    border-radius: 50%; /* Keeps it circular */
    cursor: pointer;
    font-size: 16px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    width: 100px;  /* Neutral state: small circle */
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    overflow: hidden;
    transition: width 0.3s ease-in-out, background-color 0.3s, border-radius 0.3s;
    white-space: nowrap;
}

/* Default: Show only the arrow icon */
.arrow-icon {
    width: 20px; /* Adjust as needed */
    height: 20px;
    transition: transform 0.3s ease-in-out;
}

/* Hide text in the neutral state */
.scroll-text {
    display: none;
}

/* Expand and show text on hover */
#scrollTopBtn:hover {
    background-color:white;
    width: 160px; /* Expand width */
    border-radius: 25px; /* Slightly rounded when expanded */
    justify-content: space-evenly;
}

/* Show text when hovered */
#scrollTopBtn:hover .scroll-text {
    display: inline;
    opacity: 1;
    font-size: 14px;
    transition: opacity 0.3s ease-in-out;
}

/* Slight lift effect for arrow */
#scrollTopBtn:hover .arrow-icon {
    transform: translateY(-2px);
}

@media (max-width: 1024px){

}
@media (max-width: 540px) and (orientation: portrait) {

    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   

     
}

html, body {
    overflow-x: hidden;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    background: linear-gradient(to right, rgb(224, 224, 224),white,rgb(224, 224, 224)); /* Added background gradient */
}

body {
    font-family: 'Bahnschrift', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #000;
}

a {
    text-decoration: none;
    color: inherit;
}
a:hover{
    color:red
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 2.5px;
    object-fit: cover;
}

h1, h2 {
    font-weight: 600;
}

h1 {
    font-size: 1.25rem;
    color: #000;
}

h2 {
    margin-bottom: 10px;
    color: black;


}

p {
    font-size: .6rem;
    color:black;
    line-height: 0.8;
}

/* Header Section */
header {
    width: 100%;
  }
  
  nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    font-size: 7px;
    text-transform: uppercase;
  }
  
  #main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: background-color 0.3s ease;
    background-color: transparent;
    z-index: 1000;
  }
  
  #main-nav.scrolled {
    background-color: maroon;
  }
  
  #main-nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  #main-nav .logo {
    height: 10px;
  }

/* Footer */
.footer {
    background: maroon;
    color: #dbe7ff;
    padding: 15px 2.5% 10px; 
    font-family: 'bahnschrift', sans-serif;
    width: 100%;
    align-items: center;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 10px; 
    width: 100%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }
  
  .footer h3 {
    font-size: 0.5rem; 
    color: #ffffff;
    margin-bottom: 5px;
    text-align: center;
   }
  
  .footer-brand img {
    max-width: 100px; 
    margin-bottom: 5px;
    text-align: center;
   }
  
  .footer-brand p {
  font-size: 0.43rem;
  line-height: 1.4;
  color: #ffffff;
  text-align: center;
  width: 50%;
  margin: 0 auto;
}

  
  .footer-links ul,
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin: 2.5px 0; 
    font-size: 0.45rem;
  }

  .footer-links{ 
    display: none;
  }
  
  .footer-contact li {
    font-size: 0.45rem;
    margin-bottom: 1.5px;
    text-align: center;
  }
  
  .footer-contact i {
    margin-right: 3px;
    text-align: center;
  }
  
  .footer-social .social-icons a {
    font-size: .55rem;
    margin-right: 5px;
    text-align: center;
  }
  
  .footer-bottom {
    border-top: 0.5px solid #ffffff;
    text-align: center;
    margin-top: 10px; 
    padding-top: 5px; 
    font-size: 0.4rem;
  }
}

.carousel-container {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    position: relative;
    margin-bottom: 1.25cm;
}   

.carousel-slide {
    display: flex;
    width: 100%; 
    transition: transform 0.5s ease-in-out;
}

.carousel-slide img {
    width: 100%;
    flex-shrink: 0;
}


@keyframes slideAnimation {

        0%, 25% { transform: translateX(0%); }
        30%, 50% { transform: translateX(-100%); }
        55%, 75% { transform: translateX(-200%); }
        80%, 100% { transform: translateX(-300%); }


}
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 5px;
    cursor: pointer;
    font-size: 12px;
}

.prev { left: 5px; }
.next { right: 5px; }

.p-container {
    width: 80%;
    max-width: 1318px;
    height: auto;
    margin: 10px auto;
    background-color: #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    padding: 10px;
    border: 1px solid #ccc;
}

.p-content-box {
    background-color: white;
    border-radius: 4px;
    padding: 10px;
    text-align: justify; 
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    line-height: 1.8; 
    border-left: 2.5px solid #ff1a1a;
    border-right: 0.5px solid #ddd;
    border-bottom: 0.5px solid #ddd;
    border-top: 0.5px solid #ddd;
    max-width: 1000px; 
    margin: 17px auto;
}

.p-content-box p {
    line-height: 1.6; 
}


.p-content-box h2 {
    text-align: left; /* Naka-center pa rin ang mga heading */
    font-size: 16px;
}



.title {
    font-size: 1em;
    font-weight: bolder;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 1.5cm;
}

/* Arrow styling */
    .arrow {
        width: 5px;
        height: 15px;
        margin: 0 auto;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 7.5px solid black; /* Kulay ng arrow */
        animation: bounce 1s infinite;
    }

/* Bounce animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}


/* Main container */
.motor-container {
    display: flex;
    justify-content: center;
    width: 100vw;
    overflow: hidden;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

.motor-container h2{
    font-size: 19px;
}

/* Grid layout */
.motor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
}


/* Text and Image Base Style */
.text, .image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0; /* Hidden by default */
    transform: scale(0.8); /* Shrink before appearing */
    transition: opacity 1.0s ease-out, transform 1.0s ease-out;

}

/* When element is in viewport, animation triggers */
.text.show, .image.show {
    opacity: 1;
    transform: scale(1);

}

/* Text styling */
.text {
    flex-direction: column;
    text-align: left;
    max-width: 90%;
    position: relative;
}

/* Image full width */
.image {
    align-self: stretch;
    width: 100%;
    padding: 0;
    margin: 0;
}
.image:hover{
    transform: translate3d(0, 0, 0) scale(1.2);
}


/* Image full width */
.image img {
    max-width: 100%;
    width: 100vw;
    height: auto;
    object-fit: cover;
}

#scrollTopBtn {
    display: none; /* Initially hidden */
    position: fixed;
    bottom: 50%;
    right: 10px;
    background-color: white;
    color: red;
    border: none;
    padding: 5px;
    border-radius: 50%; /* Keeps it circular */
    cursor: pointer;
    font-size: 8px;
    box-shadow: 1px 1px 2.5px rgba(0, 0, 0, 0.3);
    width: 25px;  /* Neutral state: small circle */
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5px;
    overflow: hidden;
    transition: width 0.3s ease-in-out, background-color 0.3s, border-radius 0.3s;
    white-space: nowrap;
}

/* Default: Show only the arrow icon */
.arrow-icon {
    width: 10px; /* Adjust as needed */
    height: 10px;
    transition: transform 0.3s ease-in-out;
}

/* Hide text in the neutral state */
.scroll-text {
    display: none;
}

/* Expand and show text on hover */
#scrollTopBtn:hover {
    background-color:white;
    width: 80px; /* Expand width */
    border-radius: 12.5px; /* Slightly rounded when expanded */
    justify-content: space-evenly;
}

/* Show text when hovered */
#scrollTopBtn:hover .scroll-text {
    display: inline;
    opacity: 1;
    font-size: 7px;
    transition: opacity 0.3s ease-in-out;
}

@media (max-width: 932px) and (orientation: landscape) {

        * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   

     
}

html, body {
    overflow-x: hidden;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    background: linear-gradient(to right, rgb(224, 224, 224),white,rgb(224, 224, 224)); /* Added background gradient */
}

body {
    font-family: 'Bahnschrift', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #000;
}

a {
    text-decoration: none;
    color: inherit;
}
a:hover{
    color:red
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 2.5px;
    object-fit: cover;
}

h1, h2 {
    font-weight: 600;
}

h1 {
    font-size: 1.25rem;
    color: #000;
}

h2 {
    margin-bottom: 10px;
    color: black;


}

p {
    font-size: .6rem;
    color:black;
    line-height: 0.8;
}

/* Header Section */
header {
    width: 100%;
  }
  
  nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    font-size: 7px;
    text-transform: uppercase;
  }
  
  #main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: background-color 0.3s ease;
    background-color: transparent;
    z-index: 1000;
  }
  
  #main-nav.scrolled {
    background-color: maroon;
  }
  
  #main-nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }

  
  
  #main-nav .logo {
    height: 10px;
  }

/* Footer */
.footer {
    background: maroon;
    color: #dbe7ff;
    padding: 15px 2.5% 10px; 
    font-family: 'bahnschrift', sans-serif;
    width: 100%;
    align-items: center;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 10px; 
    width: 100%;
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }
  
  .footer h3 {
    font-size: 0.5rem; 
    color: #ffffff;
    margin-bottom: 5px;
    text-align: center;
   }
  
  .footer-brand img {
    max-width: 100px; 
    margin-bottom: 5px;
    text-align: center;
   }
  
  .footer-brand p {
  font-size: 0.43rem;
  line-height: 1.4;
  color: #ffffff;
  text-align: center;
  width: 50%;
  margin: 0 auto;
}

  
  .footer-links ul,
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin: 2.5px 0; 
    font-size: 0.45rem;
  }

  .footer-links{ 
    display: none;
  }
  
  .footer-contact li {
    font-size: 0.45rem;
    margin-bottom: 1.5px;
    text-align: center;
  }
  
  .footer-contact i {
    margin-right: 3px;
    text-align: center;
  }
  
  .footer-social .social-icons a {
    font-size: .55rem;
    margin-right: 5px;
    text-align: center;
  }
  
  .footer-bottom {
    border-top: 0.5px solid #ffffff;
    text-align: center;
    margin-top: 10px; 
    padding-top: 5px; 
    font-size: 0.4rem;
  }
}

.carousel-container {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    position: relative;
    margin-bottom: 1.25cm;
}   

.carousel-slide {
    display: flex;
    width: 100%; 
    transition: transform 0.5s ease-in-out;
}

.carousel-slide img {
    width: 100%;
    flex-shrink: 0;
}


@keyframes slideAnimation {

        0%, 25% { transform: translateX(0%); }
        30%, 50% { transform: translateX(-100%); }
        55%, 75% { transform: translateX(-200%); }
        80%, 100% { transform: translateX(-300%); }


}
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 5px;
    cursor: pointer;
    font-size: 12px;
}

.prev { left: 5px; }
.next { right: 5px; }

.p-container {
    width: 80%;
    max-width: 1318px;
    height: auto;
    margin: 10px auto;
    background-color: #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    padding: 10px;
    border: 1px solid #ccc;
}

.p-content-box {
    background-color: white;
    border-radius: 4px;
    padding: 10px;
    text-align: justify; 
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    line-height: 1.8; 
    border-left: 2.5px solid #ff1a1a;
    border-right: 0.5px solid #ddd;
    border-bottom: 0.5px solid #ddd;
    border-top: 0.5px solid #ddd;
    max-width: 1000px; 
    margin: 17px auto; 
}

.p-content-box h2 {
    text-align: left; /* Naka-center pa rin ang mga heading */
    font-size: 16px;
}



.title {
    font-size: 1.5em;
    font-weight: bolder;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 1.5cm;
}

/* Arrow styling */
    .arrow {
        width: 5px;
        height: 15px;
        margin: 0 auto;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 7.5px solid black; /* Kulay ng arrow */
        animation: bounce 1s infinite;
    }

/* Bounce animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}


/* Main container */
.motor-container {
    display: flex;
    justify-content: center;
    width: 100vw;
    overflow: hidden;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

.motor-container h2{
    font-size: 19px;
}

/* Grid layout */
.motor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
}

.motor-container p{
    line-height: 1.6;
}


/* Text and Image Base Style */
.text, .image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0; /* Hidden by default */
    transform: scale(0.8); /* Shrink before appearing */
    transition: opacity 1.0s ease-out, transform 1.0s ease-out;

}

/* When element is in viewport, animation triggers */
.text.show, .image.show {
    opacity: 1;
    transform: scale(1);

}

/* Text styling */
.text {
    flex-direction: column;
    text-align: left;
    max-width: 90%;
    position: relative;
}

/* Image full width */
.image {
    align-self: stretch;
    width: 100%;
    padding: 0;
    margin: 0;
}
.image:hover{
    transform: translate3d(0, 0, 0) scale(1.2);
}


/* Image full width */
.image img {
    max-width: 100%;
    width: 100vw;
    height: auto;
    object-fit: cover;
}

#scrollTopBtn {
    display: none; /* Initially hidden */
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: white;
    color: red;
    border: none;
    padding: 5px;
    border-radius: 50%; /* Keeps it circular */
    cursor: pointer;
    font-size: 8px;
    box-shadow: 1px 1px 2.5px rgba(0, 0, 0, 0.3);
    width: 25px;  /* Neutral state: small circle */
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5px;
    overflow: hidden;
    transition: width 0.3s ease-in-out, background-color 0.3s, border-radius 0.3s;
    white-space: nowrap;
}

/* Default: Show only the arrow icon */
.arrow-icon {
    width: 10px; /* Adjust as needed */
    height: 10px;
    transition: transform 0.3s ease-in-out;
}

/* Hide text in the neutral state */
.scroll-text {
    display: none;
}

/* Expand and show text on hover */
#scrollTopBtn:hover {
    background-color:white;
    width: 80px; /* Expand width */
    border-radius: 12.5px; /* Slightly rounded when expanded */
    justify-content: space-evenly;
}

/* Show text when hovered */
#scrollTopBtn:hover .scroll-text {
    display: inline;
    opacity: 1;
    font-size: 7px;
    transition: opacity 0.3s ease-in-out;
}

