/********** Template CSS **********/
:root {
    --primary: #e20b87;
    --light: #F1F8FF;
    --dark: #0F172B;
}

.ff-secondary {
    font-family: 'Pacifico', cursive;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    font-size: 15px;
    color: var(--light) !important;
    text-transform: uppercase;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-dark .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
    }

    .navbar-dark .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, .1)
    }

    .navbar-dark .navbar-nav .nav-link,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
    }

    .navbar-dark .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
        background: transparent !important;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: var(--dark) !important;
    }
}


/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(15, 23, 43, .9), rgba(15, 23, 43, .9)), url(../img/bg-hero.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-header img {
    /* animation: imgRotate 50s linear infinite; */
    border-radius: 145px;
}

/* @keyframes imgRotate { 
    100% { 
        transform: rotate(360deg); 
    } 
} */

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Food Menu ***/
.nav-pills .nav-item .active {
    border-bottom: 2px solid var(--primary);
}


/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/video.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    height: calc(100% - 38px);
    transition: .5s;
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item:hover {
    height: 100%;
}

.team-item .btn {
    border-radius: 38px 38px 0 0;
}


/*** Testimonial ***/






/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  position: relative;
  overflow: hidden;
  /* Swiper Navigation */
  /* Swiper Pagination */
  /* Responsive Styles */
}

.testimonials .testimonial-slider {
  position: relative;
  padding-bottom: 50px;
}

.testimonials .testimonial-slider .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-item {
  background: linear-gradient(
    135deg,
    #191919 0%,
    color-mix(in srgb, #191919, #004ac3 2%) 100%
  );
  border-radius: 20px;
  padding: 0;
  height: 100%;
  border: 1px solid color-mix(in srgb, #f8f8f8, transparent 90%);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.testimonials .testimonial-item:hover .testimonial-header img {
  transform: scale(1.05);
}

.testimonials .testimonial-item:hover .quote-icon {
  color: white;
  transform: scale(1.1);
}

.testimonials .testimonial-header {
  position: relative;
  text-align: center;
  padding: 30px 30px 20px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, #191919, #e20b87 3%) 0%,
    #191919 100%
  );
}

.testimonials .testimonial-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid color-mix(in srgb, #e20b87, transparent 70%);
  margin-bottom: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-header .rating {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.testimonials .testimonial-header .rating i {
  color: #ffc107;
  font-size: 0.9rem;
}

.testimonials .testimonial-body {
  padding: 0 30px 20px;
}

.testimonials .testimonial-body p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  font-style: italic;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-body p::before,
.testimonials .testimonial-body p::after {
  content: '"';
  font-size: 1.5rem;
  color: var(--accent-color);
  opacity: 0.6;
  font-family: serif;
  position: absolute;
}

.testimonials .testimonial-body p::before {
  top: -5px;
  left: -10px;
}

.testimonials .testimonial-body p::after {
  bottom: -20px;
  right: -5px;
}

.testimonials .testimonial-footer {
  padding: 20px 30px 30px;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-footer h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 5px;
}

.testimonials .testimonial-footer span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: block;
  margin-bottom: 15px;
}

.testimonials .testimonial-footer .quote-icon {
  position: absolute;
  bottom: 15px;
  right: 25px;
  color: color-mix(in srgb, #e20b87, transparent 60%);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}



@media (max-width: 1199px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 25px 25px 15px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 70px;
    height: 70px;
  }

  .testimonials .testimonial-item .testimonial-body,
  .testimonials .testimonial-item .testimonial-footer {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 991px) {
  .testimonials .testimonial-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 20px 20px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 60px;
    height: 60px;
  }

  .testimonials .testimonial-item .testimonial-header .rating i {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 20px 15px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 15px 20px 20px;
  }

  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 1rem;
  }

  .testimonials .testimonial-item .testimonial-footer span {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.3rem;
    bottom: 10px;
    right: 15px;
  }
}

@media (max-width: 575px) {
  .testimonials .testimonial-slider {
    padding-bottom: 30px;
  }

  .testimonials .testimonial-item .testimonial-header {
    padding: 15px 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 55px;
    height: 55px;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.9rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 10px 15px 15px;
  }

  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.2rem;
  }

  .testimonials .testimonial-carousel {
    margin-top: 10px;
  }
}

/* .testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
} */


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
.tab-pane h5{
    font-weight: 500;
}











.main_services_section .services-grid .work-step-item {
  position: relative;
  background: #d9d9d998;
  border-radius: 20px 0 20px 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 15px;
  width: 100%;
  overflow: hidden;
  /* background: transparent; */
  backdrop-filter: blur(20px);
  box-shadow: 0px 0px 20px -4px white inset;
}
.main_services_section .services-grid{
    position: relative;
    z-index: 99;
}

.main_services_section .services-grid .work-step-item:hover::before {
  border-radius: 0 0 0 30px;
  width: 100%;
}

.main_services_section .services-grid .work-step-item::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(135deg, #386bb7 0%, #1f212e 100%);
  border-radius: 0 999px 999px  0;
  width: 0%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}

.main_services_section .services-grid .box-bg-shape::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  background: url("../img/icon/shape.svg");
  -webkit-mask: url("../img/icon/shape.svg");
  background-color: var(--white-color);
  mask-repeat: no-repeat;
  mask-position: top right;
  mask-size: cover;
  width: 188px;
  height: 55px;
  z-index: 1;
}

