body {
  font-family: "Open Sans", sans-serif;
  color: #500472;
}

a {
  color: #79CBB8;
  text-decoration: none;
}

a:hover {
  color: #79CBB8;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
  font-family: "Roboto", sans-serif;
};


a {
  color: #79CBB8;
  text-decoration: none;
}

a:hover {
  color: #79CBB8;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
  font-family: "Roboto", sans-serif;
}

/* Preloader Style */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);  /* Light semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;  /* Make sure the preloader is above all content */
  animation: blurAnimation 2s ease-out forwards;
}

/* Logo Animation */
#preloader-logo img {
  width: 150px; /* Set the size of your logo */
  animation: rotateLogo 1.5s linear infinite;
}

/* Blurring Effect */
@keyframes blurAnimation {
  0% {
      filter: blur(5px);
      opacity: 1;
  }
  100% {
      filter: blur(0px);
      opacity: 0;
  }
}

/* Logo rotation */
@keyframes rotateLogo {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

/* Main content */
#main-content {
  display: block; /* Make content visible once page has loaded */
  opacity: 1;
  transition: opacity 0.5s ease;
}


.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #500472;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #500472;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #500472;
}

#header.header-transparent {
  background: none;
}

#header.header-scrolled {
  background: rgba(80,4,114, 0.8);
  height: 60px;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 4px 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 80px;
}

#main {
  margin-top: 80px;
}

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar-link
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #79CBB8;
}

.navbar-link.active{
  color: #79CBB8;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #500472;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #500472;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(80,4,114, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #1e4356;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #500472;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(80, 4, 114, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #500472;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}


/* Container for the form */
.add-reviews form {
  max-width: 600px;
  margin: 50px auto;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}*/

/* Form title */
.add-reviews h1 {
  text-align: center;
  color: #500472;
  margin-bottom: 20px;
  padding-top: 100px;
}

/* Label styling */
.add-reviews label {
  font-size: 16px;
  color: #500472;
  margin-bottom: 8px;
  display: block;
}

/* Style for empty and filled stars */
.star {
  font-size: 20px; /* Adjust size of stars */
  color: #ccc; /* Default color for empty star */
  margin-right: 5px;
}

.star.filled {
  color: gold; /* Filled star color */
}


/* Input fields */
.add-reviews input[type="text"],
.add-reviews input[type="email"],
.add-reviews textarea,
.add-reviews select {
  width: 100%;
  padding: 12px;
  margin: 10px 0 20px 0;
  border: 1px solid #500472;
  border-radius: 4px;
  font-size: 16px;
  box-shadow: none !important;
  outline: none !important;
}

/* Style for the textarea */
.add-reviews textarea {
  min-height: 150px;
  resize: vertical;
}

/* Button styling */
.add-reviews button {
  width: 100%;
  padding: 12px;
  background-color: #500472;
  color: white;
  font-size: 18px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

/* Button hover effect */
.add-reviews button:hover {
  background-color: #500472;
}

/* Input field focus styling */
.add-reviews input:focus-visible,
.add-reviews textarea:focus-visible,
.add-reviews select:focus-visible {
  border-color: #500472;
  outline: none !important;
  box-shadow: none !important;
}

/* Optional: Add some styling to make the page look nicer */
.add-reviews {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  padding: 20px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

