html, *{
    scroll-behavior: smooth;
     font-style: normal;
     font-family: "Nunito", sans-serif;
     font-optical-sizing: auto;
}

.quote::before {
  content: "“";   
}

.quote::after {
  content: "”";   
}

.read-post a{
    font-size: 24px;
    margin:0;
    padding:0;
}
.read-post a:hover{
    font-size: 24px;
    text-decoration: underline;
}


.quote::before,
.quote::after {
  color: #C3BB26;
  font-size: 1.5em;
  font-weight: bold;
}
.logo {
    height: 40px;
}

small, .small {
    font-size: 1em;
}
.text-primary-hover:hover {
  color: #0d6efd !important; /* Bootstrap's default primary color */
  cursor: pointer;
  transition: color 0.2s ease-in-out;
}
.post-container img {
  max-inline-size: 100%;
  block-size: auto;
  aspect-ratio: 2/1;
  object-fit: cover;
  object-position: top center;
}
h5.card-title.headline {
    height: 3rem;
}
h4.headline {
    height: 4rem;
}
p.para-text {
    height: 4rem;
}

p.no-post {
    height: 24rem;
    /*border: solid;*/
    border-radius: 10px;
    display: flex;
    align-content: flex-end;
    justify-content: space-evenly;
    align-items: center;
}
p.no-post-s {
    height: 14rem;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 10px;
}
/*.read-dot {*/
/*  overflow: hidden;*/
/*  display: -webkit-box;*/
/*  -webkit-line-clamp: 3;*/
/*  -webkit-box-orient: vertical;*/
/*  min-height: 32px;*/
/*}*/
.read-dot {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  /*max-width: 17rem; */
  /*min-height: 20rem;*/
}
.acn-img {
    transition: transform ease-in-out 2s;
    transform-origin: center;
}

.acn-img:hover {
    transform: scale(1.2)
}

.imgbox {
    border-radius: 19px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 100%;
}

.imgborderbox {
    border-radius: 18px;
    background-position: center;
    overflow: hidden;
    box-shadow: 2px;
    box-shadow: 2px -3px 20px 5px;
}

.fitdiv {
    border-radius: 18px;
    padding: 10px;
    background-color: #d2d4ce;
}


/* Landing anchor */ 
.anchor {
  width: fit-content;
  min-width: 100px;
  height: 45px;
  padding: 8px;
  border-radius: 5px;
  border: 2.5px solid #E0E1E4;
  box-shadow: 0px 0px 20px -20px;
  cursor: pointer;
  background-color: white;
  transition: all 0.2s ease-in-out 0ms;
  user-select: none;
  font-family: 'Poppins', sans-serif;
}

.anchor:hover {
  background-color: #F2F2F2;
  box-shadow: 0px 0px 20px -18px;
}

.anchor:active {
  transform: scale(0.95);
}

/*** Spinner Start ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.8s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

.btn {
  text-transform: uppercase;
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary {
  box-shadow: inset 0 0 0 0 var(--bs-dark);
}

.btn.btn-primary:hover {
  box-shadow: inset 200px 0 0 0 var(--bs-dark) !important;
  color: var(--bs-primary) !important;
}

.btn.btn-dark {
  box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-dark:hover {
  box-shadow: inset 200px 0 0 0 var(--bs-primary);
  color: var(--bs-dark) !important;
}

/*** Topbar Start ***/

.search-btn {
  position: relative;
  width: 100%;
  padding: 0 0 0 25px;
}

.search-btn .form-group {
  width: 100%;
}

.search-btn button {
  position: absolute;
  right: 25px;
}

.gradient-overlay-left,
.gradient-overlay-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px; /* Adjust width as needed */
    z-index: 2;
    pointer-events: none; /* So it doesn't block interaction */
}

