* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  scroll-behavior: smooth;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}

/* Scrollbar------------- */
::-webkit-scrollbar {
  height: 0;
  width: 0.5rem;
}
::-webkit-scrollbar-track {
  background: #fff;
}
::-webkit-scrollbar-thumb {
  background: #764a00;
  border-radius: 5rem;
}

body {
  padding-top: 70px;
  overflow-x: hidden;
}

/* Navbar Section */
header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 10%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
header.sticky {
  background: #fff;
  border-bottom: 1px solid #fff;
  padding: 12px 10%;
}
header .logo img {
  width: 120px;
}
header .navlist li {
  position: relative;
}

.navlist {
  display: flex;
  color: #545454;
}
.navlist a {
  display: inline-block;
  color: #000;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 20px;
  transition: 0.5s;
  animation: slideAnimation 1s ease forwards;
  animation-delay: calc(0.3s * var(--i));
  opacity: 0;
  position: relative;
  font-size: 20px;
  line-height: 28.8px;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.navlist a:hover {
  color: #000;
}
header .navlist a.active {
  font-weight: bold;
  color: #764a00;
  position: relative;
}

header .navlist a.active::after {
  content: "";
  position: absolute;
  left: 19px;
  bottom: 5px;
  height: 2px;
  width: 41%;
  background-color: #764a00;
  transition: width 0.3s ease;
}

header .navlist a:hover::after {
  width: 50%;
}
#menu-icon {
  font-size: 1.8rem;
  z-index: 10001;
  cursor: pointer;
  margin-left: 25px;
  background: #fff;
  border-radius: 3px;
  color: #764a00;
  display: none;
}
.navlist a.active {
  font-weight: bold;
  color: #000;
}
/* Border for Get Involved link */
.nav-link.get-involved {
  color: #764a00;
  border: 2px solid #764a00;
  padding: 5px 15px;
  border-radius: 20px;
  margin-right: 15px;
  transition: 0.7s ease;
}
.nav-link.get-involved:hover {
  background-color: #764a00;
  color: white;
  border: none;
}
/* Background color for Contact Us link */
.nav-link.contact-us {
  background-color: #764a00;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  transition: 0.7s ease;
}
.nav-link.contact-us:hover {
  background-color: transparent;
  border: 2px solid #764a00;
  color: #764a00;
}

/* Responsiveness */
@media (max-width: 990px) {
  header,
  header.sticky {
    padding: 15px 5%;
  }
  .navlist {
    padding: 8px 15px;
  }
}
@media (max-width: 768px) {
  #menu-icon {
    display: block;
    transition: all 0.4s ease;
  }
  #menu-icon.bx-x {
    transform: rotate(-180deg);
  }
  .navlist {
    display: flex;
    position: absolute;
    top: -1000px;
    right: 0;
    left: 0;
    flex-direction: column;
    background: #fff;
    text-align: left;
    padding: 0 5%;

    transition: all 0.7s ease;
  }
  .navlist a {
    display: block;
    padding-bottom: 1rem;
    font-size: 1rem;
  }
  header .navlist a.active::after {
    width: 8%;
    bottom: 10px;
  }
  .navlist.open {
    top: 100%;
    display: flex;
  }
}
/* Responsiveness */
@media (max-width: 990px) {
  header,
  header.sticky {
    padding: 15px 5%;
  }
  .navlist {
    padding: 8px 15px;
  }

  .home-content {
    margin-top: 5rem;
  }
  .nav-link.get-involved {
    margin-bottom: 30px;
    width: 50%;
    margin-left: 1.1rem;
  }
  .nav-link.contact-us {
    width: 50%;
    margin-left: 1.1rem;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  #menu-icon {
    display: block;
    transition: all 0.4s ease;
  }
  #menu-icon.bx-x {
    transform: rotate(-180deg);
  }
  .navlist {
    display: flex;
    position: absolute;
    top: -1000px;
    right: 0;
    left: 0;
    flex-direction: column;
    background: #fff;
    text-align: left;
    padding: 0 5%;
    transition: all 0.7s ease;
  }
  .navlist a {
    display: block;
    padding-bottom: 1rem;
    font-size: 1rem;
  }
  .navlist.open {
    top: 100%;
  }
}
/* End of Navbar Section */

