.nav-item{
  font-size: 20px;
}
.nav-item{
text-decoration: none;
background-image: linear-gradient(#d99a5a, #d99a5a);
background-size: 0% 0.1em;
background-position-y: 100%;
background-position-x: 50%;
background-repeat: no-repeat;
transition: background-size 0.2s ease-in-out;
}
.nav-item:hover,
.nav-item:focus,
.nav-item:active {
background-size: 100% 0.1em;
}

.navbar {
  -webkit-box-shadow: 0 8px 6px -6px #999;
  -moz-box-shadow: 0 8px 6px -6px #999;
  box-shadow: 0 8px 6px -6px #999;
}
body {
  padding-top: 82px;
  background: rgb(95,107,233);
  background: linear-gradient(90deg, rgba(95,107,233,0.048144257703081283) 14%, rgba(238,130,56,0.050945378151260545) 96%);
}
@media (max-width: 979px) {
  body {
    padding-top: 82px;
  }
}
.full-screen {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.icon.btn{
margin: auto;
}
.errormsg{
  color:rgb(250, 31, 31);
  text-align: center;
}

/* testominal css */
body {
  font-family: "Open Sans", sans-serif;
}
h2 {
  color: #333;
  text-align: center;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  position: relative;
  margin: 30px 0 60px;
}
h2::after {
  content: "";
  width: 100px;
  position: absolute;
  margin: 0 auto;
  height: 3px;
  background: #f15b28;
  left: 0;
  right: 0;
  bottom: -10px;
}
.col-center {
  margin: 0 auto;
  float: none !important;
}
.container-xl .carousel {
  padding: 0 70px;
}
.carousel .carousel-item {
  color: #999;
  font-size: 14px;
  text-align: center;
  overflow: hidden;
  min-height: 290px;
}
.carousel .carousel-item .img-box {
  width: 135px;
  height: 135px;
  margin: 0 auto;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 50%;
}
.carousel .img-box img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
}
.carousel .testimonial {
  padding: 30px 0 10px;
}
.carousel .overview {	
  font-style: italic;
}
.carousel .overview b {
  text-transform: uppercase;
  color: #f15b28;
}
.carousel-control-prev, .carousel-control-next {

 
  margin-top: -180px;

  background: none;
}
.carousel-control-prev i, .carousel-control-next i {
  font-size: 68px;
  line-height: 42px;
  position: absolute;
  display: inline-block;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 0 3px 3px #e6e6e6, 0 0 0 #000;
}
.carousel-indicators {
  bottom: -40px;
}
.carousel-indicators li, .carousel-indicators li.active {
  width: 12px;
  height: 12px;
  margin: 1px 3px;
  border-radius: 50%;
  border: none;
}
.carousel-indicators li {	
  background: #999;
  border-color: transparent;
  box-shadow: inset 0 2px 1px rgba(0,0,0,0.2);
}
.carousel-indicators li.active {	
  background: #555;		
  box-shadow: inset 0 2px 1px rgba(0,0,0,0.2);
}

.item{
  background-image: linear-gradient(131.83deg, #f2dbdb 0%,     #f7eeee 99.21%);
  border-radius: 10px;
  box-shadow: 1px 1px 10px  #f0e9e7;
  
}

html * {
  font-family: Lato;
}



.item img {
  transition: transform 0.5s ease;
}

.item img:hover {
  transform: scale(1.1);
}

.star {
  color: rgb(230, 129, 47);
}


.viewmore{
  text-decoration: none;
  color: rgb(255, 255, 255);
  background-color: rgb(94, 173, 242);
  border-radius: 3px;
  padding:2px;
}


  .delete {
    text-decoration: none !important;
    color: rgb(252, 252, 252) !important;
    background-color: rgb(237, 81, 81) !important;
    border-radius: 3px;
    padding:2px;
  }

  .delete:hover {
    opacity: 0.8!important;
    color: rgb(255, 255, 255)!important;
    background-color: rgb(225, 0, 0) !important;
    /* Add any other desired hover styles */
  }

  
  .viewmore:hover{
    opacity: 0.8!important;
    background-color: rgb(0, 135, 253);
    color: rgb(255, 255, 255)!important;
    /* Add any other desired hover styles */
  }


  .moreinfo{
    text-decoration: none !important;
    color: rgb(215, 225, 226) !important;
  
  }

  .moreinfo:hover{
    text-decoration: none !important;
    color: rgb(247, 247, 247) !important;
    font-size: large;
  
  }
  .text-white{
    text-decoration: none;
  }

/* General Enhancements */
body {
  padding-top: 82px;
  background: rgb(95,107,233);
  background: linear-gradient(90deg, rgba(95,107,233,0.048) 14%, rgba(238,130,56,0.050) 96%);
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

/* Navbar Enhancements */
.navbar {
  transition: all 0.3s ease-in-out;
}
.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.85) !important;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Image Hover Effect */
.content-img {
  transition: transform 0.3s ease-in-out;
}
.content-img:hover {
  transform: scale(1.05);
}

/* Button Enhancements */
button {
  transition: 0.3s ease-in-out;
}
button:hover {
  transform: scale(1.1);
}

/* Section Fade-In Animation */
.main_heading {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-in-out;
}
.main_heading.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Back to Top Button */
#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #f15b28;
  color: white;
  padding: 10px 15px;
  border-radius: 50%;
  display: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
#backToTop:hover {
  background: #d14815;
}
/* General Section Styling */
.section {
  padding: 60px 0;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-in-out;
}
.section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Headings Styling */
.section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}
.section p {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* Image Styling */
.section-img {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.4s ease-in-out;
}
.section-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease-in-out;
}
.section-img:hover img {
  transform: scale(1.05);
}

/* Image Overlay Effect */
.section-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: 12px;
}
.section-img:hover::after {
  opacity: 1;
}

/* Grid Layout for Sections */
.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
}


 