.gradient-overlay-left {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.gradient-overlay-right {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}


@media (max-width: 992px) {
  .search-btn {
    display: none;
  }
  .logo {
    height: 34px;
}
}

@media (max-width: 768px) {
 
  .topbar {
    flex-direction: column;
  }
  .search-btn {
    display: none;
  }
  .topbar-info {
    flex-direction: column;
  }
  .topbar-info a {
    padding: 0 0 10px 0;
  }
  .topbar-icon {
    padding: 0 0 10px 0;
  }
  .logo {
    height: 30px;
}
  
}

@media (max-width: 576px) {
    .gradient-overlay-left, 
   .gradient-overlay-right{
     display: none;
     
 }
  .topbar-top {
    display: none;
  }
}

/*** Topbar End ***/

/*** Navbar Start ***/
.navbar .navbar-nav {
  padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
  padding: 15px;
  color: var(--bs-white);
  font-weight: 500;
  font-size: 16px;
  outline: none;
  transition: 0.5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--bs-primary);
  transition: 0.5s;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 800;
  vertical-align: middle;
  margin-left: 8px;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    transition: 0.5s;
    opacity: 0;
  }
}

.dropdown .dropdown-menu a:hover,
.dropdown .dropdown-menu a.active {
  background: var(--bs-dark);
  color: var(--bs-primary);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  transition: 0.5s;
  opacity: 1;
}

.navbar-toggler {
  background: var(--bs-secondary);
  color: var(--bs-light) !important;
  padding: 5px 12px;
  border: 2px solid var(--bs-primary) !important;
}

/*** Navbar End ***/

/*** Carousel Start ***/

.carousel-item {
  position: relative;
}

.carousel-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
}

.carousel-caption {
    height: 85%;
    display: flex;
    /* align-items: center; */
    text-align: start;
    z-index: 1;
    right: 6%;
    left: 14%;
}

/*.carousel-caption {*/
/*  height: 100%;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  text-align: start;*/
/*  z-index: 1;*/
/*  right: 10%;*/
/*  left: 10%;*/
/*}*/

.carousel-control-prev {
  width: 80px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 0;
  background: var(--bs-primary);
  border-radius: 0 30px 30px 0;
  transition: 0.5s;
  opacity: 1;
}

.carousel-control-next {
  width: 80px;
  height: 60px;
  position: absolute;
  top: 50%;
  right: 0;
  background: var(--bs-primary);
  border-radius: 30px 0 0 30px;
  transition: 0.5s;
  opacity: 1;
}

#carouselId .carousel-indicators li,
#carouselId .carousel-indicators li {
  width: 24px;
  height: 24px;
  background: var(--bs-dark);
  border: 2px solid var(--bs-primary);
  border-radius: 24px;
  margin: 0 10px 30px 10px;
}

#carouselId .carousel-indicators li.active {
  background: var(--bs-primary) !important;
}

    /* Style the container for the dots */
    .owl-dots {
        text-align: center; /* Center the dots */
        margin-top: 20px; /* Add some spacing above the dots */
    }

    /* Style individual dots */
    .owl-dots button.owl-dot {
        background: #ccc; /* Default background color for inactive dots */
        border-radius: 50%; /* Make them circular */
        height: 12px;
        width: 12px;
        margin: 0 5px; /* Add spacing between dots */
        cursor: pointer;
        outline: none; /* Remove outline on focus */
        border: none; /* Remove default button border */
        padding: 0; /* Remove default button padding */
        display: inline-block; /* Ensure dots are in a line */
    }

    /* Style the active dot and hover state */
    .owl-dots button.owl-dot.active,
    .owl-dots button.owl-dot:hover {
        background-color: #FEAE00; /* Highlight color for active/hovered dot */
    }

    /* Style the inner span element for more complex designs */
    .owl-dots button.owl-dot span {
        display: block; /* Allows for inner styling */
        height: 100%;
        width: 100%;
        border-radius: 50%;
        color: blue;
    }

@media (max-width: 768px) {
  .carousel-item {
    width: 100%;
    height: 400px;
  }

  .carousel-item img {
    height: 400px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/carousel-2.jpg) center center no-repeat;
  background-size: cover;
}

/*** Carousel End ***/

/*** About Start ***/

.about-img {
  width: 100%;
  height: auto;
  position: relative;
  padding: 30px 30px 30px 30px;
  overflow: hidden;
}

.about-img::before {
  content: "";
  width: 100%;
  height: 40%;
  background: var(--bs-dark);
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  border-radius: 10px 10px 10px 10px;
}

.about-img::after {
  content: "";
  width: 100%;
  height: 60%;
  background: var(--bs-primary);
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 1;
  border-radius: 10px 10px 10px 10px;
}