/* Home Section */
.home-section {
  position: relative;
  height: 100vh;
  background: url("/assets/images/home.avif") no-repeat center center/cover;
  color: white;
  margin-top: 40px;
}

/* Overlay */
.home-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

/* Content Styling */
.container {
  position: relative;
}

.welcomes-text {
  font-size: 1.2rem;
  font-weight: bold;
}

h1 {
  font-size: 3rem;
  font-weight: bold;
}

.text-orange {
  color: #ffa300;
}

.text-green {
  color: #71e70e;
}

.description {
  font-size: 1.1rem;
  margin-top: 10px;
  max-width: 500px;
}

.book-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #764a00;
  color: white;
  text-decoration: none;
  border-radius: 15px;
  font-weight: bold;
  transition: 0.4s ease;
}

.book-btn:hover {
  background: #fff;
  color: #764a00;
}

/* Mobile View */
@media (max-width: 968px) {
  .home-section {
    text-align: left;
    margin-top: 30px;
  }

  .container {
    padding: 20px;
  }

  h1 {
    font-size: 1.8rem;
  }

  .description {
    font-size: 1rem;
  }

  .book-btn {
    font-weight: normal;
  }
}

/* Knows Us Section */
.knows-us-section {
  background: #f9f9f9;
}

/* Section Title */
.section-title {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.section-title .line {
  width: 50px;
  height: 2px;
  background: #764a00;
  margin-right: 5px;
}

.section-title i {
  color: #764a00;
  font-size: 0.8rem;
  margin-right: 10px;
}

.section-title h2 {
  font-size: 1.1rem;
  font-weight: bold;
}
.about {
  font-weight: bold;
  font-size: 1.2rem;
}

/* Image Styling */
.know-us {
  width: 100%;
  border-radius: 8px;
}

/* Mobile View */
@media (max-width: 968px) {
  .section-title {
    justify-content: left;
  }

  .section-title h2 {
    font-size: 1rem;
  }

  .row {
    flex-direction: column;
    text-align: left;
  }

  .info-box {
    font-size: 1rem;
  }
}

/* Our Services Section */
.our-services-section {
  background: #f9f9f9;
  padding: 50px 0;
}

/* Section Header */
.section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

/* Styled Title */
.section-header .line {
  width: 50px;
  height: 2px;
  background: #764a00;
  margin-right: 10px;
}

.section-header i {
  color: #764a00;
  font-size: 0.8rem;
  margin-right: 10px;
}

.section-header h2 {
  font-size: 1rem;
  color: #010101;
  font-weight: bold;
}

/* Centered Titles */
.section-header h1 {
  font-size: 2rem;
  color: #764a00;
  font-weight: bold;
}

.section-header h4 {
  font-size: 1.1rem;
  color: #626262;
}

/* Service Item - Overflow */
.service-item {
  position: relative;
  border-radius: 10px;
  overflow: visible;
  padding-bottom: 100px;
}

/* Image Styling */
.service-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* Overlapping Service Card */
.service-card {
  position: absolute;
  bottom: 10%; /* Ensures the card extends below the image */
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  background: white;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.service-card h3 {
  font-size: 1.3rem;
  color: #050505;
  font-weight: bold;
  margin-bottom: 5px;
}

.service-card p {
  font-size: 1rem;
  color: #626262;
}

/* Learn More Link (Bottom Center) */
.text-center .learn-more {
  display: inline-block;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  background-color: #764a00;
  padding: 10px 15px;
}

.text-center .learn-more:hover {
  color: #764a00;
  background-color: #fff;
  border: 1px solid #764a00;
}

/* Mobile View */
@media (max-width: 968px) {
  .section-header {
    flex-direction: column;
    text-align: center;
  }

  .section-header .line {
    width: 40px;
  }

  .section-header h1 {
    font-size: 2rem;
  }

  .section-header h4 {
    font-size: 1.2rem;
  }

  .service-card {
    width: 90%;
    bottom: 10%; /* Increased for mobile */
  }

  .service-item {
    padding-bottom: 120px; /* More space on mobile */
  }
}

/* Speciality Setion---------- */
.speciality-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.speciality-left {
  position: relative;
  padding: 50px;
  background: url("/assets/images/special-background.png") no-repeat center
    center/cover;
  color: white;
  height: 75%;
}

/* Overlay */
.speciality-left .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #764a00, #050505);
  opacity: 0.8;
  z-index: 1;
}
.contents {
  position: relative;
  z-index: 2;
}

.speciality-items {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.speciality-item {
  display: flex;
  align-items: center;
  padding: 15px;
}

.icon-circle {
  width: 60px;
  height: 40px;
  background: #e3e3e3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.icon-circle i {
  font-size: 1.3rem;
  color: #153700;
}

.speciality-text h3 {
  font-weight: bold;
  font-size: 1rem;
}
.speciality-text p {
  font-size: 0.9rem;
}
.speciality-right {
  height: 100vh;
  margin-left: -13px;
}
.speciality-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile View */
@media (max-width: 968px) {
  .speciality-left {
    padding: 30px;
    text-align: center;
  }

  .speciality-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .icon-circle {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }
  .speciality-right {
    height: 70vh;
    margin-left: 0px;
    margin-bottom: 15px;
  }
  .speciality-right img {
    margin-top: 30px;
  }
}

/* testimonials Section-------- */
.testimonials-section {
  background-color: white;
}

.testimonials-section h2 {
  font-size: 2rem;
  color: #764a00;
  font-weight: bold;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #626262;
}

.testimonial-item {
  background: white;
  padding: 20px;
  border-radius: 10px;

  margin-bottom: 30px;
}

.stars {
  color: #4d4d4d;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.testimonial-text {
  color: #4d4d4d;
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
}

.profile-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.testimonial-footer h5 {
  margin: 0;
  font-size: 1rem;
  color: #050505;
}

.testimonial-footer p {
  margin: 0;
  font-size: 0.9rem;
  color: gray;
}

/* Mision and Vision Section */
.mission-vision-section {
  background-color: #f8f9fa;
}

/* Mission & Vision Boxes */
.mission-box,
.vision-box {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-top: 20px;
}

.mission-box h3,
.vision-box h3 {
  font-size: 1.7rem;
  font-weight: bold;
  color: #603c00;
}

.mission-box p {
  font-size: 1rem;
  color: #603c00;
}
.vision-box p {
  font-size: 1rem;
  color: #603c00;
}

/* Intro Text */
.intro-text {
  color: #626262;
  font-size: 1rem;
}

/* Images */
.mission-img,
.history-img {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
}

/* Positioning images */
.history-img {
  position: relative;
  top: -20px;
}

.mission-img {
  position: relative;
  bottom: -20px;
}

/* Story & History Titles */
.story-title,
.history-title {
  font-size: 1.8rem;
  margin-top: 20px;
  color: #603c00;
  font-weight: bold;
}
.story p {
  font-size: 1.1rem;
  color: #292929;
}

/* Footer Section-- */
.footer-section {
  background: #764a00;
  color: #ffffff;
  padding: 50px 0;
  text-align: left;
}

.footer-logo {
  width: 150px;
  margin-bottom: 20px;
  border-radius: 10px;
}

/* About Content */
.footer-about {
  width: 50%;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Contact Info */
.contact-info {
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.contact-item i {
  color: #fff;
}

/* Address */
.address {
  display: flex;
  align-items: left;
  gap: 10px;
}

.address i {
  color: #fff;
}

/* Social Icons */
.social-icons a {
  color: white;
  font-size: 18px;
  margin-right: 10px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ff7f00;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-logo {
    text-align: left;
  }
  .footer-about {
    width: 80%;
  }
  .contact-info {
    text-align: center;
    justify-content: center;
  }

  .social-icons {
    text-align: center;
    margin-top: 10px;
  }
}

/* Services Page------ */
/* Service Home Section */
.service-home {
  position: relative;
  background: url("/assets/images/service-page.avif") no-repeat center
    center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-top: 38px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.service-title {
  position: relative;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 968px) {
  .service-home {
    margin-top: 31px;
  }
  .service-title {
    font-size: 2rem;
  }
  .empower-title {
    font-size: 1.2rem !important;
  }
}

/* Empower Section----- */
.empower-section {
  position: relative;
  background: linear-gradient(rgba(118, 74, 0, 0.3), rgba(5, 5, 5, 0.3)),
    url("/assets/images/about2.jpg") center/cover no-repeat;
  height: 70vh; /* Adjust height as needed */
  display: flex;
}

.empower-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: left;
}

.empower-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 25px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.empower-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Blogs Page----- */
.blog-section {
  background-color: #f8f9fa;
}
/* Service Home Section */
.blogs-home {
  position: relative;
  background: url("/assets/images/blog3.jpg") no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-top: 38px;
}
.blogs-social-icons a {
  color: #555;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.blogs-social-icons a:hover {
  color: #ffa300;
}

.intro-text {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}
.blog-section img {
  width: 100%;
}
.blog-content h3 {
  margin-top: 20px;
  font-weight: bold;
  color: #764a00;
}

.blog-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

/* stories section---------- */
.stories-section {
  background-color: #f8f9fa;
}

.story-item {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.blogs-heading {
  font-size: 2.5rem;
  font-weight: bold;
}
.stories-section img {
  width: 100%;
  height: 50%;
}
.story-meta {
  background: #764a00;
  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 5px;
}

.category {
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 10px;
  border-radius: 3px;
}

.minutes {
  font-style: italic;
}

.story-title {
  font-size: 1.5rem;
  margin-top: 10px;
  font-weight: bold;
  color: #333;
}

.story-details {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.read-more {
  font-size: 1rem;
  color: #764a00;
  text-decoration: none;
  font-weight: bold;
}

.read-more:hover {
  text-decoration: underline;
}

@media (max-width: 968px) {
  .blogs-home {
    margin-top: 30px;
  }
  .blogs-heading {
    font-size: 1.4rem;
  }
  .intro-text {
    font-size: 1rem;
    line-height: normal;
  }
}

/* Read more Blogs Page------ */
.read-blogs {
  position: relative;
  background: url("/assets/images/physio.jpg") no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-top: -70px !important;
}

/* Blog Stories Section */
.blog-stories {
  background-color: #f8f9fa;
}

/* Story Box */
.story-item {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}
.blog-stories h2{
  color: #050505;
}

.story-item:hover {
  transform: translateY(-5px);
}

/* Back Button */
.back-link {
  font-size: 1.2rem;
  font-weight: bold;
  color: #764a00;
  text-decoration: none;
}

.back-link i {
  margin-right: 8px;
}

.back-link:hover {
  text-decoration: underline;
}

/* Career Page--------- */
.career-home {
  position: relative;
  background: url("/assets/images/about2.jpg") no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-top: 38px;
}
/* Career Intro Section */
.career-intro {
  background-color: #f8f9fa;
  text-align: center;
}

/* Hiring Positions */
.hiring-positions {
  text-align: left;
  max-width: 600px;
}

/* Colored Bullets */
.hiring-positions .bullet {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #764a00;
  margin-right: 10px;
}

.required-info {
  color: red;
  font-weight: bold;
}
.section-heading {
  background-color: #7c7c7c;
  padding: 10px;
  font-weight: bold;
  border-radius: 5px;
}
.notice {
  width: 70%;
}
.notice-title {
  background-color: #ebebeb;
  color: #000;
  padding: 10px;
  border-radius: 5px;
  width: 50%;
  margin-bottom: 20px;
  font-weight: bold;
}
.underline-heading {
  text-decoration: underline;
}
.btn-submit {
  background-color: #764a00;
  color: #fff;
  padding: 5px 15px;
  border-radius: 8px;
  transition: 0.3s ease;
}
.btn-submit:hover {
  background-color: #fff;
  color: #764a00;
  border: 1px solid #764a00;
}

@media (max-width: 968px) {
  .career-home {
    margin-top: 31px;
  }
  .contact-home {
    margin-top: 31px !important;
  }
  .lead {
    font-size: 1rem;
  }
  .section-heading {
    font-size: 1.3rem;
  }
  .notice {
    width: 100%;
    color: red;
    font-size: 0.9rem;
  }
  .notice-title {
    width: 100%;
  }
}

/* Contact Us Page------- */
.contact-home {
  position: relative;
  background: url("/assets/images/partner2.png") no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-top: 38px;
}
.contact-intro {
  background-color: #f8f9fa;
}

/* .contact-item .icon {
  color: #007bff;
} */

.contact-item p {
  margin: 0.25rem 0;
  font-size: 1rem;
}
.contact-us-section {
  padding: 60px 0;
}
.contact-form {
  position: relative;
  padding-bottom: 60px; /* extra space for the send message link */
}
.contact-form h1 {
  color: #767676;
}
.send-message-link {
  position: absolute;
  bottom: 0;
  left: 0;
  margin-bottom: 20px;
}
/* Optional: style adjustments for inputs */
.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
}

/* lOGIN PAGE------------ */
.login-container {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;

  justify-content: center;
  align-items: center;
  width: 100%;
}
.login-image {
  background: url("/assets/images/login.png") no-repeat center center;
  background-size: cover;
  width: 50%;
  height: 100vh;
}
.login-form {
  padding: 40px;
}
.login-form h2 {
  font-weight: 600;
}
.form-control {
  border-radius: 5px;
}
.remember-me {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.or-divider {
  display: flex;
  align-items: center;
  text-align: center;
}
.or-divider::before,
.or-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ccc;
  margin: 0 10px;
}
.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.google-btn img {
  width: 20px;
  margin-right: 10px;
}
@media (max-width: 968px) {
  .remember-me label {
    font-size: 0.8rem;
  }
  .welcome-text {
    font-size: 1.4rem !important;
  }
}
/* Account Page--------- */
.acct-image {
  background: url("/assets/images/acct.png") no-repeat center center;
  background-size: cover;
  width: 50%;
  height: 100vh;
}

/* Booking Page----------- */
/* Center content */
.booking-container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Left Image */
.booking-image {
  width: 50%;
  height: 100vh;
  background: url("/assets/images/booking.png") no-repeat center center;
  background-size: cover;
}

/* Form Styling */
.booking-form {
  padding: 40px;
}

.welcome-text {
  font-size: 1.8rem;
  font-weight: bold;
  color: #764a00;
}

/* Modal Styling */
.modal-content {
  text-align: center;
}
/* Verification Page----------------------------------- */
.verify-code-form {
  text-align: center;
}
.verification-input {
  display: flex;
    gap: 20px;
}

.verification-input input {
  width: 10%;
  padding: 5px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0px 6px 12px 0px rgba(51, 108, 251, 0.16);
  color: #000;
font-family: Inter;
font-size: 16.504px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.verify{
  color: #000;
font-family: Inter;
font-size: 25px;
font-style: normal;
font-weight: 400;
line-height: normal;
}



/* Animations--------------------- */
/* Navbar Animation Effect---- */
@keyframes slideAnimation {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
