@import url("https://fonts.googleapis.com/css2?family=Andika:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css");
@import url("bootstrap.min.css");
@import url("slick.css");
@import url("slick-theme.css");
@import url("animate.min.css");
@import url("gallery.css");
@import url("aos.css");

/*-- font style --*/
/*-- media query --*/
* {
  outline: none;
}

/* Global Styles */
body {
  background: linear-gradient(to bottom, #8B0000, #228B22, #FFFFF0); /* Deep Red, Emerald Green, Ivory */
  font-family: 'Arial', sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Header Section */
header {
  background-color: #8B0000; /* Deep Red */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

header a {
  color: #FFFFF0; /* Ivory */
  font-weight: bold;
  text-decoration: none;
}

header a:hover {
  color: #228B22; /* Emerald Green */
}

/* Hero Section */
.hero {
  position: relative;
  background: url('assets/images/slider/hero-video-placeholder.jpg') no-repeat center center;
  background-size: cover;
  color: #FFFFF0; /* Ivory Text */
  padding: 100px 20px;
}

.hero h1 {
  font-size: 3rem;
  color: #FFFFF0; /* Ivory */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero p {
  color: #FFFFF0; /* Ivory */
  font-size: 1.5rem;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
  opacity: 0.8;
}

/* Countdown Section */
.count-down-area {
  background: #228B22; /* Emerald Green */
  padding: 50px 0;
  color: #FFFFF0; /* Ivory */
  text-align: center;
}

.count-down-area h2 {
  font-size: 2.5rem;
  color: #FFFFF0; /* Ivory */
}

.count-down-wrapper {
  background: rgba(255, 255, 255, 0.1); /* Transparent Ivory */
  border: 2px solid #FFFFF0; /* Ivory Border */
  border-radius: 10px;
  padding: 20px;
}

/* Our Story Section */
#our-story {
  background: #FFFFF0; /* Ivory */
  color: #8B0000; /* Deep Red */
  padding: 60px 20px;
}

#our-story h4 {
  font-size: 2.5rem;
  color: #8B0000; /* Deep Red */
}

#our-story ul {
  list-style: none;
  padding: 0;
}

#our-story ul li {
  font-size: 1.2rem;
  color: #228B22; /* Emerald Green */
  margin-bottom: 10px;
}

/* Events Section */
#wedding-services {
  background: #8B0000; /* Deep Red */
  color: #FFFFF0; /* Ivory */
  padding: 60px 20px;
}

#wedding-services h2 {
  font-size: 2.5rem;
  color: #FFFFF0; /* Ivory */
}

#wedding-services .card {
  background: #FFFFF0; /* Ivory */
  color: #333;
  border: 1px solid #8B0000; /* Deep Red Border */
  transition: transform 0.3s ease;
}

#wedding-services .card:hover {
  transform: translateY(-10px);
}

/* Gallery Section */
.gallery-sec {
  background: #228B22; /* Emerald Green */
  color: #FFFFF0; /* Ivory */
  padding: 60px 20px;
}

.gallery-sec h2 {
  color: #FFFFF0; /* Ivory */
  font-size: 2.5rem;
}

/* RSVP Section */
.rsvp-sec {
  background: #FFFFF0; /* Ivory */
  color: #8B0000; /* Deep Red */
  padding: 60px 20px;
}

.rsvp-sec h4 {
  font-size: 2.5rem;
  color: #228B22; /* Emerald Green */
}

.rsvp-sec form input,
.rsvp-sec form textarea {
  border: 2px solid #8B0000; /* Deep Red */
  border-radius: 5px;
  padding: 10px;
  width: 100%;
  margin-bottom: 15px;
}

/* Footer Section */
footer {
  background: #8B0000; /* Deep Red */
  color: #FFFFF0; /* Ivory */
  padding: 40px 20px;
}

footer a {
  color: #FFFFF0; /* Ivory */
  text-decoration: none;
}

footer a:hover {
  color: #228B22; /* Emerald Green */
}


/* Section Background */
#wedding-services {
  background: linear-gradient(to bottom, #8B0000, #228B22, #FFFFF0); /* Deep Red, Emerald Green, Ivory */
  color: #FFFFF0; /* Ivory Text */
  padding: 60px 20px;
  border-top: 5px solid #228B22; /* Emerald Green Divider */
  border-bottom: 5px solid #8B0000; /* Deep Red Divider */
}

/* Section Heading */
#wedding-services .row.text-center h2 {
  color: #FFFFF0; /* Ivory */
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

#wedding-services .row.text-center p {
  color: rgba(255, 255, 255, 0.8); /* Subtle Ivory for description */
  font-size: 1.2rem;
}

/* Event Card Container */
#wedding-services .card {
  background: #FFFFF0; /* Ivory */
  color: #333; /* Dark Text */
  border: 2px solid #8B0000; /* Deep Red Border */
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#wedding-services .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Card Icons */
#wedding-services .icon {
  background: #8B0000; /* Deep Red */
  color: #FFFFF0; /* Ivory */
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 15px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#wedding-services .icon i {
  font-size: 2rem;
}

/* Card Headings */
#wedding-services .card h5 {
  color: #8B0000; /* Deep Red */
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Card Text */
#wedding-services .card p {
  color: #333; /* Dark Text */
  font-size: 1rem;
}

#wedding-services .card p strong {
  color: #228B22; /* Emerald Green */
}

/* Responsive Design */
@media (max-width: 768px) {
  #wedding-services {
      padding: 40px 10px;
  }

  #wedding-services .card {
      margin-bottom: 20px;
  }

  #wedding-services .icon {
      width: 50px;
      height: 50px;
  }

  #wedding-services .card h5 {
      font-size: 1.2rem;
  }

  #wedding-services .card p {
      font-size: 0.9rem;
  }
}


html,
body,
ul,
ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

a {
  color: #F94D1C;
}

a:hover,
a:active,
a:focus {
  transition: all ease-in-out 0.3s;
  color: #104548;
}

:focus-visible {
  outline: none;
}

button:focus:not(:focus-visible) {
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
}

a,
a:hover {
  text-decoration: none;
}

a {
  transition: all 0.3s ease 0s;
}

