:root {
  --theme-color1: #a31477;
  --theme-color2: #f8d53b;
  --theme-color3: #6c007f;
  --theme-color4: #ef229a;
}
body {
  font-family: "Poppins", sans-serif;
  color: #303030;
}
@font-face {
  font-family: "poppins";
  src: url("../font/poppins/Poppins-Regular.ttf"),
    url("../font/poppins/Poppins-Regular.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "AdLib";
  src: url("../font/adlib/AdLib.woff2") format("woff2"),
    url("../font/adlib/AdLib.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.7;
  font-family: "Poppins", sans-serif;
}
/* h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat" !important;
} */

.elephant-font {
  font-family: "AdLib";
}

a,
a:hover {
  color: #fff;
  text-decoration: none !important;
}
.sec-pd {
  padding: 60px 0 60px 0;
}
.inner-pd {
  padding: 170px 0 50px 0;
}
.bann-pd {
  padding: 165px 0 165px 0;
}
.bann-hd {
  font-size: 6rem;
  color: #fff;
}
.sec-hd {
  font-size: 55px;
  font-weight: 700;
  text-transform: capitalize;
}
.sub-heading {
  font-weight: 700;
  font-size: 32px;
  text-transform: capitalize;
}
.main-heading {
  font-size: 4.5rem;
  color: #fff;
  letter-spacing: 2.5px;
  line-height: 85px;
  font-weight: 700;
}
.font-20 {
  font-size: 20px;
}
.font-25 {
  font-size: 24px;
}
.font-30 {
  font-size: 30px;
}
.font-35 {
  font-size: 35px;
}
.font-45 {
  font-size: 45px;
}
.font-60 {
  font-size: 60px;
}
.font-65 {
  font-size: 65px;
}
.fw-600 {
  font-weight: 600;
}
.fw-400 {
  font-weight: 400;
}
.color {
  color: var(--theme-color1);
}
.color-yellow {
  color: var(--theme-color2);
}
.theme-btn1 {
  display: inline-block;
  background-color: var(--theme-color3);
  color: #fff;
  font-size: 19px;
  padding: 10px 30px;
  border-radius: 5px;
  font-weight: 500;
}
.theme-btn2 {
  display: inline-block;
  background-color: var(--theme-color2);
  color: #000;
  font-size: 17px;
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 5px;
}

.hvr-effect-2 {
  position: relative;
  overflow: hidden;
  z-index: 0;
  display: inline-block;
  background-color: var(--theme-color2);
  color: #000;
  font-size: 17px;
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 4px;
  transition: transform 1s cubic-bezier(0.2, 0, 0.1, 1), box-shadow 0.5s ease,
    color 0.5s ease, background 1s ease-in-out;
}

.hvr-effect-2::before,
.hvr-effect-2::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;

  right: -50%;
  left: -50%;
  height: 0;
  padding-bottom: 200%;
  border-radius: 40%;

  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.2, 0, 0.1, 1), opacity 0.4s ease-in-out;
}

.hvr-effect-2::before {
  background: linear-gradient(
    25deg,
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0)
  );
  transform: translate3d(-10%, 110%, 0) rotate(330deg);
}

.hvr-effect-2::after {
  background: linear-gradient(
    70deg,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0)
  );
  transform: translate3d(10%, 110%, 0) rotate(0deg);
}

.hvr-effect-2:hover {
  background-color: var(--theme-color1) !important; 
  color: #fff;
      transform: translateY(-3px) scale(1.01);
  box-shadow: 0 0 25px rgba(111, 66, 255, 0.6);
}

.hvr-effect-2:hover::before,
.hvr-effect-2:hover::after {
  opacity: 1;
}

.hvr-effect-2:hover::before {
  transform: translate3d(-10%, -20%, 0) rotate(100deg);
}

.hvr-effect-2:hover::after {
  transform: translate3d(10%, -20%, 0) rotate(180deg);
}

.theme-btn3 {
  display: inline-block;
  background-color: var(--theme-color1);
  color: #fff;
  font-size: 19px;
  text-align: center;
  font-weight: 600;
  border: 1px solid #fff;
  padding: 10px 30px;
  border-radius: 5px;
}

