* {
  padding: 0;
  margin: 0;
  /* box-sizing: border-box; */
  font-family: "Poppins", sans-serif; /* Custom font family */
}

html, body{
  width: 100%;
  /* height: 100%; */
  /* margin: 0;
  padding: 0; */
  overflow-x: hidden;
}
/*top header section*/
#topheader {
  text-align: right;
  border-bottom: 1px solid #ebebeb;
}
#topheader a {
  color: #2c3e50;
  font-weight: 600;
  font-size: 0.89rem;
}
/*header section*/
/* Add spacing between icons and text */
.contact-link {
  margin-right: 30px; /* Adjust as needed */
  text-decoration: none; /* Remove underlines */
}

.contact-link i {
  font-size: 1.5rem; /* Adjust the font size as needed */
}
.custom {
  padding-left: 20% !important;
}

/* Logo styling */
.navbar-brand img {
  width: 50px; /* Adjust as needed */
  height: auto; /* Maintain aspect ratio */
  margin-right: 10px; /* Add space between logo and text */
}

/* Light background color for navbar */
.navbar {
  background: linear-gradient(
    to right,
    lightgreen,
    rgb(225, 189, 225),
    rgb(232, 232, 197)
  ); /* Use linear gradient with three colors */
}

/* Padding for right side of navbar */
.navbar-nav {
  padding-right: 10%; /* 10% padding on the right end */
}

/* Spacing between navbar items */
.navbar-nav .nav-item {
  margin-right: 10px; /* 5px spacing between navbar items */
}

/* Increase font size for navbar links */
.navbar-nav .nav-link {
  font-size: 17px; /* Adjust font size as needed */
}
@keyframes fadeInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/*testimonial*/

.testimonials {
  text-align: center;
  padding: 50px 100px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: justify;
}

.testimonial-col {
  width: 300px;
  margin: 20px;
  padding: 20px;
  border: 2px solid black;
  border-radius: 10px;
  background-color: #f5f5dc;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  text-align: justify;
}

.testimonial-col:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.testimonial-col:before {
  content: "\201C";
  font-size: 2.5em;
  color: #3498db;
  position: absolute;
  top: 10px;
  left: 5px;
}

.testimonial-col p {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 20px;
}

.testimonial hr {
  border: none;
  height: 3px;
  background: linear-gradient(to right, rgb(225, 189, 225), rgb(232, 232, 197));
  width: 10%;
  margin: auto;
}

.fa-star,
.fa-star-half-o {
  color: black;
}

@media (max-width: 768px) {
  .testimonial-col {
    width: 100%;
  }
}