.custum-input {
  background-color: #e1e1e1;
  border-radius: 1.5rem;
  border: 0;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

::-webkit-input-placeholder {
  color: #104548 !important;
}

:focus::-webkit-input-placeholder {
  opacity: 0.5;
  color: #F94D1C;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  color: #ffffff;
  background-color: #104548;
  border-color: transparent;
  opacity: 0.5;
}

.dropdown-toggle:hover,
.dropdown-toggle:first-child:active {
  background-color: #104548;
}

.dropdown-toggle.show {
  background-color: #104548;
}

.dropdown-menu {
  padding: 0;
}

.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active,
.dropdown-menu .dropdown-item:hover {
  background-color: #fc9b7f;
  color: #F94D1C;
}

.form-check-input {
  border: 2px solid #F94D1C;
}

.form-check-input:checked {
  background-color: #F94D1C;
  border-color: #F94D1C;
}

html {
  font-size: 1rem;
}

body {
  font-family: "Andika", serif;
}

.font-small {
  font-size: 0.875rem;
}

.font-extra-small {
  font-size: 0.75rem;
}

/*-- background color css --*/
.theme-bg-primary {
  background-color: #F94D1C;
}

.theme-bg-secondary {
  background-color: #104548;
}

.theme-bg-accent-one {
  background-color: #000000;
}

.theme-bg-accent-two {
  background-color: #23959b;
}

.theme-bg-accent-three {
  background-color: #fc9b7f;
}

.bg-gray {
  background-color: #e1e1e1;
}

/*-- text css --*/
.theme-text-white {
  color: #ffffff;
}

.theme-text-primary {
  color: #F94D1C;
}

.theme-text-secondary {
  color: #104548;
}

.theme-text-accent-one {
  color: #000000;
}

.theme-text-accent-two {
  color: #23959b;
}

.theme-text-accent-three {
  color: #fc9b7f;
}

/*-- shadow css --*/
.theme-box-shadow {
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
}

.theme-text-shadow {
  text-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
}

/*-- custom button css*/
.custom-btn-primary {
  background-color: #F94D1C;
  color: #ffffff;
  min-width: 140px;
  min-height: 50px;
  border: 0;
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.custom-btn-secondary {
  background-color: #104548;
  color: #ffffff;
  min-width: 140px;
  min-height: 50px;
  border: 0;
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.custom-link {
  background-color: #23959b;
  color: #F94D1C;
  min-width: 120px;
  min-height: 40px;
}

.custom-link:hover {
  background-color: transparent;
  color: #104548;
  border: 2px solid #F94D1C;
}

.theme-border-radius {
  border-radius: 1.5rem;
}

.theme-border {
  border: 1px solid #F94D1C;
}

/*-- primary button effect css --*/
.primary-btn-effect {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 0;
}

.primary-btn-effect:hover {
  color: #ffffff;
}

.primary-btn-effect:hover::before {
  opacity: 1;
  width: 116%;
}

.primary-btn-effect:hover::after {
  opacity: 1;
  width: 120%;
}

.primary-btn-effect::before {
  content: "";
  width: 0%;
  height: 100%;
  display: block;
  background: #104548;
  position: absolute;
  transform: skewX(-20deg);
  opacity: 1;
  left: -10%;
  top: 0;
  z-index: -12;
  transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.primary-btn-effect::after {
  content: "";
  width: 0%;
  height: 100%;
  display: block;
  background: #F94D1C;
  position: absolute;
  transform: skewX(-20deg);
  left: -10%;
  opacity: 0;
  top: 0;
  z-index: -15;
  transition: all 0.4s cubic-bezier(0.2, 0.95, 0.57, 0.99);
  box-shadow: 2px 0px 14px rgba(0, 0, 0, 0.6);
}

/*-- secondary button css --*/
.icon-wrapper {
  box-shadow: 0 0 0px 0px rgba(16, 69, 72, 0.5);
  cursor: pointer;
  border-radius: 50%;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

/*-- image hover effect --*/
.img-effect img {
  transition: all 0.4s ease-in-out;
}

.img-effect:hover img {
  transform: scale(1.5);
}

.slick-arrow {
  background-color: rgba(255, 255, 255, 0);
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
  background-repeat: no-repeat;
  background-position: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #F94D1C;
  transition: all 0.2s ease-out;
  z-index: 1;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.slick-arrow i {
  color: #F94D1C;
}

.slick-arrow.slick-next {
  right: 20px;
}

.slick-arrow.slick-next:before {
  content: "\f285";
  font-family: "bootstrap-icons";
}

.slick-arrow.slick-prev {
  left: 20px;
}

.slick-arrow.slick-prev:before {
  content: "\f284";
  font-family: "bootstrap-icons";
}

.slick-arrow:hover {
  background-color: #F94D1C;
}

.slick-arrow:hover i {
  color: #ffffff;
}

/*-- highlight para css --*/
.para-highlight {
  position: relative;
  color: #000000;
  font-weight: 600;
}

.para-highlight::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #F94D1C;
  margin-bottom: 1px;
  margin-right: 12px;
  border-radius: 50rem;
}

.cardeffect {
  transition: all 500ms ease-in-out;
}

.cardeffect:hover {
  transform: translateY(-10px);
  cursor: pointer;
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}

.img-lt {
  filter: grayscale(100%);
  transition: 0.5s ease-in-out;
}

.img-lt:hover {
  filter: grayscale(0%);
}

.z-in-2 {
  z-index: 2;
}

.py-8 {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

.border-effect {
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.bg-scroll {
  background-attachment: scroll !important;
}

.h-400 {
  height: 400px;
}

.custom-button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.max {
  max-width: 650px;
  margin: auto;
}

.bg-theme-light {
  background-color: rgba(252, 155, 127, 0.2);
}

.min-w-auto {
  min-width: auto;
}

.smooth {
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  position: fixed;
  background-color: #ffffff;
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
  z-index: 10;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.set-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.hoverShine .shine {
  position: relative;
}

.hoverShine .shine::before {
  position: absolute;
  top: 0;
  left: -90%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}

.hoverShine .shine:hover:before {
  animation: shine 0.75s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.video-icon {
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  background-color: #104548;
  color: #104548;
  line-height: 60px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-icon i {
  color: #F94D1C;
  font-size: 1.5rem;
}

.video_model {
  animation: pulseBig infinite 4s linear;
  /* pulseBig */
}

@keyframes pulseBig {
  0% {
    box-shadow: 0 0 0 0 #ffffff;
  }

  50% {
    box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
  }
}

.product-gallery .slider-for img {
  width: 100%;
  height: auto;
}

.product-gallery .gallery-thumb {
  margin-top: 1rem;
}

.product-gallery .gallery-thumb img {
  width: 100%;
  height: auto;
  padding: 2%;
}

.page-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  /* background: #104548; */
  background: #104548;

  z-index: 9999;
  overflow: visible;
}

.page-loader .loader {
  height: 32px;
  width: 32px;
}

.page-loader .loader::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: #F94D1C;
  border-radius: 50%;
  /* animation: spin-1 2s cubic-bezier(0.77, 0, 0.175, 1) infinite; */
}

@keyframes spin-1 {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0);
    opacity: 0;
  }
}

.page-loader .loader span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 32px;
  width: 32px;
  animation: spin-2 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes spin-2 {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.page-loader .loader span::before,
.page-loader .loader span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 12px;
  width: 12px;
  background: #F94D1C;
  border-radius: 50%;
  animation: spin-3 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes spin-3 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-16px, 0, 0) scale(0.5);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.page-loader .loader span::after {
  animation: spin-4 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes spin-4 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(16px, 0, 0) scale(0.5);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (min-width: 992px) {
  .menunav {
    padding: 0;
  }

  .menunav ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
  }

  .menunav ul li {
    position: relative;
  }

  .menunav ul li:last-child a {
    padding-right: 0;
  }

  .menunav ul li:hover {
    color: #F94D1C;
  }

  .menunav ul li:hover a,
  .menunav ul li:hover:active,
  .menunav ul li:hover:focus {
    color: #F94D1C;
  }

  .menunav a,
  .menunav:focus {
    color: #000000;
    padding: 18px 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 1.1rem;
  }

  .menunav a i,
  .menunav:focus i {
    font-size: 0.75rem;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .menunav .active {
    color: #F94D1C;
  }

  .menunav .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: #ffffff;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 0 0 2.5rem 2.5rem;
    z-index: 99;
  }

  .menunav .dropdown ul li {
    min-width: 200px;
  }

  .menunav .dropdown ul li a {
    padding: 10px 20px;
    font-size: 1rem;
    text-transform: none;
    color: #000000;
  }

  .menunav .dropdown ul li a:hover {
    color: #F94D1C;
  }

  .menunav .dropdown ul li a i {
    font-size: 0.75rem;
  }

  .menunav .dropdown ul li:hover>a {
    color: #F94D1C;
  }

  .menunav .dropdown ul.active:hover {
    color: #F94D1C;
  }

  .menunav .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .menunav .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .menunav .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

@media (max-width: 992px) {
  .mobile-menu-toggle {
    color: #000000;
    font-size: 2rem;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .menunav {
    padding: 0;
    z-index: 9997;
  }

  .menunav ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #ffffff;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
  }

  .menunav a,
  .menunav:focus {
    color: #000000;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .menunav a:hover,
  .menunav a.active,
  .menunav:focus:hover,
  .menunav:focus.active {
    color: #F94D1C;
  }

  .menunav a:hover:focus,
  .menunav a.active:focus,
  .menunav:focus:hover:focus,
  .menunav:focus.active:focus {
    color: #F94D1C;
  }

  .menunav a i,
  .menunav:focus i {
    font-size: 0.75rem;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: rgba(249, 77, 28, 0.5);
  }

  .menunav a i:hover,
  .menunav:focus i:hover {
    background-color: #F94D1C;
    color: #000000;
  }

  .menunav .active i {
    background-color: #F94D1C;
    color: #000000;
  }

  .menunav .active i:focus i {
    background-color: #F94D1C;
    color: #000000;
    transform: rotate(180deg);
  }

  .menunav .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: #000000;
    transition: all 0.5s ease-in-out;
  }

  .menunav .dropdown ul ul {
    background-color: rgba(0, 0, 0, 0.1);
  }

  .menunav .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(0, 0, 0, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .smooth {
    height: 100%;
  }

  .mobile-nav-active .mobile-menu-toggle {
    color: #ffffff;
    position: absolute;
    font-size: 2rem;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .menunav {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .menunav>ul {
    display: block;
  }
}

.info-top {
  background-color: #104548;
  padding-top: 1rem;
  padding-bottom: 2rem;
}

@media screen and (max-width: 992px) {
  .info-top {
    padding-top: 0;
    padding-bottom: 0px;
  }
}

@media screen and (max-width: 767px) {
  .info-top {
    padding-top: 0;
    padding-bottom: 3px;
  }
}

.info-top .navbar-brand img {
  width: auto;
}

@media screen and (max-width: 992px) {
  .info-top .navbar-brand img {
    width: 45%;
  }
}

.info-top .navbar-brand.box {
  background: #ffffff;
  padding: 3rem 1rem;
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
  border-radius: 0 0 2.5rem 2.5rem;
}

@media screen and (max-width: 767px) {
  .info-top .navbar-brand.box {
    padding: 0.5rem 1rem 1rem 1rem;
    border-radius: 1.5rem;
  }
}

.info-top .btn {
  color: #23959b;
  text-decoration: none;
}

.info-top .btn i {
  color: #ffffff;
}

.info-top .social a,
.info-top .social .botom-link {
  color: #ffffff;
}

.info-top .social a:hover,
.info-top .social .botom-link:hover {
  color: #F94D1C;
}

.info-top-type2 {
  background-color: #000000;
}

.info-top-type2 .social ul li {
  list-style: none;
  padding-left: 1rem;
  display: inline-flex;
}

.info-top-type2 .social ul li a {
  background-color: #23959b;
  padding: 0.25rem 0.5rem;
  color: #ffffff;
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.info-top-type2 .social ul li a:hover {
  background-color: #F94D1C;
  color: #000000;
}

.header-type1 {
  background-color: #ffffff;
  position: relative;
  width: 100%;
  z-index: 1;
}

/* demo-------------------------------------------------------------------------------------- */
.header-type1 {
  position: sticky;
  top: 0;
  z-index: 9999;
  background-color: #ffffff;
  /* Change this to your header's background color */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* Optional: Adds a subtle shadow */
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  background-color: #ffffff;
  /* Match your header background color */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* Optional: subtle shadow for better visibility */
}

body {
  padding-top: 70px;
  /* Adjust this value to match the height of your header */
}

/* demo--------------------------------------------------------------------------------------------------------------------- */
.header-type1.fixed-top a,
.header-type1.fixed-top:focus {
  color: #000000;
  position: sticky;
}

.type3 {
  background: transparent;
  position: absolute;
  z-index: 10;
  width: 100%;
}

.nav-effect {
  position: relative;
}

.nav-effect::before {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 33%;
  width: 1.25rem;
  height: 6px;
  background: #F94D1C;
  transform-origin: center center;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
  border-radius: 1.5rem;
}


/* custom button css start here----------------------------------------------------------------------------------------- */

.custom_button {
  display: block;           /* Behaves like a block element */
    /* Spacing around the link */
  /* padding: 10px 20px;   */
  font-size: 16px;          /* Standard font size */
  font-weight: bold;
  color: white;             /* Text color for the button area */
  text-align: center;       /* Centers text within the button */
  text-decoration: none;    /* Removes the underline from links */
  border: none;             
  border-radius: 50px;      /* Large rounded edges for a pill shape */
  transition: all 0.3s ease-in-out;
  line-height: normal;      /* Prevents extra height spacing */
  margin: 10px auto;        /* Centers the button horizontally */
  width: auto;              /* Adapts to text content width */
  max-width: 90%;           /* Prevents overflowing on smaller screens */
}

.custom_button:hover {
  color: white;              /* Changes text color on hover */
  border-radius: 1rem;      /* Slightly alters the shape on hover */
  transform: translateY(-2px); /* Lifts upward a bit on hover */
  cursor: pointer;          /* Pointer cursor on hover */
}

/* Highlighted text inside the button */
.highlight-text {
  background: linear-gradient(90deg, #f94d1c, #fcaf4a); /* The highlighted background color */
  color: #000;               /* Text color within the highlight */
  padding: 0.5rem 1rem;      /* Spacing around the text */
  border-radius: 2.5rem;     /* Rounded edges for the highlighted area */
}
.highlight-text:hover {
  background: linear-gradient(90deg, #2364d4, #65f06e); /* The highlighted background color */
  color: #f94d1c;               /* Text color within the highlight */
  padding: 0.5rem 1rem;      /* Spacing around the text */
  border-radius: 2.5rem;     /* Rounded edges for the highlighted area */
}

/* For screens between 1026px and 1450px */
@media screen and (min-width: 1026px) and (max-width: 1450px) {
  .navbar {
      flex-wrap: wrap; /* Allows items to wrap to the next line */
      justify-content: space-between; /* Adjusts spacing between items */
  }

  .custom-button {
      margin-left: auto; /* Pushes the button to the far right */
      margin-top: 10px; /* Adds spacing if the button wraps */
      padding: 8px 16px; /* Adjusts padding to make it smaller */
      font-size: 14px; /* Adjusts font size for better fit */
      white-space: nowrap; /* Prevents the text from breaking into multiple lines */
  }

  .navbar-brand img {
      max-width: 150px; /* Shrinks the logo size to save space */
  }
}


/* Responsive styles for smaller screens */
@media screen and (max-width: 1024px) {
  .navbar {
      flex-wrap: wrap; /* Allows elements to wrap to the next line */
  }

  .custom-button {
      margin-top: 10px; /* Adds spacing if the button moves to a new line */
  }
}
/* Media Queries for Smaller Screens */
@media (max-width: 768px) {
  .custom_button {
    font-size: 1rem;         /* Adjust font size for smaller screens */
    padding: 8px 15px;       /* Adjust padding */
    border-radius: 40px;     /* Slightly sharper edges for medium screens */
  }
}

@media (max-width: 480px) {
  .custom_button {
    font-size: 0.9rem;       /* Smaller font size for very small screens */
    padding: 6px 12px;       /* Compact padding */
    border-radius: 30px;     /* Slightly sharper edges for smaller screens */
    max-width: 100%;         /* Ensures full responsiveness */
  }
}


/* custom button css end here  ------------------------------------------------------------------------------------------*/

@media screen and (max-width: 992px) {
  .nav-effect::before {
    left: 0%;
  }
}

.nav-effect:hover:before {
  transform-origin: center center;
  transform: scale(1, 1);
}

.hero {
  position: relative;
  margin-bottom: 0;
}

.hero .video-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  justify-content: center;
  align-items: center;
  display: flex;
  min-height: 100vh;
}

.hero .video-image .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero .video-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(16, 69, 72, 0.2);
  z-index: 1;
}

.hero .heroSlider {
  position: relative;
}

.hero .heroSlider .slide-img {
  width: 100%;
  height: auto;
  overflow: hidden;
}

@media screen and (max-width: 575px) {
  .hero .heroSlider .slide-img {
    height: 360px;
  }

  .hero .heroSlider .slide-img img {
    background-size: cover;
    min-height: 120%;
  }
}

.hero .heroSlider .slide-img:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(97deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

@media screen and (max-width: 575px) {
  .hero .heroSlider .slide-img:before {
    background: linear-gradient(97deg, rgba(0, 0, 0, 0.6) 100%, rgba(0, 0, 0, 0.5) 100%);
  }
}

.hero .heroSlider .slide-img img {
  max-width: 100%;
  height: auto;
  opacity: 1 !important;
  animation-duration: 3s;
  transition: all 1s ease;
}

.hero .heroSlider .slide-content {
  position: absolute;
  top: 50%;
  left: 40%;
  width: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

@media screen and (max-width: 992px) {
  .hero .heroSlider .slide-content {
    width: 90%;
    left: 50%;
  }
}

@media screen and (max-width: 575px) {
  .hero .heroSlider .slide-content {
    width: 100%;
    left: 2%;
    transform: translate(0%, -50%);
    padding-right: 1rem;
  }
}

.hero .heroSlider .slide-content .slide-content-wrap .animate__animated {
  transition: all 0.5s ease;
}

.hero .multi {
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  background-size: cover;
  padding-top: 100px;
}

.hero .stick-dots .slick-dots {
  bottom: 10px;
}

.hero .stick-dots .slick-dots li {
  height: 3px;
  width: 50px;
}

.hero .stick-dots .slick-dots li button {
  position: relative;
  background-color: #F94D1C;
  opacity: 0.5;
  width: 50px;
  height: 5px;
  padding: 0;
  border-radius: 1.5rem;
}

.hero .stick-dots .slick-dots li button:before {
  font-size: 0rem;
}

.hero .stick-dots .slick-dots li button:hover,
.hero .stick-dots .slick-dots li button:focus {
  opacity: 1;
}

@keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
  }

  to {
    transform: scale3d(1.1, 1.1, 1.1);
  }
}

.hero .zoomInImage {
  animation-name: zoomInImage;
}

.about-company .about-pic {
  position: relative;
  width: 80%;
  margin: 0 auto;
}

.about-company .about-pic .experience-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: rgba(249, 77, 28, 0.5);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 180px;
  border-radius: 0 1.5rem 0 0;
}

.about-company .about-pic .experience-box p {
  color: #ffffff;
}

.about-company .about-pic .video-box {
  position: absolute;
  top: -20px;
  left: -20px;
  background-color: #fc9b7f;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.about-company .about-pic .video-box p {
  color: #F94D1C;
}

.about-company .about-list {
  padding: 1rem 0;
}

.about-company .about-list li {
  font-size: 1rem;
  line-height: 3rem;
}

.about-company .about-list li i {
  color: #F94D1C;
  margin-right: 0.8rem;
}

.about-company .call {
  width: 2rem;
  height: 2rem;
  padding: 1.4rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.about-company .call:hover {
  background-color: #104548;
}

.core-services .card-services {
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
  text-align: center;
}

.core-services .card-services:hover .icon-wrap {
  background-color: #104548;
}

.core-services .card-services:hover .icon-wrap svg path {
  fill: #ffffff;
  transition: all ease-in-out 0.3s;
}

.core-services .icon-wrap {
  width: 10rem;
  height: 10rem;
  background-color: #F94D1C;
  border-radius: 50%;
  display: inline-block;
  overflow: hidden;
}

.core-services .icon-wrap svg path {
  fill: #ffffff;
  transition: all ease-in-out 0.3s;
}

.price-sec {
  overflow: hidden;
}

.price-sec .price-box {
  border: 1px solid #23959b;
  text-align: center;
  position: relative;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.price-sec .price-box:hover {
  background-color: #e1e1e1;
}

.price-sec .price-box .top-sec {
  margin-top: 2rem;
}

.price-sec .price-box .pricing-rate {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}

.price-sec .price-box .list ul li {
  line-height: 2.8rem;
  text-align: left;
}

.price-sec .price-box .tag {
  position: absolute;
  top: 14px;
  right: 0;
  padding: 10px 12px;
  background-color: #F94D1C;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
  width: auto;
}

.price-sec .price-box .tag:before {
  content: "";
  position: absolute;
  right: -20px;
  top: 10px;
  border-right: 20px solid #ffffff;
  border-bottom: 15px solid #F94D1C;
  border-top: 15px solid #F94D1C;
}

.free-consult {
  background-color: rgba(249, 77, 28, 0.1);
  background-image: url(../images/section/consult-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: 600px;
  background-position: center center;
  position: relative;
  align-items: center;
  justify-content: center;
  display: flex;
  padding: 6rem 0;
  background-attachment: fixed;
}

.free-consult::before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border-radius: 0 10px 10px 0;
}

.testimonials {
  position: relative;
  background: #104548;
  background: linear-gradient(97deg, #f94d1c 0%, #104548 100%);
}

.testimonials .client-con .qotes-img {
  width: auto;
  height: auto;
  display: inline-block;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 30px;
}

.testimonials .client-con .qotes-img-down {
  width: auto;
  height: auto;
  display: inline-block;
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 30px;
  transform: rotate(180deg);
}

.testimonials .client-con .avatar {
  overflow: hidden;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: #fc9b7f;
  display: flex;
  border: 2px solid #104548;
  margin: 0 auto;
}

.news {
  overflow: hidden;
}

.news .news-card {
  border: 1px dashed #23959b;
  padding: 1rem;
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.news .news-card a {
  color: #000000;
}

.news .news-card a:hover {
  color: #F94D1C;
}

.contact-sec .contact-form {
  position: relative;
}

.contact-sec .contact-form:before {
  content: "";
  display: block;
  background-image: url(../images/section/technical-support.png);
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  left: -400px;
  top: 30px;
  z-index: 0;
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  width: 412px;
  height: 580px;
}

@media screen and (max-width: 992px) {
  .contact-sec .contact-form:before {
    left: 0;
    top: -25px;
  }
}

@media screen and (max-width: 575px) {
  .contact-sec .contact-form:before {
    left: 4px;
    top: -25px;
    width: 98%;
  }
}

.contact-sec .support-list {
  counter-reset: section;
}

.contact-sec .support-list li {
  padding: 0 0 1rem 0;
}

.contact-sec .support-list li:before {
  counter-increment: section;
  content: counters(section, ".") " ";
  padding: 10px;
  margin-right: 1.5rem;
  margin-bottom: 0.5rem;
  width: 2rem;
  height: 2rem;
  line-height: 0.5rem;
  border: 1px solid #F94D1C;
  border-radius: 50%;
  color: #F94D1C;
  display: inline-block;
}

.faq {
  background-color: rgba(35, 149, 155, 0.2);
}

.faq .faq-bg {
  padding-top: 40px;
  background-image: linear-gradient(0deg, rgba(252, 155, 127, 0), rgba(255, 255, 255, 0.2));
}

.faq .accordion-item {
  border: 0;
  margin-bottom: 1.5rem;
  background-color: #F94D1C;
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border: none;
}

.faq .accordion-item .accordion-button {
  background-color: #000000;
  color: #ffffff;
  border-radius: 1.5rem !important;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  padding: 1.2rem 2rem;
  border: none;
  font-size: 1.25rem;
  font-weight: 600;
  box-shadow: none;
}

.faq .accordion-item .accordion-button i {
  font-size: 1.5rem;
}

.faq .accordion-item .accordion-button::after {
  color: #ffffff;
}

.faq .accordion-item .accordion-button::after {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  content: "";
  background-image: url(../images/icons/arrow-minus.png);
  background-repeat: no-repeat;
  background-size: 20px;
  position: absolute;
  right: 30px;
  transition: all ease 0.3s;
}

.faq .accordion-item .accordion-button.collapsed::after {
  width: 20px;
  height: 20px;
  content: "";
  background-image: url(../images/icons/arrow-plus.png);
  background-repeat: no-repeat;
  background-size: 20px;
  transform: rotate(-90deg);
  transition: all ease 0.3s;
}

.faq .accordion-item .accordion-body {
  padding: 0 20px;
}

.faq .accordion-item .accordion-body p {
  padding: 20px 0;
  color: #000000;
}

.partner {
  position: relative;
}

.partner img {
  margin: auto;
}

.subscribe .video-bg {
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: 350px;
  background-position: center center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.5rem;
  overflow: hidden;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.subscribe .video-bg::before {
  content: "";
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.subscribe .video-bg .video-icon {
  border-radius: 50%;
  background-color: #23959b;
  color: #104548;
  line-height: 60px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseBig infinite 4s linear;
  z-index: 10;
  position: absolute;
}

.subscribe .video-bg .video-icon:hover {
  color: #F94D1C;
}

.subscribe .input-group input {
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-top-right-radius: 1.5rem !important;
}

.subscribe .input-group button {
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 1.5rem !important;
}

.footer {
  background: #F94D1C;
  background: linear-gradient(0deg, #f94d1c 0%, rgba(0, 0, 0, 0.4094012605) 51%, #104548 100%);
}

.footer h1,
.footer h2,
.footer h3,
.footer p {
  color: #ffffff;
}

.footer p {
  line-height: 2.2rem;
}

.footer .footer-link li {
  line-height: 2.5rem;
}

.footer .footer-link li i {
  color: #F94D1C;
  font-size: 1.5rem;
  line-height: normal;
  vertical-align: middle;
}

.footer .footer-link li a {
  color: #000000;
  font-size: 0.875rem;
  padding: 0 0 0.5rem 0;
}

.footer .footer-link li a:hover {
  color: #F94D1C;
  letter-spacing: 0.5px;
  padding-left: 0.5rem;
}

.footer .content-box {
  text-align: left;
  cursor: pointer;
}

.footer .content-box .footer-icon {
  background-color: #F94D1C;
  width: 5rem;
  height: 5rem;
  display: inline-block;
  border-radius: 1.5rem;
  line-height: 5rem;
  text-align: center;
  transition-duration: 0.3s;
  margin-bottom: 2rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.footer .content-box .footer-icon i {
  font-size: 2.5rem;
  color: #ffffff;
}

.footer .content-box:hover .footer-icon {
  background-color: #fc9b7f;
  transform: translateY(-5px);
}

.footer .content-box:hover .footer-icon i {
  color: #104548;
}

.footer .content-box .botom-link {
  color: #ffffff;
}

.footer .content-box .botom-link:hover {
  color: #104548;
}

.footer .social a {
  color: #ffffff;
}

.footer .social a:hover {
  color: #F94D1C;
}

.footer-type2 {
  background: #000000;
}

.footer-type2 .content-box .footer-icon {
  background-color: transparent;
}

.footer-type2 .content-box:hover .footer-icon {
  background-color: transparent;
}

.footer-type2 .content-box:hover .footer-icon i {
  color: #F94D1C;
}

.footer-type3 {
  background: #104548;
}

.footer-type3 .box-logo {
  background: #ffffff;
  padding: 1rem;
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}


.scrollup {
  overflow: hidden;
  position: fixed;
  height: 4rem;
  width: 4rem;
  line-height: 4rem;
  bottom: -5rem;
  right: 3rem;
  text-align: center;
  z-index: 1;
  background-color: rgba(16, 69, 72, 0.8);
  display: block;
  color: #ffffff;
  transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
  transform: rotate(90deg);
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.scrollup i {
  font-size: 1.5rem;
  display: inline-block;
  transition: all 0.5s ease-out;
}
.scrollup i:hover, .scrollup i:focus {
  animation: toBottomFromTop 0.5s forwards;
}
.scrollup:hover, .scrollup:focus {
  color: #F94D1C;
}
.scrollup.back-top {
  bottom: 20px;
}

/* scroll up buttoin with whatsapp start here-------------------------------------- */



/* scroll up buttoin with whatsapp end here-------------------------------------- */


@keyframes toBottomFromTop {
  49% {
    transform: translateX(-20%);
  }

  50% {
    opacity: 0;
    transform: translateX(20%);
  }

  51% {
    opacity: 0;
  }

  80% {
    opacity: 1;
  }
}

.search-switch {
  display: block;
  height: 100%;
  text-align: center;
  cursor: pointer;
}

.search-model {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000000;
  z-index: 99999;
}

.search-model .search-model-form {
  padding: 0 0px;
  position: relative;
  display: flex;
  border-radius: 1.5rem;
  background: #ffffff;
}

.search-model .search-model-form input {
  font-size: 1.5rem;
  border: none;
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  width: 100%;
  padding-left: 1rem;
}

.search-model .search-model-form .btn {
  min-width: 50px;
}

.search-model .search-model-form .btn:active {
  background: #F94D1C;
}

.search-model .search-close-switch {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(249, 77, 28, 0.5);
  color: #ffffff;
  text-align: center;
  border-radius: 1.5rem;
  font-size: 28px;
  line-height: 28px;
  top: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-model .search-close-switch:hover {
  background-color: #f94d1c;
}

.breadcrumb-area {
  position: relative;
  z-index: 0;
  background-image: url(../images/breadcrumb/breadcrumb-image.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0px 0;
  display: flex;
  justify-content: start;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

@media screen and (max-width: 767px) {
  .breadcrumb-area {
    min-height: 200px;
  }
}

.breadcrumb-area::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  left: 0;
  top: 0;
  opacity: 0.5;
  z-index: -1;
}

.page-breadcrumb {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.page-breadcrumb .list li {
  display: inline-block;
  color: #23959b;
  position: relative;
  padding-right: 16px;
  padding-left: 16px;
  font-weight: 600;
}

.page-breadcrumb .list li:first-child {
  padding-left: 0px;
}

.page-breadcrumb .list li:first-child::before {
  display: none;
}

.page-breadcrumb .list li a {
  color: #ffffff;
  display: inline-block;
}

.page-breadcrumb .list li a::before {
  content: "\f56a";
  position: absolute;
  right: -20px;
  top: -5px;
  font-family: bootstrap-icons !important;
  font-size: 2rem;
  line-height: initial;
  color: #104548;
}

.page-breadcrumb .list li a:hover {
  color: #104548;
}

.box-circle {
  width: 80px;
  height: 80px;
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.event-type2 #timer {
  display: flex;
  justify-content: center;
  text-align: center;
}

.event-type2 #timer div {
  display: inline-block;
  min-width: 60px;
  font-size: 1rem;
  color: #ffffff;
  background-color: #F94D1C;
  margin-left: 0.5rem;
  border-radius: 1.5rem;
  border-top-left-radius: 0;
  padding: 0.5rem;
}

.event-type2 #timer div span {
  color: #ffffff;
  display: block;
  font-size: 0.875rem;
}

.pagination {
  display: flex;
  border: 3px solid #104548;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding: 0.5rem;
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  margin: auto;
}

.pagination li .page-link {
  background-color: transparent;
  color: #000000;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  font-size: 0.875rem;
  width: 3rem;
  height: 3rem;
  font-size: 1.5rem;
  border: none;
  border-right: 1px solid #23959b;
}

.pagination li .page-link:hover,
.pagination li .page-link.active {
  color: #F94D1C;
}

.pagination li .page-link:first-child {
  border-radius: 0;
  border-radius: 1.5rem;
}

.pagination li .page-link:last-child {
  border-radius: 0;
}

.pagination li .page-link.prev,
.pagination li .page-link.next {
  width: 90px;
  font-size: 0.875rem;
  background-color: #104548;
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  color: #ffffff;
  border-right: 0px;
}

@media screen and (max-width: 575px) {

  .pagination li .page-link.prev,
  .pagination li .page-link.next {
    width: 54px;
  }
}

.pagination li .page-link.prev:hover,
.pagination li .page-link.next:hover {
  background-color: #F94D1C;
}

.pagination li:last-child a {
  margin-right: 0px;
}

.pagination .disabled>.page-link,
.pagination .page-link.disabled {
  background-color: rgba(16, 69, 72, 0.5) !important;
}

.maintenance-area {
  position: relative;
}

.maintenance-area .bg-maintenance {
  width: 100%;
  height: 100vh;
  display: block;
  background-image: url(../images/section/maintenance-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.maintenance-area .input-group {
  border-radius: 1.5rem;
  padding: 0.5rem;
  border: 1px solid #F94D1C;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.maintenance-area .input-group .form-control {
  border-radius: 1.5rem;
  border: none;
}

.maintenance-area .input-group button {
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 1.5rem !important;
}

.topProgram .nav-pills li {
  margin: 0 0.5rem;
}

.topProgram .nav-pills li .nav-link {
  border: 1px solid #F94D1C;
  color: #000000;
  font-weight: bold;
  border-radius: 1.5rem;
  border-top-left-radius: 0;
  background-color: #ffffff;
}

.topProgram .nav-pills li .active {
  background-color: #F94D1C;
}

.topProgram .card-wrap {
  padding: 1rem;
  border: 1px solid #e1e1e1;
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.topProgram .card-wrap .con-img-wrap {
  position: relative;
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  overflow: hidden;
}

.topProgram .card-wrap .small-img {
  min-height: 120px;
  justify-content: center;
  display: flex;
  align-items: center;
}

.topProgram .card-wrap .con-wrap {
  border-radius: 1.5rem;
  border-bottom-right-radius: 0;
  background-color: #ffffff;
}

.topProgram .card-wrap .con-wrap .text {
  font-weight: 700;
}

.topProgram .card-wrap .con-wrap .text a {
  color: #104548;
}

.topProgram .card-wrap .con-wrap .text a:hover {
  color: #F94D1C;
}

.topProgram .card-wrap .con-wrap .bar {
  width: 100%;
  height: 10px;
  border-radius: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
  border: 1px solid #23959b;
  height: 16px;
  padding: 4px;
  border-radius: 1.5rem;
  background-color: #ffffff;
}

.topProgram .card-wrap .con-wrap .bar .progress {
  float: left;
  min-width: 1%;
  height: 100%;
  background: #23959b;
  border-radius: 1.5rem;
  position: relative;
  overflow: visible;
}

.topProgram .card-wrap .con-wrap .bar .progress .percent {
  position: absolute;
  font-size: 0.75rem;
  margin-bottom: 10px;
  background: #23959b;
  padding: 0 8px;
  right: 0;
  top: -32px;
  border-radius: 1.5rem;
  color: #ffffff;
}

.topProgram .card-wrap .con-wrap .bar .progress .percent:before {
  content: "\f229";
  position: absolute;
  font-family: "bootstrap-icons";
  font-size: 18px;
  color: #23959b;
  left: 10px;
  bottom: -17px;
}

.topProgram .card-wrap .con-wrap .product-price span,
.topProgram .card-wrap .con-wrap .product-price i {
  color: #000000;
}

.topProgram .card-wrap .con-wrap a {
  background: #000000;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 1.5rem;
  border-top-left-radius: 0px;
  color: #ffffff;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.topProgram .card-wrap .con-wrap a:hover {
  background: #F94D1C;
}

.coming-soon-area {
  position: relative;
  z-index: 1;
  height: 100vh;
  background-image: url(../images/section/coming-page-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}

.coming-soon-area::before {
  content: "";
  z-index: -1;
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.coming-soon-area #timer {
  color: #F94D1C;
  display: flex;
  justify-content: center;
}

.coming-soon-area #timer div {
  display: inline-block;
  min-width: 120px;
  text-align: center;
  background-color: #23959b;
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  text-transform: uppercase;
  margin-right: 1rem;
  padding: 1rem;
  font-size: 2.5em;
  font-weight: 600;
}

.coming-soon-area #timer div:last-child {
  margin-right: 0rem;
}

@media screen and (max-width: 575px) {
  .coming-soon-area #timer div {
    min-width: 60px;
    font-size: 1.5em;
  }
}

.coming-soon-area #timer div:last-child {
  border-right: none;
}

.coming-soon-area #timer div span {
  color: #ffffff;
  display: block;
  font-size: 0.35em;
  font-weight: 500;
}

.breadcrumb-no-img {
  position: relative;
  padding: 0px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 250px;
}

.breadcrumb-no-img::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(16, 69, 72, 0.3);
  left: 0;
  top: 0;
  opacity: 0.5;
  z-index: -1;
}

.blog-list-head {
  position: relative;
  font-size: 20px;
  text-transform: uppercase;
  margin: 0 0 30px 0;
  color: #F94D1C;
  font-weight: bold;
  border-bottom: 1px solid #23959b;
  padding-bottom: 1rem;
}

.blog-list-head:after {
  content: "";
  width: 20px;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
  background: #F94D1C;
}

.post-thumb img {
  width: 100px;
  height: auto;
  border-top-left-radius: 0;
}

.search-form {
  border: 1px solid #104548;
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  padding: 0.5rem;
}

.search-form input {
  font-size: 0.875rem !important;
}

.search-form input:focus {
  box-shadow: none;
}

.search-form button {
  background-color: #F94D1C;
  min-width: 50px;
  min-height: 50px;
  border-radius: 1.5rem !important;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.search-form button i {
  color: #ffffff;
}

.search-form button:hover {
  background-color: #104548;
}

.widget-categories li :first-child {
  margin-top: 0;
}

.widget-categories li .count {
  background-color: #F94D1C;
  border-radius: 50%;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  width: 24px;
  height: 24px;
  font-size: 0.8rem;
  line-height: 24px;
  text-align: center;
  color: #104548;
}

.widget-categories li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #23959b;
  padding: 10px 15px;
  padding-left: 15px;
  position: relative;
  transition: all 0.2s;
}

.widget-categories li a:hover {
  background: rgba(249, 77, 28, 0.04);
  color: #104548;
}

.widget-categories li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.widget-categories li a::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 100%;
  background: #104548;
  border-radius: 2px 0px 0px 2px;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.2s;
  transform: translateX(-5px);
}

.tags-blog {
  list-style-type: none;
}

.tags-blog li {
  padding: 1rem 0.5rem;
  margin: 0 0;
  display: inline-block;
}

.tags-blog li a {
  color: #23959b;
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  background: #e1e1e1;
  padding: 0.5rem;
}

.tags-blog li a:hover {
  background: #104548;
  color: #ffffff;
}

.blog-grid .blog-item {
  height: 580px;
  position: relative;
}

@media screen and (max-width: 992px) {
  .blog-grid .blog-item {
    height: 250px;
  }
}

.blog-grid .blog-item:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.blog-grid .blog-item.small-item {
  height: 285px;
}

.blog-grid .blog-item.small-item .blog-item-text {
  padding: 0 30px;
}

.blog-grid .blog-item.small-item .blog-item-text p {
  margin-bottom: 5px;
}

.blog-grid .blog-item .blog-item-text {
  position: absolute;
  left: 0;
  bottom: 25px;
  text-align: center;
  width: 100%;
  padding: 0 105px;
  z-index: 1;
}

@media screen and (max-width: 575px) {
  .blog-grid .blog-item .blog-item-text {
    padding: 0 25px;
  }
}

.blog-grid .blog-item .blog-item-text p {
  color: #ffffff;
  margin-bottom: 12px;
}

.blog-grid .blog-item .blog-item-text p span {
  color: #F94D1C;
  margin-right: 5px;
}

.blog-grid .blog-item .blog-item-text h4 a {
  color: #ffffff;
  line-height: 34px;
}

.blog-grid .blog-item .blog-item-text h4 a:hover {
  color: #104548;
}

.post-wrap {
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}

.post-wrap p i {
  line-height: 2rem;
  border-right: 4px solid #F94D1C;
  height: 100%;
  display: block;
  padding: 1rem;
  background: rgba(249, 77, 28, 0.04);
  text-align: justify;
}

.post-wrap .post-desc {
  line-height: 2rem;
  text-align: justify;
}

.post-wrap .image-caption {
  color: rgba(73, 88, 76, 0.6);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 12px;
  text-align: center;
}

.blog-post-social {
  border-top: 1px solid #23959b;
}

.blog-post-social .post-tag-list {
  display: flex;
  justify-content: start;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.blog-post-social .post-tag-list li {
  font-weight: bold;
  color: #000000;
  margin: 0 8px 5px 0;
}

.blog-post-social .post-tag-list li:first-child {
  margin-right: 10px;
  border: none;
}

.blog-post-social .post-tag-list li a {
  font-size: 0.875rem;
  color: #23959b;
  font-weight: normal;
  border: 1px solid #23959b;
  padding: 0.5rem 1rem;
  display: inline-block;
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.blog-post-social .post-tag-list li a:hover {
  color: #104548;
  border-color: #F94D1C;
}

.blog-post-social .blog-icon-list {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid #23959b;
  padding: 10px 30px;
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.blog-post-social .blog-icon-list li {
  margin-left: 1.5rem;
}

.blog-post-social .blog-icon-list li a {
  display: inline-block;
  font-size: 1.5rem;
  transition: 0.4s ease;
}

.blog-post-social .blog-icon-list li a i {
  color: #104548;
  padding-right: 1rem;
}

.blog-post-social .blog-icon-list li a:hover {
  transform: scale(1.2);
}

.blog-next-post-button {
  padding: 1rem;
  background-color: #e1e1e1;
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.blog-next-post-button .post-item .post-title {
  display: block;
  color: #23959b;
}

.blog-next-post-button .post-item .wrap-post {
  display: block;
}

.blog-next-post-button .post-item .wrap-post .post-meta {
  margin-top: 0.5rem;
}

.blog-next-post-button .post-item.next-btn {
  text-align: right;
}

.blog-details-form h4 {
  color: #000000;
  font-weight: 700;
  margin-bottom: 26px;
}

.blog-details-form form input {
  height: 50px;
  width: 100%;
  background: #e1e1e1;
  font-size: 1rem;
  color: #F94D1C;
  padding-left: 20px;
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border: none;
  margin-bottom: 30px;
}

.blog-details-form form textarea {
  height: 115px;
  width: 100%;
  background: #e1e1e1;
  font-size: 1rem;
  color: #F94D1C;
  padding-left: 20px;
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  padding-top: 12px;
  resize: none;
  border: none;
  margin-bottom: 34px;
}

.blog-details-comment {
  padding-bottom: 10px;
}

.blog-details-comment h4 {
  color: #F94D1C;
  font-weight: 700;
  margin-bottom: 40px;
  border-bottom: 1px solid #23959b;
  padding-bottom: 15px;
  font-size: 2.5rem;
}

.blog-details-comment .comment-item {
  margin-bottom: 40px;
  overflow: hidden;
  background-color: transparent;
  border: 1px solid #e1e1e1;
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  padding: 1rem;
}

.blog-details-comment .comment-item.comment-item--reply {
  margin-left: 40px;
}

.blog-details-comment .comment-item-pic {
  float: left;
  margin-right: 16px;
}

.blog-details-comment .comment-item-text {
  overflow: hidden;
}

.blog-details-comment .comment-item-text span {
  font-size: 0.875rem;
  color: #23959b;
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}

.blog-details-comment .comment-item-text h5 {
  color: #F94D1C;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-details-comment .comment-item-text p {
  color: #23959b;
  font-size: 0.875rem;
  line-height: 22px;
  margin-bottom: 25px;
}

.blog-details-comment .comment-item-text a {
  display: inline-block;
  color: #ffffff;
  background: #F94D1C;
  padding: 6px 15px;
  letter-spacing: 2px;
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  transition: all, 0.3s;
  font-size: 0.75rem;
  margin-right: 1rem;
}

.blog-details-comment .comment-item-text a:hover {
  background: #104548;
}

.post-wrap-center,
.blog-post-social,
.blog-next-post-button {
  max-width: 855px;
  margin: auto;
}

.blog-video-wrap .box {
  background-position: center top;
  background-size: cover;
  min-height: 550px;
}

.blog-video-wrap .box::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.privacy-list li {
  color: #23959b;
  line-height: 2;
  list-style: disc;
  margin-left: 1.125rem;
}

.faq-cat li {
  list-style: none;
  line-height: 2.5rem;
}

.faq-cat li a {
  display: flex;
  font-size: 1.25rem;
}

.faq-cat li a i {
  padding-right: 1rem;
  font-size: 0.5rem;
}

.price-sec {
  padding: 4rem 0;
}

.price-sec .price-box {
  border: 2px solid #fc9b7f;
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  text-align: start;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.price-sec .price-box:hover {
  border-color: #104548;
}

.price-sec .price-box.box-2 {
  border-color: #F94D1C;
}

.price-sec .price-box:hover .price {
  color: #F94D1C;
}

.price-sec .price-box .pricing-rate {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}

.price-sec .price-box .pricing-rate .price {
  color: #000000;
}

.price-sec .price-box .list ul li {
  line-height: 3rem;
}

.price-sec .price-box .tag {
  position: absolute;
  top: -20px;
  right: 0;
  padding: 7px 12px;
  background-color: #F94D1C;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
}

.our-team {
  position: relative;
}

.our-team .team-card {
  cursor: pointer;
  position: relative;
  border-radius: 170px;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  overflow: hidden;
  width: auto;
  height: auto;
  margin: auto;
}

.our-team .team-card:hover .team-con {
  visibility: visible;
}

.our-team .team-card .team-con {
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease-out 0s;
  visibility: hidden;
}

.our-team .team-card .team-con p {
  color: #ffffff;
}

.our-team .team-card .team-con .team-social {
  display: flex;
}

.our-team .team-card .team-con .team-social li a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  background-color: #23959b;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  margin: 0 0.5rem;
}

.our-team .team-card .team-con .team-social li a:hover {
  background-color: #F94D1C;
  color: #ffffff;
}

.our-team .team-card img {
  transition: all 0.4s ease-out 0s;
}

.our-team .team-card:hover .team-con {
  background-color: rgba(225, 225, 225, 0.5);
}

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

.team-details .details-text {
  position: relative;
}

.team-details .details-text p {
  line-height: 30px;
}

.team-details .details-title {
  margin-bottom: 20px;
}

.team-details .details-title .title {
  font-weight: 700;
  margin-bottom: 1rem;
}

.team-details .details-title span {
  display: block;
}

.team-details .details-rating {
  text-align: left;
}

.team-details .details-rating .rating i {
  font-size: 1.5rem;
  display: inline-block;
  color: #104548;
}

.team-details .details-rating span {
  display: block;
  font-size: 1.2rem;
}

.team-details .details-widget {
  margin: 1rem 0;
}

.team-details .details-widget ul {
  margin-bottom: 20px;
}

.team-details .details-widget li {
  list-style: none;
  line-height: 2rem;
  position: relative;
  padding-left: 18px;
}

.team-details .details-widget li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  height: 6px;
  width: 6px;
  background: #F94D1C;
  border-radius: 1.5rem;
}

.team-details .details-widget li span {
  width: 115px;
  display: inline-block;
  font-weight: 700;
}

.services .service-single-img {
  border-radius: 1.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.services .service-single-img img {
  transition: all 0.3s ease-out 0s;
  width: 100%;
}

.services .services-text li {
  padding-left: 35px;
  position: relative;
  color: #23959b;
  margin-bottom: 17px;
  font-weight: 500;
}

.services .services-text li:before {
  position: absolute;
  content: "\f270";
  font-family: "bootstrap-icons";
  color: #F94D1C;
  left: 0;
  top: 0;
}

.services .services-text li:last-child {
  margin-bottom: 0;
}

.services .service-sidebar {
  background: transparent;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
}

.services .service-sidebar .title {
  margin-bottom: 1rem;
  position: relative;
}

.services .service-sidebar .list li {
  border-bottom: 1px solid #23959b;
}

.services .service-sidebar .list li:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}

.services .service-sidebar .list li a {
  display: block;
  padding: 10px 0;
  transition: all 0.5s ease-in-out;
  color: #104548;
}

.services .service-sidebar .list li a:hover,
.services .service-sidebar .list li a:active,
.services .service-sidebar .list li a.active {
  padding-left: 10px;
  color: #F94D1C;
}

.services .service-sidebar .list li a i {
  margin-right: 5px;
  color: #F94D1C;
}

.error .text {
  color: #104548;
  font-size: 15rem;
  line-height: 15rem;
  letter-spacing: 2rem;
}

@media screen and (max-width: 575px) {
  .error .text {
    font-size: 5rem;
    line-height: 5rem;
  }
}

.donate {
  display: block;
}

.donate .card-wrap {
  display: flex;
  align-items: center;
  justify-content: start;
}

@media (max-width: 992px) {
  .donate .card-wrap {
    flex-direction: column;
  }
}

.donate .card-wrap .con-img-wrap {
  width: 40%;
  min-height: 350px;
  overflow: hidden;
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

@media (max-width: 992px) {
  .donate .card-wrap .con-img-wrap {
    width: 100%;
    margin-bottom: 2rem;
  }
}

.donate .card-wrap .con-wrap {
  width: 60%;
}

@media (max-width: 992px) {
  .donate .card-wrap .con-wrap {
    width: 100%;
    margin-bottom: 2rem;
  }
}

.donate .card-wrap .con-wrap .progress {
  width: 100%;
  height: 20px;
  overflow: hidden;
  background: #23959b;
  border-radius: 1.5rem;
  margin-bottom: 1rem;
}

.donate .card-wrap .con-wrap .progress .bar {
  position: relative;
  float: left;
  min-width: 1%;
  height: 100%;
  background: #F94D1C;
}

.donate .amount-donate .input-holder {
  margin: 2em auto 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
  border: 1px solid #23959b;
  border-radius: 1.5rem;
}

.donate .amount-donate .radio-cont {
  position: relative;
  cursor: pointer;
}

.donate .amount-donate .radio-cont span {
  background: #ffffff;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: box-shadow 0.3s;
}

.donate .amount-donate .radio-cont input[type=radio] {
  display: none;
}

.donate .amount-donate .radio-cont:first-child span {
  border-radius: 1.5rem 0 0 1.5rem;
}

.donate .amount-donate input[type=text] {
  border: none;
  display: block;
  margin: 0;
  padding: 1rem;
  border-radius: 0 1.5rem 1.5rem 0;
}

.donate .amount-donate .radio-cont,
.donate .amount-donate input[type=text] {
  font-weight: 600;
  font-size: 1rem;
  width: 100%;
  text-align: center;
  border-right: 1px solid #23959b;
}

.donate .amount-donate .radio-cont input:checked~span {
  box-shadow: inset 0 0 50px 5px rgba(0, 0, 0, 0.25);
}

.pay-sec .custom-tab .nav-link {
  text-align: center;
  background: #fc9b7f;
  color: #000000 !important;
  font-size: 0.875rem;
  border-radius: 1.5rem;
  border-bottom: 1px solid #23959b;
  padding: 1.02rem 1rem;
  margin-bottom: 1rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.pay-sec .custom-tab .nav-link:last-child {
  border-bottom: 0px solid transparent;
}

.pay-sec .custom-tab .nav-link.active,
.pay-sec .custom-tab .show>.nav-link {
  text-align: center;
  background: #F94D1C;
  color: #23959b;
  font-size: 0.875rem;
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.pay-sec .custom-tab .payment-icon {
  width: 24px;
  height: 16px;
  display: inline-block;
  background: url(../images/icons/icons-sprite-payment.png) no-repeat;
  vertical-align: middle;
  margin-right: 5px;
}

.pay-sec .custom-tab .credit {
  background-position: 0 0;
}

.pay-sec .custom-tab .debit {
  background-position: -25px 0;
}

.pay-sec .custom-tab .paypal {
  background-position: -150px 0;
}

.pay-sec .form-label {
  font-size: 0.875rem;
}

.pay-sec .form-control,
.pay-sec .form-select {
  border-radius: 1.5rem;
  border-top-left-radius: 0;
}

.living-sec .living-option {
  background: #e1e1e1;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.living-sec .living-option .title {
  margin-bottom: 1rem;
  position: relative;
}

.living-sec .living-option .list li {
  border-bottom: 1px solid #23959b;
}

.living-sec .living-option .list li:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}

.living-sec .living-option .list li a {
  display: block;
  padding: 10px 0;
  transition: all 0.5s ease-in-out;
  color: #104548;
}

.living-sec .living-option .list li a:hover,
.living-sec .living-option .list li a:active,
.living-sec .living-option .list li a.active {
  padding-left: 10px;
  color: #F94D1C;
}

.living-sec .living-option .list li a i {
  margin-right: 5px;
  color: #F94D1C;
}

.living-sec .living-list li {
  padding-left: 35px;
  position: relative;
  color: #23959b;
  margin-bottom: 17px;
  font-weight: 500;
}

.living-sec .living-list li:before {
  position: absolute;
  content: "\f26b";
  font-family: "bootstrap-icons";
  color: #F94D1C;
  left: 0;
  top: 0;
}

.living-sec .living-list li:last-child {
  margin-bottom: 0;
}

.testimonials-page .review-wrap {
  padding: 1rem;
  margin-right: 1rem;
  margin-left: 1rem;
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border: 1px dashed #e1e1e1;
  min-height: 400px;
  justify-content: center;
  align-items: center;
  display: flex;
  background-color: #ffffff;
  box-shadow: 0 0 1.375rem rgba(0, 0, 0, 0.1);
}

.testimonials-page .client-pic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.testimonials-page .client-pic .avatar {
  overflow: hidden;
  width: 5rem;
  height: 5rem;
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  background: #fc9b7f;
}

.testimonials-page .con {
  position: relative;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 1rem;
}

.testimonials-page .con::before {
  content: "";
  background-image: url(../images/icons/qotes-icon.svg);
  width: 50px;
  height: 38px;
  position: absolute;
  top: -30px;
  left: 0px;
}

@media screen and (max-width: 992px) {
  .testimonials-page .con::before {
    left: 0%;
  }
}

.gallery-sec .gallery-card {
  position: relative;
  width: 100%;
}

.gallery-sec .gallery-card figure {
  position: relative;
  overflow: hidden;
  margin: 0px;
  width: 100%;
  height: auto;
  cursor: pointer;
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.gallery-sec .gallery-card figure img {
  position: relative;
  display: block;
  min-height: 100%;
  min-width: 100%;
  opacity: 0.8;
}

@media screen and (max-width: 992px) {
  .gallery-sec .gallery-card figure img {
    width: -webkit-fill-available;
  }
}

.gallery-sec .gallery-card figure .gallery-text {
  transition: transform 0.5s, opacity 0.3s;
  position: absolute;
  z-index: 99;
  bottom: 37px;
  opacity: 0;
  transform: translateX(0);
  max-width: 100%;
}

.gallery-sec .gallery-card figure .gallery-text .heading {
  color: #ffffff;
  font-size: 1.5rem;
}

.gallery-sec .gallery-card figure .gallery-text .title {
  color: #ffffff;
  font-size: 1rem;
  text-align: left;
}

.gallery-sec .gallery-card figure:hover .gallery-text {
  opacity: 1;
  transform: translateX(39px);
}

.gallery-sec .gallery-card figure .bg-overlay {
  transition: transform 0.3s;
  position: absolute;
  left: 0;
  transform: translatey(100%);
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 61.5%, rgba(0, 0, 0, 0.4) 82.25%);
}

.gallery-sec .gallery-card figure:hover .bg-overlay {
  transform: translatey(0);
}

.gallery-sec .slick-slide {
  margin-left: 1rem;
  margin-right: 1rem;
}

.filter-controls {
  margin: 30px auto;
  padding: 0;
  list-style: none;
  text-align: center;
}

.filter-controls li {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  color: #000000;
  background: #23959b;
  cursor: pointer;
  border-radius: 1.5rem;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  transition: 0.3s all;
}

.filter-controls li:hover {
  background: #F94D1C;
  color: #ffffff;
}

.filter-controls li.active {
  color: #ffffff;
  background: #F94D1C;
}

.filter-controls li:last-child {
  margin-right: 0;
}

.mfp-zoom-in {
  /* start state */
  /* animate in */
  /* animate out */
}

.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transform: scale(0.8);
}

.mfp-zoom-in.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-zoom-in.mfp-removing .mfp-with-anim {
  transform: scale(0.8);
  opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

/*# sourceMappingURL=main.css.map */


/* css adding for extra custom features */

.logo-adjust{
  .logo {
    width: 200px; /* Adjust the width as per your requirement */
    height: auto; /* Maintain the aspect ratio */
    max-width: 100%; /* Ensure responsiveness */
  }
  
}


/* Countdown Area */
.count-down-area {
  padding: 50px 0;
  background: #f8f9fa; /* Light background color */
}

.count-down-wrapper {
  background: url('assets/img/gallery/section_bg2.png') no-repeat center center/cover;
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Single Counter Styling */
.single-counter {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.single-counter:hover {
  transform: scale(1.05); /* Subtle zoom effect on hover */
}

/* Counter Number */
.single-counter .counter {
  font-size: 48px;
  font-weight: bold;
  color: #ff4d4f; /* Bright red for the numbers */
  margin-bottom: 5px;
}

/* Counter Label */
.single-counter p {
  font-size: 18px;
  font-weight: 500;
  color: #333333; /* Dark text for readability */
  text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 768px) {
  .single-counter {
      padding: 15px;
  }

  .single-counter .counter {
      font-size: 36px;
  }

  .single-counter p {
      font-size: 16px;
  }
}
.theme-bg-secondary {
  background: #f9f9f9; /* Light gray background */
  border-radius: 10px;
}

.theme-box-shadow {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.theme-text-primary {
  color: #ff4d4f; /* Red color for highlights */
}

.theme-text-white {
  color: #ffffff;
}

.theme-border-radius {
  border-radius: 10px;
}

.custum-input {
  background: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px 15px;
}


/* Marriage Gallery Image Customization */
.gallery-sec .gallery-card figure {
  height: 300px; /* Adjust height as needed */
  overflow: hidden; /* Ensures content doesn't overflow */
  border-radius: 10px; /* Adds smooth rounded edges */
}

.gallery-sec .gallery-card figure img {
  width: 100%; /* Ensures the image spans full width */
  height: 100%; /* Makes the image fill the container */
  object-fit: cover; /* Crops image to fit the container neatly */
  transition: transform 0.3s ease-in-out; /* Smooth hover effect */
}

.gallery-sec .gallery-card figure img:hover {
  transform: scale(1.1); /* Subtle zoom effect on hover */
}

/* Adjust spacing between images */
.gallery-sec .slider-item {
  margin-bottom: 20px; /* Space below each gallery card */
  padding: 0 10px; /* Add spacing between cards */
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .gallery-sec .gallery-card figure {
      height: 200px; /* Adjust height for smaller screens */
  }
}

/* Styling the Event Section */
#events {
  padding: 60px 0;
  background-color: #f9f9f9;
}

#events h4 {
  line-height: 1.4;
}

#events .card {
  transition: transform 0.3s, box-shadow 0.3s;
}

#events .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

#events .icon i {
  font-size: 2.5rem;
}

#events button {
  background-color: #ff4d4f;
  color: #fff;
  border-radius: 50px;
  font-size: 1rem;
}

#events button:hover {
  background-color: #dc3545;
  color: #fff;
}



/*************************************
  Indian Wedding Style Event Card
  Usage:
  <div class="card indian-wedding-card">
      <!-- Content -->
  </div>
**************************************/

.card.indian-wedding-card {
  background: #fff8e7; /* Light cream background */
  border: 2px solid #d4a373; /* Gold-like border color */
  border-radius: 16px;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

/* Hover effect for elevation */
.card.indian-wedding-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Decorative Icon Circle */
.card.indian-wedding-card .icon {
  width: 60px;
  height: 60px;
  border: 2px solid #d4a373;       /* Matching gold-like border */
  border-radius: 50%;
  margin: 0 auto 1rem auto;
  background: radial-gradient(circle, #f9e6d1 40%, transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icon styling (red/maroon) */
.card.indian-wedding-card .icon i {
  font-size: 1.8rem;
  color: #b23121; /* Deep red/maroon */
}

/* Title styling: cursive font, Indian-wedding color palette */
.card.indian-wedding-card h5 {
  font-family: 'Great Vibes', cursive; /* Example decorative font */
  font-size: 1.8rem;
  color: #b23121;
  margin-bottom: 10px;
  text-shadow: 1px 1px #fdf2e9; /* Subtle highlight behind text */
}

/* Paragraph styling: warm brown text */
.card.indian-wedding-card p {
  color: #4a2e19; /* Rich dark brown */
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

/* Optional: If you want a small decorative corner/graphic inside the card
   (e.g., top-right corner), you could add:
   
.card.indian-wedding-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 80px;
  height: 80px;
  background: url('path-to-some-decorative-pattern.png') no-repeat center/contain;
  opacity: 0.15;
}
*/


/* General Styling */
body {
  font-family: 'Georgia', serif; /* Classic font for elegance */
  background-color: #fdf6e3; /* Soft beige background for warmth */
}

/* Wedding Details Card Styling */
.theme-box-shadow {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
}

.theme-bg-secondary {
  background: linear-gradient(135deg, #ffd3b6, #f8b195); /* Wedding-themed gradient */
}

.theme-border-radius {
  border-radius: 15px; /* Smooth, elegant corners */
}

.theme-text-primary {
  color: #d33f49; /* Romantic deep red */
}

/* Wedding Details Text */
h5 {
  font-family: 'Dancing Script', cursive; /* Add a touch of handwritten style */
  font-size: 2rem;
  color: #d33f49;
}

ul {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
}

/* QR Code Image Styling */


p {
  color: #6b705c;
  font-style: italic;
  font-size: 0.9rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .theme-box-shadow {
      padding: 20px;
  }

  h5 {
      font-size: 1.5rem;
  }

  ul {
      font-size: 1rem;
  }

  img {
      max-width: 150px;
  }
}

/* Countdown Area */
.count-down-area {
  padding: 60px 20px;
  background: linear-gradient(to right, #f9f1f1, #ffefeb); /* Soft wedding-themed gradient */
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Elegant shadow */
}

.event_section{
  background: linear-gradient(to right, #f9f1f1, #ffefeb);
}
/* Countdown Title */
.count-down-area h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.5rem;
  color: #d33f49; /* Romantic deep red */
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); /* Subtle text shadow */
}

/* Countdown Wrapper */
.count-down-wrapper{
  background:#f9f1f1 ;
}
/* .count-down-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  background: #fdf2e9; 
  padding: 20px;
  border-radius: 25px;
  box-shadow: 0 24px 30px rgba(0, 0, 0, 0.1); 
} */

/* Single Counter Styling */
.single-counter {
  background: #fdf2e9; /* Clean white background */
  padding: 20px 15px;
  border-radius: 10px;
  box-shadow: 0 12px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.single-counter:hover {
  transform: scale(1.1); /* Gentle zoom */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Deeper shadow */
}

/* Counter Number */
.single-counter .counter {
  font-size: 48px;
  font-weight: bold;
  color: #d33f49; /* Romantic red */
  margin-bottom: 5px;
  font-family: 'Georgia', serif;
}

/* Counter Label */
.single-counter p {
  font-size: 16px;
  font-weight: 500;
  color: #4a2e19; /* Deep brown */
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .count-down-wrapper {
    flex-direction: column; /* Stack counters vertically */
    gap: 15px;
  }

  .single-counter .counter {
    font-size: 36px;
  }

  .single-counter p {
    font-size: 14px;
  }
}

/* Responsive Design for All Screen Sizes */
@media (max-width: 1200px) {
  .count-down-wrapper {
    gap: 15px; /* Reduce gap between counters */
  }

  .single-counter {
    width: 130px; /* Slightly smaller width */
  }

  .single-counter .counter {
    font-size: 42px; /* Adjust font size for counters */
  }

  .single-counter p {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .count-down-wrapper {
    gap: 15px; /* Further reduce gap for tablets */
  }

  .single-counter {
    width: 120px; /* Reduce width */
  }

  .single-counter .counter {
    font-size: 38px;
  }

  .single-counter p {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .count-down-wrapper {
    flex-direction: column; /* Stack counters vertically for smaller devices */
    gap: 10px;
  }

  .single-counter {
    width: 100%; /* Full width for each counter */
    padding: 15px;
  }

  .single-counter .counter {
    font-size: 36px;
  }

  .single-counter p {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .single-counter .counter {
    font-size: 32px; /* Further reduce size for extra small devices */
  }

  .single-counter p {
    font-size: 11px;
  }
}