.phone-img {
  background-color: var(--theme-color2);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 45px;
  width: 45px;
  border-radius: 100%;
  padding: 10px;
  transition: all 0.3s ease;
}
.call-us:hover .phone-img {
  background-color: #b20c2b;
}
.call-us span {
  font-size: 20px !important;
}
.call-us span.color-yellow {
  font-size: 17px !important;
  font-weight: 500;
}
.call-us:hover .phone-img img {
  filter: brightness(0) invert(1);
}
.call-us .text-white.d-inline-block.w-100 {
  transition: all 0.2s ease-in;
}
.call-us:hover .text-white.d-inline-block.w-100 {
  color: #aa0076 !important;
  margin-left: 2px;
}
.w-80 {
  width: 80% !important;
}
/* ==================================header================================== */
.header-above {
  background-color: #1b1c1d;
  border-bottom: 1px solid #ffffff2b;
}

.head-right ul li i {
  height: 45px;
  width: 45px;
  background-color: #ffffff2b;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  justify-content: center;
  transition: all 0.5s ease-in-out;
}

.head-right ul li i:hover {
  animation-name: animation-pop;
  animation-duration: 0.3s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  background-color: var(--theme-color2);
  color: #000;
}

@keyframes animation-pop {
  50% {
    transform: scale(1.2);
  }
}

.head-contact ul li {
  font-size: 15px;
}
.head-contact ul li a {
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 16px;
}
.head-contact ul li:hover a {
  color: #aa0076 !important;
}
.head-contact ul li .color-yellow {
  transition: all 0.4s ease;
}
.head-contact ul li:hover .color-yellow {
  color: #fff !important;
}

.light-pink {
  color: var(--theme-color4);
}

/* ==================================header================================== */
/* ==================================NavBar================================== */
.navbar-light .navbar-nav .nav-link {
  color: #121212 !important;
  font-weight: 600;
  transition: all 0.5s ease-in-out;
  position: relative;
  padding: 10px 0 !important;
  /* border-bottom: 2px solid transparent; */
}
.navbar-light .navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  background-color: #b20c2b;
  left: 0;
  bottom: 0;
  transition: all 0.4s ease-in-out;
  transform-origin: right;
  transform: scaleX(0);
}
.navbar-nav {
    gap: 35px;
}
.navbar-light .navbar-nav .nav-link:hover {
  border-color: #aa0076;
}
.navbar-light .navbar-nav .nav-link:hover::before {
  width: 100%;
  transform: scaleX(1);
  transform-origin: left;
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show > .nav-link {
  color: red;
}

/* ==================================NavBar================================== */
/* ==================================h-Banner================================== */
.h-banner {
  background-color: #350025;
  position: relative;
  overflow: hidden;
}
.h-banner::before {
  content: "";
  position: absolute;
  height: 40%;
  width: 100%;
  top: 0;
  left: 0;
  background: url(../img/banner-overlay.png) no-repeat center center/cover;
  z-index: 555;
}
.bann-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
}