.main_services_section .services-grid .work-step-item.box-bg-shape::after {
  /* background: none; */
}

.main_services_section .services-grid .work-step-item .icon-box {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #386bb7 0%, #1f212e 100%);
  border-radius: 50%;
  margin-bottom: 30px;
  transition: all 0.3s ease-in-out;
}

.main_services_section .services-grid .work-step-item .icon-box,
.work-step-content {
  position: relative;
  z-index: 1;
}
.main_services_section .services-grid .work-step-item .work-step-content h3{
	margin-top:40px;
	margin-bottom: 10px;
}
.main_services_section .services-grid .work-step-item .icon-box,
.main_services_section .services-grid .work-step-item .work-step-content h3 {
  font-size: 1rem;
  font-weight: 700;
}
.main_services_section .services-grid .work-step-item .work-step-no {
  position: absolute;
  top: 4px;
  right: 20px;
  z-index: 2;
  color: white;
}
.main_services_section .services-grid .work-step-item .work-step-no h3 {
  font-size: 1.5rem;
}
.main_services_section .services-grid .work-step-item .icon-box::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: white;
  border-radius: 50%;
  transform: scale(0);
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.main_services_section .services-grid .work-step-item:hover .icon-box::before {
  transform: scale(1);
}

.main_services_section .services-grid .work-step-item .icon-box #color_code {
  fill: white;
}

.main_services_section .services-grid .work-step-item:hover .icon-box #color_code {
  fill: #386bb7;
}
.main_services_section .services-grid .work-step-item:hover .work-step-content h3,
.main_services_section .services-grid .work-step-item:hover .work-step-content p,
.main_services_section
  .services-grid
  .work-step-item:hover
  .work-step-content
  .box_button
  span {
  color: white !important;
  transition: 0.5s;
}
.about_main_section{

  background-attachment: fixed;
  background-size: 44%;
}
.about_main_section .upper_heading_about{
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}
.about_main_section .upper_heading_about .inner_about_icon svg{
	border: solid 1px black;
    border-radius: 100%;
    padding: 6px;
}
.about_main_section .upper_heading_about .inner_about_content{
	margin-left: 10px;
}



.main_services_section {
  position: relative;
  overflow: hidden;
}

.main_services_section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  top: -8%;
  right: -3%;
  filter: blur(8px);
  animation: float 6s ease-in-out infinite;
  z-index: 0;
  box-shadow: 0px 0px 10px 0px black inset;
}

.main_services_section::before {
  animation: border-transform-default 10s linear infinite alternate forwards;
  border: solid 4px rgb(243 151 45);
}

@keyframes border-transform-default {
  0%,
  100% {
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    top: 5%;
    right: -3%;
  }
  14% {
    border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
    top: 10%;
    right: 3%;
  }
  28% {
    border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
    top: 19%;
    right: 10%;
  }
  42% {
    border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
    top: 25%;
    right: 15%;
  }
  56% {
    border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
    top: 40%;
    right: 0%;
  }
  70% {
    border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
    top: 25%;
    right: 15%;
  }
  84% {
    border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
    top: 19%;
    right: 10%;
  }
}

.main_services_section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  /* background: color-mix(in srgb, var(--accent-color), transparent 88%); */
  border-radius: 50%;
  bottom: 10%;
  left: 5%;
  filter: blur(8px);
  animation: float 4s ease-in-out infinite reverse;
  z-index: 0;
  box-shadow: 0px 0px 10px 0px black inset;
}
.main_services_section::after {
  animation: border-transform-default-two 10s linear infinite alternate forwards;
  border: solid 4px rgb(243 151 45);
}

@keyframes border-transform-default-two {
  0%,
  100% {
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    bottom: 5%;
    left: -3%;
  }
  14% {
    border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
    bottom: 10%;
    left: 3%;
  }
  28% {
    border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
    bottom: 19%;
    left: 10%;
  }
  42% {
    border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
    bottom: 25%;
    left: 15%;
  }
  56% {
    border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
    bottom: 40%;
    left: 0%;
  }
  70% {
    border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
    bottom: 25%;
    left: 15%;
  }
  84% {
    border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
    bottom: 19%;
    left: 10%;
  }
}

.main_gallery_section .inner_gallery_img{
    padding: 10px;
    box-shadow: 0px 0px 5px 0px black inset;
    margin-top: 10px;
    border-radius: 10px;
}
.main_gallery_section .inner_gallery_img a img{
    border-radius: 10px;
}



.whatsapp_contact{
  position: fixed;
  /* display: none; */
  left: 45px;
  bottom: 10%;
      width: 258px;
  border-radius: 50% 50% 0 0;
  z-index: 99;
  /* background-color: white; */
}
.whatsapp_contact{
  box-shadow: none;
}
.whatsapp_contact:hover{
  box-shadow: none;
}
.whatsapp_contact .content_section{
width: 500px;
padding:15px 10px;
border-radius: 10px;
animation: whatsapp 3s infinite;
 box-shadow: 0px 0px 5px 0px black inset;
}
.whatsapp_contact .content_section .span_color{
  color: #e20b87!important;
}

@keyframes whatsapp {
  0%{
      transform: scale(0.7);
  }
  50% {
      transform: scale(0.9);
  }
  100% {
      transform: scale(0.7);
  }
}
.footer_img_logo{
    border-radius: 100px;
    width: 70%;
}