.rotate-left {
  width: 150px;
  height: 100px;
  position: absolute;
  top: 28%;
  left: -10%;
  rotate: 25deg;
  z-index: 2;
}

.rotate-right {
  width: 150px;
  height: 100px;
  position: absolute;
  top: 28%;
  right: -10%;
  rotate: -25deg;
  z-index: 2;
}

.about-img img {
  position: relative;
  z-index: 2;
  border-radius: 10px;
}

.experiences {
  width: 140px;
  height: 180px;
  position: absolute;
  top: -0;
  right: 0;
  padding: 35px 35px;
  text-align: center;
  border-radius: 10px;
  z-index: 3;
  animation: mymove 5s infinite;
  animation-timing-function: ease-in-out;
}

@keyframes mymove {
  from {
    top: -202px;
  }
  to {
    top: 102%;
  }
}

/*** About End ***/

/*** Services Start ***/
.services-inner-icon {
  width: 130px;
  height: 130px;
  background: #c3bb26;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  position: relative;
}
.services-inner-icon img {
  width: 70% !important;
  height: 60%;
}
.services-inner-icon::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 62px;
  top: 50%;
  left: 50%;
  transition: 0.5s;
}

.services-item:hover .services-inner-icon::after {
  width: 100%;
  height: 100%;
  margin-top: -50%;
  margin-left: -50%;
  background: var(--bs-primary);
  color: var(--bs-dark);
}

.services-item i {
  text-align: center;
  transition: 0.5s;
}

.services-item:hover i {
  color: var(--bs-dark) !important;
  z-index: 1;
  rotate: 360deg;
}

.services-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

/*** Services Start ***/

/*** Project Start ***/
.project-item {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 30px 30px 30px 30px;
  overflow: hidden;
}

.project-item::before {
  content: "";
  width: 100%;
  height: 40%;
  background: var(--bs-dark);
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  border-radius: 10px 10px 10px 10px;
}

.project-item::after {
  content: "";
  width: 100%;
  height: 60%;
  background: var(--bs-primary);
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 1;
  border-radius: 10px 10px 10px 10px;
}

.project-left {
  width: 180px;
  height: 70px;
  position: absolute;
  top: 22%;
  left: -18%;
  rotate: 30deg;
  z-index: 2;
}

.project-right {
  width: 180px;
  height: 70px;
  position: absolute;
  top: 22%;
  right: -18%;
  rotate: -30deg;
  z-index: 2;
}

.project-item img {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-item a {
  position: absolute;
  padding: 25px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0) rotate(-360deg);
  border-radius: 10px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  opacity: 0;
}

.project-item:hover a {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
  background: var(--bs-primary);
  color: var(--bs-dark) !important;
  opacity: 1;
}

/*** prohect Start ***/

/*** Blog Start ***/

.blog-carousel {
  width: 100%;
  /* height: 100%; */
  position: relative;
}

/*** Blog End ***/

/*** Pricing Start ***/
.pricing-item {
  transition: 0.5s;
}

.pricing-item:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  margin: -20px 0 20px 0;
}

.pricing-label {
  border-bottom: 20px solid var(--bs-light);
  border-radius: 0 0 300px 300px;
  transition: 0.5s;
}

.pricing-item:hover .pricing-label {
  border-color: rgba(0, 0, 0, 0.5);
}

.pricing-item:hover .pricing-label.pricing-featured {
  border-color: rgba(255, 255, 255, 0.5);
}

/*** Pricing End ***/

/*** Call To Action start ***/

.call-to-action {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

/*** Call To Action End ***/

/*** Contact Start ***/
.contact-link a i,
.contact-link a h5,
.contact-link a.h5 {
  transition: 0.5s;
}

.contact-link a i:hover,
.contact-link a h5:hover,
.contact-link a.h5:hover {
  color: var(--bs-primary) !important;
}

/*** Contact End ***/

/*** Footer Start ***/
.footer {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/carousel-2.jpg) center center no-repeat;
  background-size: cover;
  color: rgba(255, 255, 255, 0.7);
  /* margin-top: 6rem; */
}

.footer-item,
.footer-item a {
  color: rgba(255, 255, 255, 0.7);
  text-transform: capitalize;
}

/*** Footer End ***/

/*** Copywright Start ***/

.copyright .copyright-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.copyright .copyright-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*** Copywright End ***/