.float-anim {
  transition: all 2s ease-in-out;
  animation-name: top-bottom;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 6.5s;
}
.bann-slider img {
  height: 350px;
}
.slide-box {
  width: 33%;
}
.logo-img img {
  height: 78px;
}
.bann-content {
  position: relative;
  z-index: 9999;
}
/* ==================================h-Banner================================== */
/* ==================================Counter-Section================================== */
.counter-sec {
  background-color: #f5e8f1;
}
.count-text h6 {
  font-weight: 400;
}
/* ==================================Counter-Section================================== */
/* ==================================Service-Section================================== */
.service-img {
  overflow: hidden;
}
.service-img img {
  height: 570px;
  transition: all 0.6s ease-in-out;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
.service-title {
  padding: 15px 15px;
  background-color: #350025;
  color: #fff;
}
.service-box {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  width: 96% !important;
}
.service-box:hover .service-title a {
  color: var(--theme-color2);
}
.service-title a {
  color: #fff;
  transition: all 0.4s ease-in;
}
.service-title a:hover {
  color: var(--theme-color2);
}
.service-title {
  position: absolute;
  width: 100%;
  transition: all 0.4s ease-in-out;
  left: 0;
  bottom: -65px;
}
.service-box:hover .service-title {
  bottom: 0;
}
.service-box:hover .service-img img {
  transform: scale(1.04);
  rotate: -1deg;
}
/* ==================================Service-Section================================== */
/* ==================================Portfolio-Sec================================== */
.portfolio-sec {
  background-image: url(../img/port-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.portfolio-sec .tab-content {
  display: block;
  opacity: 1;
}

/* Slider ko ulta karna */
.s2_slider2 {
  direction: ltr;
}

.portfolio-sec .slick-slide div {
  text-align: center;
}

.portfolio-sec .nav-tabs .nav-link {
  color: #ffff;
  border: none;
  border-bottom: 2px solid transparent !important;
  font-weight: 600;
  font-size: 19px;
  padding: 2px 5px !important;
}

.portfolio-sec .nav-tabs .nav-item.show .nav-link,
.portfolio-sec .nav-tabs .nav-link.active,
.portfolio-sec .nav-tabs .nav-link:hover {
  background-color: transparent;
  border-bottom: 2px solid #f8d53b !important;
  color: #f8d53b;
}
.portfolio-sec .main-slider a {
  width: 96% !important;
}

.underline-btn {
  border-bottom: 2px solid #fff;
  padding: 2px 0;
  font-size: 19px;
  color: #fff;
  font-weight: 600;
  transition: all 0.4s ease;
}

.underline-btn:hover {
  color: var(--theme-color2);
}

.portfolio-sec .s2_slider2 {
  transform: scaleX(-1);
}
.portfolio-sec .s2_slider2 .slide-item {
  transform: scaleX(-1); /* flip back each slide so text stays normal */
}

.gallery-item {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.gallery-item img {
  transition: transform 0.5s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.1); /* zoom hover effect */
}

.gallery-item .overlay {
  position: absolute;
  inset: 0; /* top:0, left:0, width:100%, height:100% */
  background: rgb(0 0 0 / 37%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
}

.gallery-item .overlay i {
  font-size: 35px;
  color: #fff;
  transform: scale(0);
  transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover .overlay {
  opacity: 1;
  transform: scale(1);
}

.gallery-item:hover .overlay i {
  transform: scale(1);
}
.portfolio-sec .nav-tabs {
  gap: 20px;
}
/* ==================================Portfolio-Sec================================== */

/* ==================================Pricing-Section================================== */
.pricing-tabs .nav-link {
  border: none !important;
  color: #2d2d2d;
  font-size: 18px;
  font-weight: 600;
  padding: 1px 0px !important;
  border-bottom: 1px solid transparent !important;
}
.pricing-tabs .nav-link.active,
.pricing-tabs .nav-link:hover {
  color: #aa0076 !important;
  border-color: #444444 !important;
}
.pricing-title {
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 1.5px;
  transition: all 0.4s ease;
  font-family: "Elephant";

  color: #fff;
}
.sale-price {
  font-size: 55px;
  font-weight: 600;
  transition: all 0.4s ease;
  color: #fff;
}
.delete-price {
  line-height: 22px;
  transition: all 0.4s ease;
  color: #fff;
}
.delete-price del {
  font-size: 20px;
}
.pricing-box {
  border: 5px solid #aa0076;
  width: 100%;
  margin: auto;
  transition: all 0.7s ease;
  border-radius: 10px;
}
.pricing-head {
  position: relative;
  border-bottom-left-radius: 100%;
  border-bottom-right-radius: 100%;
  background-color: #aa0076;
  overflow: hidden;
  padding: 20px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  z-index: 555;
}
.pricing-head::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #fff;
  border-bottom-left-radius: 100%;
  border-bottom-right-radius: 100%;
  top: -200px;
  transition: all 0.4s ease;
  z-index: -5;
  left: 0;
}
.pricing-box:hover .pricing-head::before {
  top: 0;
}
.pricing-box:hover .pricing-title,
.pricing-box:hover .sale-price,
.pricing-box:hover .delete-price {
  color: #000;
}
.pricing-box:hover {
  background-color: #aa0076;
}
.pricing-box:hover .pricing-content ul li {
  color: #fff;
}
.pricing-box:hover .pricing-content ul li::before {
}
.pricing-box:hover .price-view-btn {
  color: #fff !important;
  border-color: #fff !important;
}
.pricing-box:hover .theme-btn1 {
  background-color: var(--theme-color2) !important;
  color: #000 !important;
}
.pricing-box .theme-btn1 {
  background-color: #000 ;
  color: #fff !important;
  transition: all 0.8s ease-out;
  font-weight: 500 !important;
}
/* .pricing-box .theme-btn1:hover {
  color: #000 !important;
  border-color: var(--theme-color2) !important;
} */

.pricing-box .theme-btn1:hover img {
  filter: brightness(100) !important;
}
.pricing-box .theme-btn1 > img {
  filter: brightness(100);
  transition: all 0.4s ease-in-out;
}
.pricing-box:hover .theme-btn1 > img , .pricing-box .theme-btn1:hover  img {
  filter: brightness(0) !important;
}
.pricing-content {
  padding: 25px 10px 9px 40px;
}
.pricing-content ul {
  overflow-y: scroll;
  height: 330px;
}
.pricing-content ul li {
  position: relative;
  margin: 4px;
  padding-left: 23px;
  transition: all 0.3s ease-in-out;
}
.pricing-content ul li::before {
  content: "\f058";
  position: absolute;
  font-family: fontawesome;
  height: 10px;
  width: 10px;
  left: 0;
  top: 3px;
  font-size: 13px;
}
.pricing-box .btn-container .theme-btn1 .hvr_circle {
  background-color: #000;
}
.portfolio-sec .nav-tabs {
  gap: 20px;
}

/* width */
.pricing-content ul::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.pricing-content ul::-webkit-scrollbar-track {
  background: #c5c5c5;
}

/* Handle */
.pricing-content ul::-webkit-scrollbar-thumb {
  background: #f1f1f1;
}

/* Handle on hover */
.pricing-content ul::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.black-btn {
  background-color: #000;
  padding: 10px 20px;
  color: #fff;
  transition: all 0.6s ease-in-out;
}
.price-view-btn {
  border-color: #767676;
  padding: 1px 0px !important;
  font-weight: 500 !important;
}
.para-color {
  color: #646464 !important;
}
.bottom-btn img {
  filter: brightness(0);
}
.bottom-btn a {
  transition: all 0.4s ease-in;
  color: #000;
}
.bottom-btn a:hover {
  color: #fff;
}
.bottom-btn a:hover img,
.pricing-box:hover .bottom-btn a img {
  filter: brightness(0) invert(1);
}
.pricing-box:hover .bottom-btn a {
  color: #fff;
}
/* ==================================Pricing-Section================================== */
/* ==================================Tabs-Section================================== */
.tab-sec {
  background: url(../img/tab-sec-bg.png) no-repeat center center/cover;
}
.tab-sec .nav-tabs .nav-link {
  border: none;
  background: url(../img/polygen.png) no-repeat center center/contain;
  padding: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tab-sec .nav-tabs .nav-link img {
  height: 100px;
  width: 100px;
}
.tab-sec .nav-tabs {
  border: none;
}
.tab-sec .nav-tabs .nav-item.show .nav-link,
.tab-sec .nav-tabs .nav-link.active {
  background-color: transparent;
  border: none;
}
.tab-sec .tab-pane {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.2s ease-in, transform 0.2s ease-in;
}

.tab-sec .tab-pane.active.show {
  opacity: 1;
  transform: translateY(0px);
}
.tab-sec .nav-tabs {
  position: relative;
  z-index: 55;
}
.tab-sec .nav-tabs::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 90%;
  border-radius: 20px;
  background-color: var(--theme-color2);
  top: 0;
  z-index: -5;
  left: 50px;
}
.best-content {
  margin-top: 40px;
}
/* ==================================Tabs-Section================================== */
/* ==================================Contact-Section================================== */
.contact-left .connect-icon {
  background: var(--theme-color1);
  border-radius: 100%;
}
.contact-left .connect-detail a:hover {
  color: var(--theme-color1) !important;
}
.sec-form {
  position: relative;
  background: url(../img/form-bg.png) no-repeat;
  background-position: center;
  background-size: 100% 100%;
  padding: 140px 30px;
}
.sec-form .form-control {
  background-color: #000000;
  color: #fff !important;
  margin: 0 0 25px 0;
  padding: 10px 10px;
  box-shadow: none !important;
  border-color: var(--theme-color4);
}
.sec-form .form-control::placeholder {
  color: #fff;
}
.sec-form .form-wrap {
  width: 50%;
  margin: 10px 0 10px 80px;
}
.offer-text {
  font-size: 110px;
  color: #8dbf2b;
  z-index: -10;
  position: relative;
}
.off-img {
  position: relative;
  z-index: -5;
}
.off-img img {
  position: absolute;
  right: -35px;
  top: 0px;
  z-index: 55;
  animation: floatIcon 1.6s ease-in-out infinite;
}
@keyframes floatIcon {
  0% {
    transform: translateY(-10px) scale(1.15) rotate(4deg);
  }
  50% {
    transform: translateY(-20px) scale(1.1) rotate(-4deg);
  }
  100% {
    transform: translateY(-10px) scale(1.15) rotate(4deg);
  }
}
.offer-img {
  position: absolute;
  left: 20px;
  top: 55px;
}
/* ==================================Contact-Section================================== */
/* ==================================FAQ-Section================================== */
.faq-sec {
  background: url(../img/faq-bg.png) no-repeat center center/cover;
}
.masg-box {
  background-color: #0000007a;
  padding: 25px 30px;
  border-radius: 15px;
}

.faq-sec .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 18px 10px;
  font-size: 1rem;
  color: #fff;
  text-align: left;
  background-color: #000000a8;
  border: 1px solid transparent;
  border-radius: 5px;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
    border-radius 0.15s ease;
  font-family: "Poppins", sans-serif;
}
.faq-sec .accordion-body {
  padding: 1rem 10px;
  color: #fff;
}

.faq-sec .accordion-button:not(.collapsed) {
  color: #ffffff !important;
  background-color: #000000db !important;
  box-shadow: inset 0 -1px 0 transparent !important;
}

.faq-sec .accordion-button:focus {
  z-index: 3;
  border-color: transparent !important;
  outline: 0;
  box-shadow: none !important;
}

.faq-sec .accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
  filter: brightness(0) saturate(100%) invert(97%) sepia(87%) saturate(20%)
    hue-rotate(213deg) brightness(104%) contrast(102%) !important;
  /* PLUS ICON */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23212529' viewBox='0 0 16 16'%3e%3cpath d='M8 1v14M1 8h14' stroke='%23212529' stroke-width='2'/%3e%3c/svg%3e") !important;
}

.faq-sec .accordion-button:not(.collapsed)::after {
  /* MINUS ICON (jab open hoga) */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%230c63e4' viewBox='0 0 16 16'%3e%3cpath d='M1 8h14' stroke='%230c63e4' stroke-width='2'/%3e%3c/svg%3e") !important;
  filter: brightness(0) saturate(100%) invert(97%) sepia(87%) saturate(20%)
    hue-rotate(213deg) brightness(104%) contrast(102%) !important;
}

.faq-sec .accordion-item {
  background-color: transparent !important;
  border: 0px solid rgba(0, 0, 0, 0.125);
  margin-bottom: 25px;
}
/* ==================================FAQ-Section================================== */
/* ========================ModalCSS====================== */

.modal-dialog {
  max-width: 600px;
  margin: 14.75rem auto;
}
.modal-header .btn-close {
  margin-left: auto !important;
}
.modal-header {
  border: none !important;
}
.modal-body input {
  width: 100%;
  padding: 10px;
}
.modal-backdrop {
  width: 100%;
  height: 100%;
}
.modal-content {
  background-color: #000f1d;
  padding: 20px 0;
}
.modal-title {
  color: #ffff00;
}
.modal-title > img {
  height: 85px;
  transition: all 0.5s ease-in-out;
  animation-name: transf;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 1s;
}
@keyframes transf {
  0% {
    transform: scale(1.05);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
.modal-content label {
  color: #ffff00;
}
.modal-footer .theme-btn1 {
  width: 100%;
  border: unset;
  font-size: 16px;
  padding: 10px 20px;
  font-weight: 500;
}
.modal-footer {
  padding-top: 0px !important;
}
/* ===========================ModalCSS==================== */

/* =============================ScrollTop============================ */
/* Brush Styles */
.brush-scroll {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 85px;
  height: 200px;
  cursor: pointer;
  z-index: 10000;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brush-scroll:hover {
  transform: translateY(-10px) scale(1.05);
}

.scroll-text {
  position: fixed;
  right: 35px;
  bottom: 190px;
  color: #2c3e50;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.7);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  z-index: 10001;
  font-size: 14px;
  opacity: 0.9;
  letter-spacing: 1px;
  font-family: "Brush Script MT", cursive;
}

.progress-text {
  position: fixed;
  right: 70px;
  bottom: 160px;
  color: #2c3e50;
  font-weight: bold;
  font-size: 16px;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.7);
  z-index: 10001;
  background: rgba(255, 255, 255, 0.7);
  padding: 5px 10px;
  border-radius: 20px;
}

.paint-drip {
  position: fixed;
  right: 70px;
  bottom: 54px;
  width: 20px;
  height: 10px;
  background: linear-gradient(to bottom, #ff5f6d, #ffc371);
  border-radius: 50%;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.brush-scroll:hover ~ .paint-drip {
  opacity: 1;
  animation: drip 1.2s infinite;
}

@keyframes drip {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateY(50px) scale(0.8);
    opacity: 0;
  }
}

/* =============================ScrollTop============================ */

/* =============================Footer============================ */

footer {
  background-image: url(../img/footer-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  padding: 120px 0 12px 0;
  overflow: hidden;
}
.footer-heading h2 {
  font-size: 90px;
  letter-spacing: 2.1px;
}
.footer-heading {
  position: relative;
  margin-bottom: 80px;
}
.footer-heading .label-hd {
  background-color: #dbb437;
  color: #fff;
  padding: 5px 15px;
  border-radius: 5px;
  position: absolute;
  bottom: 0px;
  font-weight: 500;
  font-size: 17px;
  right: 480px;
  rotate: -6deg;
}
.theme-white-btn {
  background-color: #fff;
  color: #b20c2b;
  padding: 13px 20px;
  border-radius: 7px;
  font-size: 19px;
  font-weight: 500;
  transition: all 0.5s ease;
  display: inline-block;
}
.theme-white-btn:hover {
  background-color: var(--theme-color2);
  color: #000;
}
.theme-white-btn > img {
  transition: all 0.5s ease;
}
.theme-white-btn:hover > img {
  filter: brightness(0);
}
.foot-box p {
  color: #ffff;
}

.foot-box ul li {
  font-size: 17px;
  font-weight: 500;
}

.foot-box ul li span i {
  color: var(--theme-color2);
  font-size: 13px;
}
button.theme-white-btn {
  font-size: 16px;
}
.foot-list {
  gap: 50px;
}

.footer-search input {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background-color: #35424f;
  border: none;
  color: #fff;
  padding: 10px 15px;
}

.footer-search input:focus {
  background-color: #35424f;
  box-shadow: none;
  color: #fff;
}

.footer-search i {
  background-color: #35424f;
  padding: 11px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  margin-left: -2px;
}

.foot-list ul li a {
  transition: all 0.3s ease-in-out;
}

.foot-list ul li a:hover {
  color: var(--theme-color2) !important;
}

.foot-list ul li:hover i {
  color: #fff;
}

.foot-line {
  height: 2px;
  width: 40%;
  margin: 20px 0;
  background-color: #ffffff2b;
}

.foot-box .social-icon {
  display: inline-flex;
  gap: 10px;
  margin-top: 20px;
}

.foot-box .social-icon a i {
  background-color: #1b1c1d;
  height: 35px;
  width: 35px;
}

.foot-box .social-icon a i:hover {
  background-color: var(--theme-color2);
  color: #000;
}
.footer-form .form-control {
  background-color: #333333;
  border: none;
  color: #fff;
  padding: 10px 15px;
  font-size: 17px;
  font-weight: 500;
}
.footer-form .form-control::placeholder {
  font-size: 15px;
  color: #ccc;
}
.footer-form .form-control:focus-visible {
  background-color: #333333;
  box-shadow: none;
  color: #fff;
}
.connect-icon {
  background: url(../img/message-icon.png) no-repeat center center/contain;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
}
.connect-detail a:hover {
  color: var(--theme-color2) !important;
}
.color-red {
  color: #b20c2b;
}
/* =====================================Footer===================================== */
/* contact-us */
.contact-map iframe {
  width: 100%;
}

/* ===============================login===================== */
.login-form-sec {
  max-width: 550px;
  padding: 30px;
  margin: auto;
  background-color: var(--theme-color2);
}
.forget-form {
  background-color: var(--theme-color2);
  padding: 30px;
}
.login-form-sec .theme-btn1:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.login-form ul input {
  border: 1px solid var(--theme-color2);
  padding: 10px;
  font-size: 17px;
  font-weight: 500;
}
.login-form ul input:focus-visible {
  outline: none;
}
.register {
  font-size: 17px;
  font-weight: 500;
  border-bottom: 2px solid var(--theme-color2);
  padding-bottom: 5px;
}
.forget-form label {
  font-weight: 600;
  font-size: 18px;
}
.forget-form input {
  width: 50%;
  padding: 10px;
  border: 2px solid #000;
  margin: 10px 0 25px 0;
}
.register-heading h2 {
  font-size: 50px;
  font-weight: 500;
}

/* ==============Testimonial-sec=============== */
.testimonial-slider .slick-dots li button:before {
  font-size: 50px;
  color: var(--theme-color1);
  opacity: 0.5;
  transition: all 0.4s ease-in-out;
}
.testimonial-slider .slick-dots li button:before {
  font-size: 50px;
  color: var(--theme-color3);
  opacity: 0.5;
  transition: all 0.4s ease-in-out;
}
.testimonial-slider .slick-dots li.slick-active button:before {
  color: var(--theme-color1);
  opacity: 1;
}
/* ==============Testimonial-sec=============== */
/* ==============CTA-sec=============== */
.cta-sec {
  background: url(../img/cta-bg.png) no-repeat center center/cover;
  position: relative;
  z-index: 55;
}
.shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -5;
}
.shape-2 {
  position: absolute;
  top: 30%;
  left: 200px;
}
.shape-3 {
  position: absolute;
  right: 0;
  top: 0;
}
.shape-4 {
  position: absolute;
  right: 0;
  bottom: 0;
}
.shape-5 {
  position: absolute;
  top: 32%;
  left: 35%;
}
/* ==============CTA-sec=============== */
/* ==============Button-CSS=============== */
/* Real Water Waves Button */
.real-water-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  font-size: 17px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(204, 252, 29, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.real-water-btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 20px 40px rgba(222, 203, 245, 0.5),
    inset 0 1px 0 rgba(218, 97, 255, 0.6);
  color: #0a192f;
  background-color: #e6cbffc4;
}

.real-water-btn:active {
  transform: translateY(-4px) scale(1.02);
  transition: all 0.1s ease;
}

/* Water Container */
.water-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  z-index: -1;
}

/* Real Water Waves */
.water-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 45%;
  animation: waterFlow 8s linear infinite;
  transform-origin: center center;
  opacity: 0;
  transition: opacity 0.5s ease;
  filter: blur(2px);
}

.real-water-btn:hover .water-wave {
  opacity: 0.9;
}

.water-wave:nth-child(1) {
  animation-duration: 6s;
  animation-delay: 0s;
  background: rgba(255, 255, 255, 0.9);
  bottom: -20%;
  left: -50%;
}

.water-wave:nth-child(2) {
  animation-duration: 9s;
  animation-delay: 1s;
  background: rgba(255, 255, 255, 0.7);
  bottom: -30%;
  left: -60%;
}

.water-wave:nth-child(3) {
  animation-duration: 12s;
  animation-delay: 2s;
  background: rgba(255, 255, 255, 0.6);
  bottom: -40%;
  left: -70%;
}

@keyframes waterFlow {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(-25%, -10%) rotate(90deg) scale(1.1);
  }
  50% {
    transform: translate(-50%, -5%) rotate(180deg) scale(1.2);
  }
  75% {
    transform: translate(-25%, -15%) rotate(270deg) scale(1.1);
  }
  100% {
    transform: translate(0, 0) rotate(360deg) scale(1);
  }
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.btn-icon {
  font-size: 1.6rem;
  transition: all 0.5s ease;
  color: #0a192f;
}

.real-water-btn:hover .btn-icon {
  transform: rotate(360deg) scale(1.2);
  animation: iconFloat 2s ease-in-out infinite;
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(10deg);
  }
}
/* ===============Button_CSS============== */


.anim-1s { animation-duration: 1s !important; }
.anim-1-5s { animation-duration: 1.5s !important; }
.anim-2s { animation-duration: 2s !important; }
.anim-3s { animation-duration: 3s !important; }
.anim-4s { animation-duration: 4s !important; }


