/* ===== Fonts ===== */

@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&family=Geist:wght@100..900&family=Imperial+Script&family=Inter:wght@100..900&family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
  font-family: 'Aladin';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/Aladin-Regular.0106fad7.ttf') format('truetype');
}
@font-face {
  font-family: 'PoppinsRegular';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/Poppins-Regular.4b4ebe20.ttf') format('truetype');
}
@font-face {
  font-family: 'PoppinsMedium';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/Poppins-Medium.a52d0bf0.ttf') format('truetype');
}
@font-face {
  font-family: 'PoppinsBold';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/Poppins-Bold.8001a01b.ttf') format('truetype');
}
@font-face {
  font-family: 'PoppinsLight';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/Poppins-Light.8b20023e.ttf') format('truetype');
}

/* ===== Variables ===== */
:root {
  --primary-teal: #46A0A0;
  --primary-yellow: #F8AF23;
  --primary-yellow-light: #F9D692;
  --bg-dark: #081420;
  --card-teal: #510B0B;
  --card-teal-dark: #824900;
  --card-teal-darker: #be8600;
  --gradient-gold: radial-gradient(circle at center, rgb(246, 241, 211) 0%, #fbb034 100%);
  --font-aladin: 'Geist', cursive;
  --font-poppins: 'PoppinsRegular', sans-serif;
}

/* ===== Base ===== */
body { font-family: var(--font-poppins); overflow-x: hidden; }
.Fontalladin, .font-aladin { font-family: var(--font-aladin) !important; }
.fontpoppins { font-family: var(--font-poppins); }
.fontsize-18px { font-size: 18px; }
.fontsize-25px { font-size: 1.302vw; }
.fontsize-40px { font-size: 2vw; }
.fontsize-60px {font-size: clamp(1.5rem, 3.1vw, 3.5rem);line-height: 1;font-weight: 700;}
.gradient-text {background: #f6921e;-webkit-background-clip: text;background-clip: text;-webkit-text-fill-color: transparent;}
.gradient-radical-gray-60px { background: linear-gradient(#f7deb8 10%, #fab747 90%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ===== Container ===== */
.container-1520 { max-width: 76vw; margin-left: auto; margin-right: auto; }
@media (max-width: 992px) { .container-1520 { max-width: 95%; } }

/* ===== Loader (hidden when ready) ===== */
.loader-container { position: fixed; inset: 0; z-index: 9999; background: rgba(255,255,255,0.9); display: flex; align-items: center; justify-content: center; }
.loader-container.hidden { display: none; }

/* ===== Legal disclaimer (aligned with main site strip; clears floated capsule nav) ===== */
.pp-disclaimer-bar--lp {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1090;
  padding: 0.45rem clamp(12px, 3vw, 22px);
  box-sizing: border-box;
  background: linear-gradient(90deg, rgba(8, 26, 32, 0.97) 0%, rgba(12, 48, 52, 0.98) 50%, rgba(8, 26, 32, 0.97) 100%);
  border-bottom: 1px solid rgba(195, 167, 83, 0.38);
}
.pp-disclaimer-bar--lp .pp-disclaimer-bar__text {
  margin: 0 auto;
  max-width: 1100px;
  padding: 0;
  font-family: Inter, var(--font-poppins), sans-serif;
  font-size: clamp(10px, 2.2vw, 11px);
  line-height: 1.55;
  letter-spacing: 0.018em;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}

.pp-footer-disclaimer__text--lp {
  font-family: Inter, var(--font-poppins), sans-serif;
  font-size: 11px;
  line-height: 1.65;
  letter-spacing: 0.015em;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  margin: 0 auto 0.25rem;
  max-width: 960px;
}

/* ===== Header ===== */
.site-header {
  position: absolute;
  top: clamp(74px, 5.5rem + 1.5vw, 92px);
  left: 0;
  right: 0;
  z-index: 1030;
  padding: 1rem 0;
  /* background: #00746b; */
  border-radius: 50px;
  max-width: 77vw;
  margin: 0 auto;
  padding: 10px 0;
}
.text-warning {
  --bs-text-opacity: 1;
  color: rgb(255 255 255) !important;
}


.site-header .navbar { padding: 0; }
.site-header .navbar-brand img { filter: brightness(1) invert(1) hue-rotate(190deg); }
.site-header .nav-link {
  color: #000;
  font-family: var(--font-poppins);
  font-weight: 500;
  padding: 0.5rem 0.75rem;
}
.site-header .nav-link:hover,
.site-header .nav-link.active { color: var(--primary-teal); }
.site-header .nav-link.active::after {
  content: '';
  display: block;
  width: 2rem;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-yellow), var(--primary-yellow-light));
  border-radius: 2px;
  margin: 0.25rem auto 0;
}

/* ===== Buttons ===== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 10px 20px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  font-family: Geist;
  font-weight: 500;
  font-size: 18px;
  width: fit-content;
  line-height: 31.68px;
  letter-spacing: -1px;
  text-align: center;
  vertical-align: middle;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(180deg, #f6921e 0%, #cb8f00 100%);
  min-width: 140px;
}
.btn-cta .icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, #ffffff 0%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 21px;
  color: #000000;
}
.btn-cta:hover { opacity: 0.95; transform: translateY(-1px); color: #000; }
.btn-cta-outline {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.btn-cta-outline .icon-wrap {
  background: linear-gradient(180deg, #f6921e 0%, #cb8f00 100%);
}
.btn-cta-outline.dark { color: #000; border-color: #000; }
.btn-cta-outline.dark .icon-wrap { background: linear-gradient(180deg, #f6921e 0%, #cb8f00 100%); }

/* ===== Hero / Banner ===== */
.banner_sec {
  width: 86%;
}
.banner_wrap {
    position: relative;
    padding: 60px 0px;
}

.hero-banner {
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: calc(9rem + 42px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero-banner h1 {
  font-family: Geist !important;
  font-weight: 700;
  font-size: 59.5px;
  line-height: 1;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #fff;
}
.hero-banner h1 span {
  background: linear-gradient(180deg, #f6921e 0%, #cb8f00 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-form-card {
  background: #f6921e;
  color: #fff;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  width: 70%;
  margin: 0 0 0 auto;
}
.hero-form-card .form-check-label {
  cursor: pointer;
  padding: 0.75rem 1rem;
  background: var(--card-teal-darker);
  border-radius: 0.5rem;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  width: 100%;
}
.hero-form-card .form-check-input:checked + .form-check-label,
.hero-form-card .form-check-label:hover { border-color: #f9d36a; }
.hero-form-card .progress { height: 0.75rem; background: var(--card-teal-dark); }
.hero-form-card .progress-bar {
  background: #cb8f00;
}
.step_btn {
  background: #cb8f00;
  color: #fff;
  font-family: Geist;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
}
.trus_wrap {
    display: flex;
    gap: 20px;
    margin: 40px 0 0;
}

.trus_wrap img {
    width: 130px;
    object-fit: contain;
}

/* ===== Sections ===== */
.section-pad {padding: 9vh 0;z-index: 1;}

.bg-hero-pattern {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.publish-dream-section {
  background: url('../images/cta_bg.jpg') no-repeat center;
  background-size: 100%;
  padding: 4rem 0;
  position: relative;
  isolation: isolate;
}
.publish-dream-section::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0px;
  z-index: -1;
  width: 360px;
  height: 530px;
  background: url('../images/cta_before.png') no-repeat left bottom;
  background-size: 100%;
}
.publish-dream-section::after{
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 360px;
  height: 530px;
  background: url('../images/cta_after.png') no-repeat left bottom;
  background-size: 100%;
}
.publish-dream-section h2 { color: #fff; }
.publish-dream-section h2 span.gold {
}
.dream-form .form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.7);
  border-radius: 0;
  color: #fff;
}
.dream-form .form-control::placeholder { color: rgba(255,255,255,0.6); }
.dream-form label { color: #fff; }
.process_slider_wrap {
    width: 90%;
    margin-left: auto;
}
.proc_card{
  width: 525px;
  margin: 0 20px 0px 0px;
}
.pro_c_img {background: url('../images/serv1bg.png') no-repeat top left;height: 381px;display: flex;justify-content: flex-end;align-items: flex-end;gap: 50px;margin-bottom: 30px;}


.pro_c_img a {
  background: linear-gradient(180deg, #f6921e 0%, #cb8f00 100%);
  width: 60px;
  height: 60px;
  text-align: center;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bg_21 {
 background: url('../images/bg_21.jpg') no-repeat center;
 background-size: 100% 100%;
}
.cta {
  background: url('../images/cta_bg.jpg') no-repeat center;
  background-size: 100% 100%;
  padding: 50px 0px 0;
  position: relative;
}
.cta img {
    position: absolute;
    bottom: 0px;
    right: 0;
}
/* ===== Publications exhibited ===== */
.publ-exhibited {
  background: var(--bg-dark);
  padding: 2rem 0;
  color: #fff;
}
.publ-exhibited h2 { font-size: 1rem; margin: 0; }
.publ-exhibited .imagecontain img { max-height: 35px; object-fit: contain; }

/* ===== Service cards ===== */
.service-card {
  background: #ebebeb;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  padding-top: 4rem;
  position: relative;
  min-height: 280px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}
.service-card:hover { transform: translateY(-4px); }
.service-card .card-icon {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 130px;
  z-index: 1;
}
.service-card h3 { font-family: var(--font-aladin); text-align: center; }
.proc_sec{
  background: url('../images/proc_bg.png') no-repeat  bottom;
  background-size: 100%;
  overflow: hidden;
}
/* ===== Five step process ===== */
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.5rem 0;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}
.step-item .step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-aladin);
  font-size: 1.25rem;
  background: white;
  border: 2px solid #000;
  color: #000;
}
.step-item.active .step-num {
  background: linear-gradient(180deg, #6EC6CA, #3B8D99);
  color: #fff;
  border: none;
  transform: scale(1.1);
}
.step-item .step-progress { height: 4px; background: #000; border-radius: 2px; margin-top: 0.5rem; }
.step-item .step-progress .fill { height: 100%; background: linear-gradient(90deg, #fbb034, #f8af23); border-radius: 2px; transition: width 0.3s; }
.step_Sec .row{
  position: relative;
  isolation: isolate;
}
.step_Sec .row::after{
  width: 100%;
  height: 5px;
  border-radius: 10px;
  content: '';
  position: absolute;
  top: 80px;
  left: 0;
  background: linear-gradient(180deg, #f6921e 0%, #cb8f00 100%);
  z-index: -1;
}
#portfolio{
  background: url('../images/portfolio_bg.jpg') no-repeat bottom center;
  background-size: 100%;
}
.pro_heading.text-center {
    margin: 0  0 180px;
}
.genre_sec{
  background: url('../images/gen_bg.jpg') no-repeat center center;
  background-size: 100% 100%;
}
.pri_card h3 {
    font-family: Inter;
    font-weight: 700;
    font-size: 21px;
    line-height: 32.76px;
    letter-spacing: 0px;
    text-align: center;
}
/* ===== Genre tabs ===== */
.genre-tabs .nav-link {
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  font-family: Geist;
  font-weight: 700;
  font-size: 25px;
  line-height: 37.5px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
}
.genre-tabs .nav-link.active {
  background: linear-gradient(180deg, #f6921e 0%, #cb8f00 100%);
  color: #000;
  box-shadow: 0 2px 8px #3d3834;
  border-radius: 10px;
}
.genre-tabs .nav-link:hover {
  color: #000;
}
/* ===== Testimonials ===== */
.testimonial-card {
  background: #f8f9fa;
  border-radius: 1rem;
  padding: 1.5rem;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s;
}
.testimonial-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.testimonial-card .stars { color: #fbb034; }
.testimonial-card h3 { font-family: var(--font-aladin); color: #333; }

/* ===== Footer ===== */
.site-footer {
  background: #262626;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding-top: 2rem;
}
.site-footer .footer-top {padding: 0.5rem 0;}
.footer-top img {
  filter: brightness(1) invert(1) hue-rotate(190deg);
}
.site-footer h3 {
  background: radial-gradient(circle at right, hsl(50, 80%, 64%) 0%, rgb(222, 180, 113) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-aladin);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.site-footer .footer-links a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.site-footer .footer-links a:hover {
  color: #f6921e;
}
.form-check-input:checked {
  background-color: #f6921e;
  border-color: #ffcd94;
}
.site-footer .footer-bottom-bar {
  background: url('../images/hero.jpg');
  padding: 0.5rem 0;
}
.site-footer .social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.25rem;
  transition: background 0.2s, color 0.2s;
}
.site-footer .social-link:hover { background: #fbb034; color: #000; }

/* ===== Fixed phone button ===== */
.fixed-phone-btn {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 1020;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, #228f7e 0%, #4ab9a8 100%);
  color: #fdff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  text-decoration: none;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== Book slider (publications) ===== */
.book-slide { padding: 0 0.5rem; }
.book-slide img { border-radius: 0.5rem; object-fit: cover; width: 100%; max-height: 320px; object-position: center; }
.carousel-control-prev, .carousel-control-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(180deg, #6EC6CA, #3B8D99) !important;
  color: #fff;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
}
.carousel-control-prev { left: -25px; }
.carousel-control-next { right: -25px; }

/* ===== Decorative images ===== */
.deco-butterfly {
  position: absolute;
  width: 30%;
  max-width: 300px;
  opacity: 0.15;
  pointer-events: none;
}
.bird-img-owl { position: absolute; bottom: 0; left: 0; right: 0; z-index: 5; }
.bird-img-owl img { max-height: 50vh; object-fit: contain; }

/* ===== Phone input (keep existing) ===== */
.PhoneInput { display: flex; align-items: center; }
.PhoneInputInput { flex: 1; min-width: 0; border: none; background: transparent; color: #fff; outline: none; }
.phonecontact { border-bottom: 1px solid rgba(255,255,255,0.5); }

/* ===== Mobile ===== */
@media (max-width: 991px) {
  .site-header { max-width: 100%; border-radius: 0; top: clamp(96px, 14vw + 56px, 126px); }
  .container-1520 {max-width: 100%;padding: 0 1rem;}
  .hero-banner { padding-top: calc(6rem + 52px); }
  .fontsize-60px { font-size: 1.75rem; }
  .btn-cta { min-width: auto; font-size: 0.9rem; }
  .d-md-none-mobile { display: none !important; }
}
@media (min-width: 992px) {
  .d-lg-show { display: block !important; }
}
.gen_content h2 span,
.gen_content h2 {
    font-family: Geist;
    font-weight: 700;
    font-size: 67.2px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    background: linear-gradient(90deg, #FFFFFF 0%, #F0B100 100%);
    background-clip: text;
    color: transparent;
}
.gen_img img {
  height: 100%;
  border-radius: 20px;
}
@media (max-width: 1560px) {
  .banner_sec {
    width: 100%;
}
.gen_img img {
  height: auto;
}
.hero-banner h1 {
  font-size: 50px;
}

}
.modal-body input[type="submit"] {
  width: 100%;
  padding: 20px;
  background: #fff;
  border: 2px solid #ffffff96;
  color: #000;
  margin: 0 0 30px;
  border-radius: 16px;
}
.pri_card img {
  max-width: 170px;
}
@media (max-width: 1440px) {
  .modal-body input {
    width: 100%;
    padding: 10px !important;
    background: transparent;
    border: 2px solid #ffffff96;
    color: #fff;
    margin: 0 0 10px !important;
    border-radius: 10px !important;
}
  .banner_sec {
    width: 80%;
}
.btn-cta {
  padding: 5px 10px;
  font-size: 14px;
}
.btn-cta .icon-wrap {
  width: 2rem;
  height: 2rem;
  font-size: 18px;
}

.fontsize-18px {
  font-size: 16px;
}
.hero-banner h1 {
  font-family: Geist !important;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #fff;
}
.container-1520 {
  max-width: 85vw;
}
.site-header {
  max-width: 85vw;
}
.hero-form-card {
    width: 80%;
}
.publish-dream-section::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 290px;
  height: 530px;
  background: url(../images/cta_before.png) no-repeat left bottom;
  background-size: 100%;
}
.publish-dream-section::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0px;
    z-index: -1;
    width: 290px;
    height: 530px;
    background: url('../images/cta_after.png') no-repeat left bottom;
    background-size: 100%;
}
.banner_wrap::after {
  width: 29% !important;
  left: -12px !important;
}
.gen_img img {
    border-radius: 20px;
}
.hero-banner {
    padding-top: calc(5rem + 48px);
}
.genre-tabs .nav-link {
  font-size: 18px;
}
}
@media (max-width: 768px) {
  .publish-dream-section::before,
  .publish-dream-section::after{
    display: none;
  }
  .trus_wrap img {
    width: 118px;
    object-fit: contain;
}
.banner_sec {
    width: 100%;
    text-align: center;
}
.process_slider_wrap {
    width: 100%;
}
.bg_21 {
    background: url('../images/bg_21.png') no-repeat center;
    background-size: cover;
}
.hero-banner h1 {
    font-size: 40px;
}
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 7px 7px;
}
.hero-form-card {
    width: 100%;
    margin: 0 0 30px;
}
.gen_img {
    margin: 30px 0 0;
}
.genre-tabs {
    justify-content: center;
    border-bottom: 1px solid #fff;
    flex-wrap: wrap !important;
}
.genre-tabs .nav-link {
    padding: 0px 10px;
    font-size: 16px;
}
.gen_content {
    text-align: center;
}
.step_Sec .row::after{
  width: 4px;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.pri_card {
    backdrop-filter: blur(2px);
    background: #f8f8f8;
    padding: 10px;
    margin: 30px 0 0;
    border-radius: 20px;
}
.cta {
    background: url('../images/cta_bg.jpg') no-repeat center;
    background-size: cover;
}
.cta img {
    position: relative;
    bottom: 0px;
}
.pro_heading.text-center {
    margin: 0  0 40px;
}
.banner_sec {
    width: 100%;
    text-align: center;
    margin: 50px 0 0;
}
button.navbar-toggler {
    filter: invert(1) brightness(1);
}
.publish-dream-section {
    background: url('../images/cta_bg.jpg') no-repeat center;
    background-size: cover;
}
.proc_card {
    width: 100%;
    margin: 0 20px 0px 0px;
}
.pro_c_img img {
    width: 60%;
}
ul.proc_slider.slick-initialized.slick-slider {
    padding: 0;
}

.pro_c_img {
    background: url('../images/serv1bg.png') no-repeat top left;
    background-size: 100% 100%;
    height: 301px;
}
.proc_card {
    width: 380px;
    margin: 0 20px 0px 0px;
}
.pro_c_img a img {
    width: 10px;
}

.pro_c_img a {
    width: 50px;
    height: 50px;
}
.gen_content h2 span, .gen_content h2 {
    font-size: 47.2px;
}
.gen_img img {
    height: 200px;
    border-radius: 20px;
}
}

@media (max-width: 575px) {
  .d-flex.gap-2.mt-4.flex-wrap {
    justify-content: center;
}
.trus_wrap {
  justify-content: center;
}
.publ-exhibited .imagecontain img {
  width: 100%;
  max-width: 90px;
}
.fontsize-60px {
  font-size: 1.75rem;
  margin-bottom: 12px !important;
}
.section-pad {
  padding: 4vh 0;
}
.fontsize-40px {
  font-size: 5vw;
}
}


/* ===== Slick / carousel overrides ===== */
.carousel-indicators [data-bs-target] {
  width: 24px;
  height: 6px;
  border-radius: 6px;
  background: rgba(255,255,255,0.4);
  border: none;
}
.carousel-indicators .active {
  background: #fbb034 !important;
  width: 48px;
  box-shadow: 0 2px 8px rgba(251,176,52,0.3);
}
.genre-tabs {
    justify-content: center;
    border-bottom: 1px solid #fff;
}
.gen_content {
    height: 100%;
    align-content: center;
}
.genre_sec h2 span {
  background: #f6921e;
  background-clip: text;
  color: transparent;
}

.modal-body {
  text-align: center;
}

.modal-body input {
  width: 100%;
  padding: 20px;
  background: transparent;
  border: 2px solid #ffffff96;
  color: #fff;
  margin: 0 0 30px;
  border-radius: 16px;
}

.modal-body input::placeholder {
  color: #fff;
  opacity: 1;
}

.modal-body textarea::placeholder {
  color: #fff;
  opacity: 1;
}

.modal-body textarea {
  width: 100%;
  background: transparent;
  border: 2px solid #ffffff96;
  margin: 0 0 20px;
  border-radius: 16px;
  padding: 15px;
}
.modal-body p {
  color: #fff;
}
.modal-content {
  background: linear-gradient(180deg, #f6921e 0%, #cb8f00 100%);
}
.notability-review-widget .tp-widget-wrapper .wrapper-left {
    display: none !important;
}
.banner_wrap::after {
  bottom: 0px;
  content: '';
  position: absolute;
  width: 27%;
  height: 100%;
  background: url(../images/banner_after.png) no-repeat bottom center;
  background-size: contain;
  left: 115px;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}
section.notability-review-widget {
    padding: 50px 0px;
}
button.btn-close {
    filter: invert(1);
}

section.notability-widget-section {
  padding: 80px 0;
}
.review-title strong {
  font-size: 15px !important ;
  margin: 10px 0 !important;
  display: block !important;
}
.review-card {
  min-width: 570px !important;
  max-width: 570px !important;
}
.badges {
    width: 240px !important;
}
.badges span#tp-widget-logo img {
    width: 190px !important;
    object-fit: contain !important;
    filter: invert(1) !important;
}

.notability-widget-section .pro_heading.text-center {
  margin: 0 0 30px;
}


.checkstyle label {
  font-size: 12px;
  margin: 0 0 0 5px;
}
.checkstyle {
  margin: 5px 0;
}