/* ==============
typography CSS
================*/

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: clip;
  /* font-family: "Helvetica Neue", sans-serif !important; */
}

* {
  box-sizing: border-box;
  outline: none;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */
}

@font-face {
  font-family: "ObviouslyNarrow";
  src: url("../fonts/ObviouslyNarrow-Bold.otf");
  font-style: normal;
}
@font-face {
  font-family: "NeueMontreal";
  src: url("../fonts/NeueMontreal-Medium.otf");
  font-style: normal;
}

@font-face {
  font-family: "NeueMontreal";
  src: url("../fonts/NeueMontreal-Regular.otf");
  font-style: normal;
}

/* body {
  
} */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "ObviouslyNarrow" !important;
  font-weight: 700;
}
p {
  font-family: "NeueMontreal" !important;
  margin: 0px;
  padding: 0px;
  /* font-weight: 500 ; */
}

/* ==============
Custom Container CSS
================*/

.container-1450 {
  max-width: 1450px;
  width: 100%;
  margin: 0 auto;
  padding-left: 82px;
  padding-right: 82px;
  border-radius: 24px;
  background-color: #ffffff;
}
.container-1216 {
  max-width: 1296px;
  width: 100%;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

/* ==============
Button CSS
================*/
.btn-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.social-market-btn {
  font-family: "NeueMontreal" !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 12px 21px;
  text-decoration: none;
}

.social-market-btn.social-border {
  border: 1px solid #fe5b00;
  color: #fe5b00;
  background-color: transparent;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social-market-btn.social-border:hover {
  background-color: #fe5b00;
  color: #ffffff;
}

.social-market-btn.social-primary {
  background-color: #fe5b00;
  color: #ffffff;
  border: 1px solid #fe5b00;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social-market-btn.social-primary:hover {
  background-color: transparent;
  color: #fe5b00;
}

.footer-get-started-btn {
  /* width: 260px;
  height: 60px; */
  font-family: "NeueMontreal" !important;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.05px;
  padding: 16px 48px;
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  background: radial-gradient(
      75.35% 94.71% at 0% 16.67%,
      rgba(255, 255, 255, 0.7) 0%,
      rgba(255, 255, 255, 0) 69.79%,
      rgba(255, 255, 255, 0) 100%
    ),
    #fe5b00;
  box-shadow: -3px -4px 7px 0 rgba(255, 255, 255, 0.15) inset;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.footer-get-started-btn:hover {
  background: radial-gradient(
      75.35% 94.71% at 0% 16.67%,
      rgba(255, 255, 255, 0.8) 0%,
      rgba(255, 255, 255, 0) 69.79%,
      rgba(255, 255, 255, 0) 100%
    ),
    #ff6b10;
  box-shadow: -3px -4px 7px 0 rgba(255, 255, 255, 0.25) inset;
  color: #ffffff;
}

.footer-get-started-btn:active {
  background: radial-gradient(
      75.35% 94.71% at 0% 16.67%,
      rgba(255, 255, 255, 0.6) 0%,
      rgba(255, 255, 255, 0) 69.79%,
      rgba(255, 255, 255, 0) 100%
    ),
    #ee5000;
}

/* ==============
Preloader CSS
================*/
.preloader,
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.preloader img,
#preloader img {
  max-width: 200px;
  height: auto;
  animation: preloader-pulse 1.5s ease-in-out infinite;
}

.preloader-spinner {
  width: 60px;
  height: 60px;
  border: 5px solid rgba(254, 91, 0, 0.1);
  border-top: 5px solid #fe5b00;
  border-radius: 50%;
  animation: preloader-spin 0.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes preloader-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.95);
    opacity: 0.8;
  }
}

/* Preloader fade out with upward slide effect */
.preloader.fade-out,
#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
}

/* ==============
Back to Top CSS
================*/
.back-to-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  width: 36px;
  height: 36px;
  stroke: #350f6b;
  border: 1px solid #350f6b;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  z-index: 100;
}

.back-to-top:hover {
  stroke: #fff;
  background-color: #350f6b;
}

.back-to-top .back-top {
  line-height: 0;
  display: inline-block;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ==============
Schedule Popup CSS
================*/
.schedule-call-popup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  background: #fe5b00;
  padding: 20px;
  position: fixed;
  width: 100%;
  left: 0;
  bottom: -80px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
  z-index: 99;
}

.schedule-call-popup.show {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}

.schedule-call-popup .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  padding-top: 4px;
}

.schedule-call-popup .social-market-btn {
  background: #fff;
  color: #fe5b00;
  transition: all 0.3s;
}

.schedule-call-popup .social-market-btn:hover {
  color: #fff;
  background: #4d11a1;
}

footer.footer-wrap {
  padding-bottom: 80px;
}

@media (max-width: 1199px) {
  .schedule-call-popup .title {
    font-size: 22px;
  }

  footer.footer-wrap {
    padding-bottom: 65px;
  }
  .schedule-call-popup {
    gap: 50px;
    padding: 15px;
  }
}

@media (max-width: 991px) {
  .schedule-call-popup .title {
    font-size: 20px;
  }

  .schedule-call-popup {
    gap: 30px;
    padding: 10px 15px;
  }

  footer.footer-wrap {
    padding-bottom: 55px;
  }
}

@media (max-width: 767px) {
  .schedule-call-popup .title {
    font-size: 18px;
  }

  .schedule-call-popup {
    gap: 5px;
    padding: 8px 15px;
    flex-direction: column;
  }

  footer.footer-wrap {
    padding-bottom: 50px;
  }

  .schedule-call-popup .social-market-btn {
    padding: 5px 15px;
  }

  .footer-get-started-btn {
    padding: 10px 24px;
  }
}

/* ==============
Header CSS
================*/
.header-area {
  background-color: #ffffff;
  padding-top: 21px;
  padding-bottom: 21px;
}
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-menu-area {
  align-self: center;
}
.header-menu-area ul {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0px;
}
.header-menu-area ul li {
  list-style: none;
}
.header-menu-area ul li a {
  font-family: "NeueMontreal" !important;
  font-weight: 500;
  font-size: 16px;
  color: #131114;
  line-height: 20px;
  letter-spacing: -0.16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.header-menu-area ul li a:hover {
  color: #fe5b00;
}

/* Submenu Styles */
.header-menu-area ul li {
  position: relative;
}

/* Add dropdown icon for menu items with submenu */
.header-menu-area ul li.menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 6px;
  margin-left: 8px;
  background-image: url('data:image/svg+xml;utf8,<svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.53125 0.530305L4.53128 4.53027L8.53125 0.530273" stroke="%23131114" stroke-width="1.5" stroke-miterlimit="16"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

/* Rotate icon on hover */
.header-menu-area ul li.menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}

/* Submenu container */
.header-menu-area ul li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 240px;
  padding: 16px 0;
  margin: 0;
  margin-top: 12px;
  box-shadow: 0 8px 24px rgba(19, 17, 20, 0.12);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Show submenu on hover */
.header-menu-area ul li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Submenu items */
.header-menu-area ul li .sub-menu li {
  width: 100%;
  padding: 0;
  margin: 0;
}

/* Submenu links */
.header-menu-area ul li .sub-menu li a {
  display: block;
  padding: 12px 24px;
  font-size: 15px;
  color: #131114;
  transition: all 0.3s ease;
  border-radius: 0;
}

/* Remove icon from submenu items */
.header-menu-area ul li .sub-menu li a::after {
  display: none !important;
}

/* Submenu link hover effect */
.header-menu-area ul li .sub-menu li a:hover {
  background-color: #fff5f0;
  color: #fe5b00;
  /* padding-left: 28px; */
}

/* Active submenu item */
.header-menu-area ul li .sub-menu li.current-menu-item > a {
  background-color: #fff5f0;
  color: #fe5b00;
  font-weight: 600;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu-toggle span {
  display: block;
  width: 28px;
  height: 2.5px;
  background-color: #131114;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: absolute;
}

.mobile-menu-toggle span:nth-child(1) {
  top: 12px;
}

.mobile-menu-toggle span:nth-child(2) {
  top: 19px;
}

.mobile-menu-toggle span:nth-child(3) {
  top: 26px;
}

/* Active State - Professional X Icon */
.mobile-menu-toggle.active span {
  background-color: #ffffff;
  width: 30px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* Hide Mobile Menu Buttons on Desktop */
.mobile-menu-buttons {
  display: none;
}

/* Hide btn-wrap inside menu on Desktop */
.header-menu-area .btn-wrap {
  display: none;
}
/* ==============
Hero Area CSS
================*/
.hero-video-wrapper .elementor-widget-video .elementor-wrapper {
  aspect-ratio: auto;
  height: 445px;
}
.hero-video-icon {
  cursor: pointer;
}

/* CTA SUBSCRIBE Input Button Style  */
.subscribe-container {
  display: flex;
  align-items: stretch;
  gap: 16px;
  background: transparent;
  padding: 0;
  max-width: 482px;
  width: 100%;
}

.email-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px 24px;
  font-size: 15px;
  color: #333;
  background: white;
  border-radius: 30px;
  min-width: 0;
}

.email-input::placeholder {
  font-family: "NeueMontreal";
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: #174d6b;
}

.subscribe-btn {
  background: #fe5b00;
  color: white;
  border: none;
  padding: 16px 36px;
  border-radius: 30px;
  font-family: "NeueMontreal";
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.subscribe-btn:hover {
  background: #e65c00;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.subscribe-btn:active {
  transform: translateY(0);
}

@media (max-width: 480px) {
  .subscribe-container {
    flex-direction: column;
    border-radius: 20px;
    padding: 16px;
    gap: 12px;
  }

  .email-input {
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  .subscribe-btn {
    width: 100%;
  }
}

/* ==============
Footer CSS
================*/
.footer-section {
  background-color: #fe5b00;
  padding-top: 140px;
  padding-bottom: 76px;
}
.footer-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 39px;
  margin-bottom: 145px;
}
.footer-cta-title {
  max-width: 764px;
  font-weight: 700;
  font-size: 96px;
  line-height: 1em;
  letter-spacing: -1.92px;
  text-align: center;
  text-transform: uppercase;
  color: #ffefe6;
  margin: 0px;
  padding: 0px;
}
.footer-cta-desc {
  max-width: 424px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4em;
  text-align: center;
  color: #ffffff;
  margin: 0px;
  padding: 0px;
}
.footer-cta-button {
  font-family: "NeueMontreal" !important;
  background: radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.25) 0%,
      transparent 60%
    ),
    #360e70;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: -0.08px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 60px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: inset -3px -4px 7px 0px rgba(255, 255, 255, 0.15);
}
.footer-cta-button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 50%
  );
  pointer-events: none;
}

.footer-cta-button:hover {
  transform: translateY(-2px);
  background: radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.25) 0%,
      transparent 60%
    ),
    #4a1294;
  box-shadow: inset -3px -4px 7px 0px rgba(255, 255, 255, 0.15),
    0 8px 20px rgba(54, 14, 112, 0.4);
  color: #ffffff;
}

.footer-cta-button:active {
  transform: translateY(0px);
  box-shadow: inset -3px -4px 7px 0px rgba(255, 255, 255, 0.15),
    0 4px 10px rgba(54, 14, 112, 0.3);
}

/* Pulsing effect on hover */
@keyframes pulse {
  0%,
  100% {
    box-shadow: inset -3px -4px 7px 0px rgba(255, 255, 255, 0.15),
      0 8px 20px rgba(54, 14, 112, 0.4);
  }
  50% {
    box-shadow: inset -3px -4px 7px 0px rgba(255, 255, 255, 0.15),
      0 12px 30px rgba(54, 14, 112, 0.6);
  }
}

.footer-cta-button:hover {
  animation: pulse 2s ease-in-out infinite;
}

.footer-wrap .footer-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 74px;
  margin-bottom: 32px;
}
.footer-menu-wrapper {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffccb0;
  border-bottom: 1px solid #ffccb0;
  padding: 32px 0px 32px 0px;
}
.mt-40 {
  margin-top: 40px;
}
.nav_menu_column .widget_nav_menu .widget-headline {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.88rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 0px;
  color: #fe5b00;
}

.nav_menu_column .footer-list {
  display: flex;
  flex-direction: column;
  margin: 12px 0px 0px 0px;
  padding: 0px;
}
.nav_menu_column .footer-list li {
  list-style-type: none;
}
.nav_menu_column .footer-list li {
  list-style-type: none;
}
.nav_menu_column .footer-list li a {
  font-family: "NeueMontreal" !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9rem;
  letter-spacing: -0.16px;
  text-decoration: none;
  color: #350f6b;
  transition: color 0.3s ease;
}

.nav_menu_column .footer-list li a:hover {
  color: #fe5b00;
}

.footer-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0px 40px 0px;
}
.custom-legal-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.footer-bottom-wrapper .copyright-text,
.custom-legal-links a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.63rem;
  letter-spacing: -0.14px;
  text-decoration: none;
  color: #350f6b;
  transition: color 0.3s ease;
}

.custom-legal-links a:hover {
  color: #fe5b00;
}
.social-media {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0px;
  padding: 0px;
}
.social-media li {
  list-style-type: none;
}
.social-media li a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  list-style-type: none;
  border-radius: 50%;
  background-color: #ffefe6;
  transition: background-color 0.3s ease;
}

.social-media li a:hover {
  background-color: #fe5b00;
}

.social-media li a img {
  transition: fill 0.3s ease, color 0.3s ease;
}

.social-media li a:hover img {
  filter: brightness(25);
}

/* Extra CSS */
.lets-talk-form-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 32px 2px 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  max-width: 607px;
  width: 100%;
}

.lets-talk-form-wrapper h2 {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  color: #350f6b;
  margin: 0 0 32px 0;
  letter-spacing: -0.5px;
}

/* Form Groups */
.lets-talk-form-group {
  margin-bottom: 24px;
}

.lets-talk-form-group label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #0a190d;
  margin-bottom: 10px;
  line-height: 1.4;
}

.lets-talk-form-group label span {
  color: #ff6b35;
}

/* Input Fields */
.lets-talk-form-wrapper input[type="text"],
.lets-talk-form-wrapper input[type="email"],
.lets-talk-form-wrapper input[type="tel"],
.lets-talk-form-wrapper input[type="url"],
.lets-talk-form-wrapper textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  color: #1e293b;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  outline: none;
  transition: all 0.2s ease;
  font-family: inherit;
}

.lets-talk-form-wrapper input[type="text"]:focus,
.lets-talk-form-wrapper input[type="email"]:focus,
.lets-talk-form-wrapper input[type="tel"]:focus,
.lets-talk-form-wrapper input[type="url"]:focus,
.lets-talk-form-wrapper textarea:focus {
  border-color: #350f6b;
  box-shadow: 0 0 0 3px rgba(53, 15, 107, 0.1);
}

.lets-talk-form-wrapper input::placeholder,
.lets-talk-form-wrapper textarea::placeholder {
  color: #667085;
  font-size: 16px;
}

/* Textarea */
.lets-talk-form-wrapper textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

/* Submit Button */
.lets-talk-submit-btn {
  width: 100%;
  padding: 16px 32px;
  font-size: 18px;
  letter-spacing: -0.25px;
  font-weight: 500;
  color: #ffffff;
  background: #fe5b00;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
  font-family: inherit;
}

.lets-talk-submit-btn:hover {
  background: #350f6b;
}

.lets-talk-submit-btn:active {
  transform: translateY(0);
}

/* Contact Form 7 Compatibility */
.lets-talk-form-wrapper .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.lets-talk-form-wrapper .wpcf7-not-valid-tip {
  font-size: 13px;
  color: #ef4444;
  margin-top: 6px;
  display: block;
}

.lets-talk-form-wrapper .wpcf7-response-output {
  margin: 20px 0 0 0;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
}

.lets-talk-form-wrapper .wpcf7-mail-sent-ok {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.lets-talk-form-wrapper .wpcf7-validation-errors,
.lets-talk-form-wrapper .wpcf7-mail-sent-ng {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/*ceo about slider*/

.ceo-about-slider .swiper-slide:nth-child(odd) .about2-testimonial-card {
  background-color: #ebf8ff;
}

/* Even cards = red */
.ceo-about-slider .swiper-slide:nth-child(even) .about2-testimonial-card {
  background-color: #fff9ea;
}

.ceo-content {
  position: sticky;
  top: 60px;
  align-self: flex-start;
}

/* Responsive */
@media (max-width: 768px) {
  .lets-talk-form-wrapper {
    padding: 36px 28px;
    border-radius: 20px;
    max-width: 100%;
    width: 100%;
  }

  .lets-talk-form-wrapper h2 {
    font-size: 28px;
    margin-bottom: 28px;
  }

  .lets-talk-two-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .lets-talk-form-group {
    margin-bottom: 20px;
  }
  .lets-talk-form-img img {
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .lets-talk-form-wrapper {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .lets-talk-form-wrapper h2 {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .lets-talk-form-img img {
    object-fit: cover;
  }
  .lets-talk-form-wrapper input[type="text"],
  .lets-talk-form-wrapper input[type="email"],
  .lets-talk-form-wrapper input[type="tel"],
  .lets-talk-form-wrapper input[type="url"],
  .lets-talk-form-wrapper textarea {
    padding: 12px 14px;
    font-size: 14px;
  }

  .lets-talk-submit-btn {
    padding: 14px 28px;
    font-size: 15px;
  }

  .ceo-content {
    position: static;
    top: auto;
  }
}

.smw-plan-table * {
  font-family: "NeueMontreal" !important;
}

@media (max-width: 991px) {
  .smw-plan-table {
    width: 1000px;
  }

  .smw-plan-table-wrapper {
    overflow-x: auto;
  }
}

/* ==============
Responsive Media Queries
================*/
@media (max-width: 1366px) {
  .footer-section {
    padding: 110px 50px 50px 50px;
  }
}
@media (max-width: 1200px) {
  .container-1450 {
    padding-left: 60px;
    padding-right: 60px;
  }
  .footer-section {
    padding: 110px 20px 20px 20px;
  }
  .footer-cta-title {
    font-size: 80px;
  }
  .footer-cta-wrapper {
    margin-bottom: 110px;
  }
}

/* Tablet Devices (max-width: 1024px) */
@media (max-width: 1024px) {
  .container-1450 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .container-1216 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-area {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .header-menu-area ul {
    gap: 24px;
  }

  .header-menu-area ul li a {
    font-size: 15px;
  }

  .btn-wrap {
    gap: 12px;
  }

  .social-market-btn {
    font-size: 14px;
    padding: 8px 20px;
  }

  .footer-section {
    padding: 90px 20px 20px 20px;
  }
  .footer-cta-wrapper {
    margin-bottom: 90px;
    gap: 24px;
  }
  .footer-cta-title {
    font-size: 65px;
    max-width: 589px;
  }
  .footer-wrap .footer-top-wrapper {
    padding-top: 55px;
  }
  .footer-bottom-wrapper {
    padding: 32px 0px 32px 0px;
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .container-1450 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .container-1216 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-area {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .header-wrapper {
    position: relative;
  }

  .header-logo-area img {
    max-width: 140px;
    height: auto;
  }

  /* Show Mobile Menu Toggle */
  .mobile-menu-toggle {
    display: flex;
    align-self: center;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background-color: transparent;
  }

  /* When menu is NOT active, position in header */
  body:not(.menu-open) .mobile-menu-toggle {
    position: relative;
    top: auto;
    right: auto;
  }

  /* Hide Desktop Buttons on Mobile */
  .header-btn-area {
    display: none;
  }

  /* Mobile Menu Overlay */
  .header-menu-area::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: -1;
  }

  .header-menu-area.active::before {
    opacity: 1;
    visibility: visible;
  }

  /* Mobile Menu Styles - Dropdown from Top */
  .header-menu-area {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background-color: #242424;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: top 0.4s ease, visibility 0s 0.4s;
    z-index: 1000;
    padding: 80px 30px 30px;
    overflow-y: auto;
    height: 100vh;
    visibility: hidden;
  }

  .header-menu-area.active {
    top: 0;
    visibility: visible;
    transition: top 0.4s ease, visibility 0s 0s;
  }

  .header-menu-area ul {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    padding: 0px;
  }

  .header-menu-area ul li {
    width: 100%;
    text-align: start;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
  }

  .header-menu-area ul li a {
    display: block;
    padding: 15px 0;
    font-size: 16px;
    color: #fff;
  }

  /* Add padding for menu items with children to make room for icon */
  .header-menu-area ul li.menu-item-has-children > a {
    padding-right: 0px;
    position: relative;
  }

  /* Mobile Submenu Styles */
  .header-menu-area ul li.menu-item-has-children > a::after {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg) !important;
    margin-left: 0;
    transition: transform 0.3s ease;
    background-image: url('data:image/svg+xml;utf8,<svg width="10" height="6" viewBox="0 0 10 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.53125 0.530305L4.53128 4.53027L8.53125 0.530273" stroke="%23ffffff" stroke-width="1.5" stroke-miterlimit="16"/></svg>') !important;
  }

  /* Disable hover effect on mobile */
  .header-menu-area ul li.menu-item-has-children:hover > a::after {
    transform: translateY(-50%) rotate(0deg) !important;
  }

  .header-menu-area ul li.menu-item-has-children.submenu-open > a::after {
    transform: translateY(-50%) rotate(180deg) !important;
  }

  .header-menu-area ul li .sub-menu {
    position: static;
    width: 100%;
    min-width: auto;
    box-shadow: none;
    border-radius: 0;
    margin-top: 0;
    padding: 0;
    background-color: #f8f8f8;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .header-menu-area ul li.submenu-open > .sub-menu {
    max-height: 500px;
    padding: 8px 0;
  }

  .header-menu-area ul li .sub-menu li {
    border-bottom: none;
  }

  .header-menu-area ul li .sub-menu li a {
    padding: 12px 20px;
    font-size: 15px;
    text-align: left;
  }

  .header-menu-area ul li .sub-menu li a:hover {
    background-color: #fff5f0;
    padding-left: 24px;
  }

  /* Show btn-wrap inside menu on Mobile */
  .header-menu-area .btn-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* margin-top: 30px; */
    padding-top: 30px;
    /* border-top: 1px solid #f0f0f0; */
    align-items: self-start;
    width: 100%;
  }

  .header-menu-area .btn-wrap .social-market-btn {
    width: 100%;

    text-align: center;
  }
  /*Hero Area Responsive*/
  .hero-video-wrapper .elementor-widget-video .elementor-wrapper {
    aspect-ratio: auto;
    height: 365px;
  }

  /* Footer Responsive */
  .footer-section {
    padding: 90px 16px 20px 16px;
  }
  .footer-wrap .footer-top-wrapper {
    /* flex-direction: column; */
    gap: 20px;
    align-items: flex-start;
  }

  .footer-menu-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-bottom-wrapper {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
    padding: 25px 0px 25px 0px;
  }
}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
  .container-1450,
  .container-1216 {
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 0px;
  }

  .header-logo-area img {
    max-width: 120px;
  }

  .mobile-menu-toggle {
    width: 36px;
    height: 36px;
  }

  .mobile-menu-toggle span {
    width: 24px;
    height: 2px;
  }

  .mobile-menu-toggle span:nth-child(1) {
    top: 11px;
  }

  .mobile-menu-toggle span:nth-child(2) {
    top: 17px;
  }

  .mobile-menu-toggle span:nth-child(3) {
    top: 23px;
  }

  .mobile-menu-toggle.active span {
    width: 26px;
  }

  .header-menu-area {
    padding: 70px 20px 20px;
  }

  .header-menu-area ul li a {
    font-size: 15px;
    padding: 12px 0;
  }

  .header-menu-area .btn-wrap .social-market-btn {
    width: 100%;
    font-size: 15px;
  }
  .hero-video-wrapper .elementor-widget-video .elementor-wrapper {
    aspect-ratio: auto;
    height: 228px;
  }
  .footer-section {
    padding: 0px;
    border-radius: 16px;
  }
  .footer-wrap .footer-top-wrapper {
    padding-top: 32px;
    margin-bottom: 16px;
  }
  .footer-cta-wrapper {
    align-items: flex-start;
    gap: 0px;
    margin-bottom: 0px;
    padding: 48px 24px 48px 24px;
  }
  .footer-bottom-wrapper {
    padding: 16px 0px 32px 0px;
    gap: 16px;
  }
  .footer-cta-button {
    font-size: 14px;
    padding: 8px 16px;
  }
  .footer-menu-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px 0px 16px 0px;
  }
  .mt-40 {
    margin-top: 16px;
  }
  .footer-cta-title {
    font-size: 28px;
    letter-spacing: -0.5px;
    text-align: left;
  }
  .footer-cta-desc {
    font-size: 16px;
    text-align: start;
    margin-top: 16px;
    margin-bottom: 24px;
  }
  .nav_menu_column .widget_nav_menu .widget-headline {
    font-size: 16px;
    letter-spacing: 1.6px;
  }
  .nav_menu_column .footer-list {
    padding: 0px;
  }
}

.blog-details-hero {
  background: #ebf8ff;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.blog-details-hero::before,
.blog-details-hero::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(147, 197, 253, 0.2);
  border-radius: 50%;
  filter: blur(60px);
}

.blog-details-hero::before {
  top: -50px;
  left: -50px;
}

.blog-details-hero::after {
  bottom: -50px;
  right: -50px;
}

/* Hero Wrapper - Two Column Layout */
.blog-details-hero-wrapper {
  gap: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  z-index: 1;
}

.blog-details-title {
  font-weight: 700;
  font-size: 80px;
  line-height: 1;
  text-transform: uppercase;
  color: #174d6b;
  margin-bottom: 30px;
}

.blog-author-byline {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  color: #174d6b;
  margin: 0;
  margin-bottom: 30px;
}

.blog-author-card {
  gap: 16px;
  display: flex;
  align-items: center;
  border-radius: 16px;
}

.blog-author-card .author-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-author-card .author-name {
  margin: 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.25px;
  color: #174d6b;
  text-transform: capitalize;
}

.blog-author-card .author-designation {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.25px;
  color: #1e658c;
}

.blog-details-hero-image {
  position: relative;
}

.featured-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 9px solid #2683b5;
  height: 410px;
}

.featured-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Popup Video CSS */
.play-popup-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 2;
  background-color: #fff;
  border-radius: 100%;
  font-size: 30px;
}

.play-popup-video:hover svg {
  transform: scale(1.1);
}

.play-popup-video svg {
  width: 1em;
  height: 1em;
  transition: all 0.3s;
}

/* Video Play Button */
.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.video-play-button svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.video-play-button:hover svg {
  transform: scale(1.1);
}

.video-play-button circle {
  transition: fill 0.3s ease;
}

.video-play-button:hover circle {
  fill: #ff5252;
}

.blog-details-wrapper {
  display: flex;
  gap: 80px;
  padding-top: 140px;
  padding-bottom: 140px;
}

.blog-details-content {
  max-width: 774px;
}
.blog-details-content h2 {
  font-family: "ObviouslyNarrow";
  font-size: 36px;
  line-height: 1.3;
  color: #350f6b;
  margin-bottom: 6px;
}
.blog-details-content p {
  font-family: "NeueMontreal";
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.5;
  color: #350f6b;
}
.blog-details-content img {
  margin-bottom: 15px !important;
}
.blog-details-content ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 25px;
}
.blog-details-content ul li {
  font-family: "NeueMontreal";
  font-size: 18px;
  line-height: 1.5;
  color: #350f6b;
}

/**
 * Blog Sidebar Styles
 * Pixel-perfect design matching the provided image
 */

.blog-details-sidebar {
  max-width: 373px;
}

.blog-sidebar {
  top: 100px;
  position: sticky;
}

/* Widget Base Styles */
.sidebar-widget {
  margin-bottom: 40px;
}

.sidebar-widget.share-widget {
  margin-bottom: 32px;
}

.sidebar-blog-toc-title {
  font-family: "ObviouslyNarrow";
  font-size: 28px;
  font-weight: 700;
  color: #350f6b;
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1.4;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-item {
  margin-bottom: 8px;
}

.toc-item.sub-item {
  margin-left: 16px;
  font-size: 14px;
}

.toc-item a {
  font-family: "NeueMontreal";
  color: #350f6b;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.6;
  display: block;
  transition: color 0.2s ease;
}

.toc-item a:hover {
  color: #3b82f6;
}

.no-toc {
  color: #94a3b8;
  font-size: 14px;
  margin: 0;
}

.social-share-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.share-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.share-icon:hover {
  background-color: #f2e9ff;
}

/* CTA Cards */
.cta-card {
  background: #ebf8ff;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s;
}

.widget-title {
  font-family: "NeueMontreal";
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 2px;
  color: #350f6b;
}

.cta-card .cta-title {
  font-family: "ObviouslyNarrow";
  font-size: 36px;
  font-weight: 700;
  color: #174d6b;
  line-height: 1.3;
  margin-bottom: 0;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.cta-description {
  font-family: "NeueMontreal";
  max-width: 284px;
  font-size: 16px;
  color: #174d6b;
  line-height: 1.4;
  margin-top: 25px;
  margin-bottom: 24px;
}

.cta-button {
  display: inline-block;
  font-family: "NeueMontreal";
  padding: 15px 24px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: 100%;
}

.orange-btn {
  background: #ff6b35;
  color: #ffffff;
}

.orange-btn:hover {
  background: #e55a28;
}

.newsletter-card {
  background: #ebf8ff;
}

.sidebar-widget.cta-card {
  position: relative;
}

.sidebar-widget.cta-card .shape-1 {
  position: absolute;
  top: 15px;
  right: 15px;
}

.newsletter-card .shape-2 {
  position: absolute;
  bottom: 15px;
  right: 70px;
}

.audit-card .shape-2 {
  position: absolute;
  right: 150px;
  bottom: 30px;
}

.results-card .shape-2 {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.image-card .shape-2 {
  position: absolute;
  right: 30px;
  bottom: 30px;
}

.sidebar-widget.cta-card .cta-description {
  margin-top: 10px;
  margin-bottom: 15px;
}

.sidebar-widget .subscribe-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-widget .email-input {
  padding: 8px 15px;
  font-size: 16px;
  border-radius: 50px;
  outline: none;
  transition: border-color 0.2s ease;
  border: none;
  box-shadow: -3px -4px 7px 0px #ffffff26 inset;
  color: #174d6bc4;
}

.sidebar-widget .email-input::placeholder {
  color: #174d6bc4;
  opacity: 1;
}

.sidebar-widget.cta-card .subscribe-btn,
.sidebar-widget.cta-card .orange-btn {
  background: #ff6b35;
  color: #ffffff;
  align-self: flex-start;
  width: auto;
  padding: 10px 18px;
  position: relative;
  z-index: 1;
}

.sidebar-widget.cta-card .subscribe-btn:hover,
.sidebar-widget.cta-card .orange-btn:hover {
  background: #350f6b;
}

.sidebar-widget.cta-card.image-card {
  padding: 0;
}

.sidebar-widget .email-input:focus {
  border-color: #3b82f6;
}

.sidebar-widget .email-input::placeholder {
  color: #94a3b8;
}

.sidebar-widget .share-icon img {
  max-width: 16px;
  max-height: 16px;
  width: auto;
  height: auto;
}

/* Audit Card */
.audit-card {
  background: #ebf8ff;
}

/* Results Card */
.results-card {
  background: #ebf8ff;
}

/* Image Card */
.image-card {
  padding: 0;
  overflow: hidden;
}

.image-card .card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.image-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-card .card-content {
  padding: 24px;
}

.services-form-wrapper {
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: 0.2s;
}

input:focus,
textarea:focus {
  border-color: #3a0ca3;
  box-shadow: 0 0 4px rgba(58, 12, 163, 0.3);
}

.services-two-columns {
  display: flex;
  gap: 20px;
}

.services-two-columns .services-form-group {
  flex: 1;
}

textarea {
  height: 120px;
  resize: none;
}

.services-submit-btn {
  width: 100%;
  padding: 16px;
  background: #fe5b00;
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}

.services-submit-btn:hover {
  background: #350f6b;
}

.google-map-wrapper {
  overflow: hidden;
  height: 100%;
}

.google-map-wrapper iframe {
  width: 100%;
  height: 100%;
}

.cs-details-testimonial .about2-testimonial-card {
  flex-direction: column-reverse;
}

/* Responsive */
@media (max-width: 768px) {
  .sidebar-widget {
    margin-bottom: 20px;
  }

  .cta-title {
    font-size: 20px;
  }

  .social-share-icons {
    gap: 12px;
  }

  .share-icon {
    width: 36px;
    height: 36px;
  }
}

/**
 * Related Blog Section
 */

.related-blog-section {
  padding-top: 130px;
  padding-bottom: 140px;
  background: #ebf8ff;
}

.related-blog-header {
  gap: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 55px;
}

.related-blog-title {
  font-weight: 700;
  font-size: 84px;
  line-height: 1;
  text-transform: uppercase;
  color: #350f6b;
}

.related-blog-nav {
  display: flex;
  gap: 12px;
}

.related-prev,
.related-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.related-prev {
  background: #350f6b;
  color: #ffffff;
}

.related-next {
  background: #ff6b35;
  color: #ffffff;
}

.related-prev:hover {
  background: #2a0c56;
  transform: scale(1.1);
}

.related-next:hover {
  background: #e55a28;
  transform: scale(1.1);
}

.related-prev.swiper-button-disabled,
.related-next.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.related-blog-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
  padding: 30px;
}

.related-blog-image {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-radius: 24px;
}

.related-blog-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.related-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.related-blog-card:hover .related-blog-image img {
  transform: scale(1.1);
}

.related-blog-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.related-blog-content {
  padding-top: 25px;
}

.related-blog-meta {
  margin-bottom: 16px;
}

.related-blog-date {
  font-family: "NeueMontreal" !important;
  font-size: 14px;
  font-weight: 500;
  color: #350f6b;
  letter-spacing: -0.25px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.related-blog-date svg {
  flex-shrink: 0;
}

.related-blog-heading {
  margin: 0;
  margin-bottom: 8px;
}

.related-blog-heading a {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #350f6b;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.related-blog-heading a:hover {
  color: #fe5b00;
}

.related-blog-excerpt {
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.4px;
  color: #350f6b;
}

.related-blog-link {
  font-family: "NeueMontreal" !important;
  display: inline-block;
  padding: 11px 20px;
  border: 1px solid #d7bbff;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  color: #350f6b;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}

.related-blog-link:hover {
  color: #fff;
  border-color: #350f6b;
  background-color: #350f6b;
}

.error_page_content_area {
  text-align: center;
  padding-top: 140px;
  padding-bottom: 140px;
}

.error_page_content_area .title {
  font-size: 60px;
}

.error_page_content_area .paragraph {
  font-size: 18px;
  padding-bottom: 30px;
}

.error_page_content_area .btn-wrap {
  justify-content: center;
}

.search-page-grid {
  gap: 50px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.search-page-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.search-page-grid .blog-slider-card {
  padding: 0;
}

.search-page-content-area {
  padding-top: 140px;
  padding-bottom: 140px;
}

.blog-pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
  gap: 8px;
}

.blog-pagination li {
  list-style: none;
}

.blog-pagination .page-numbers {
  text-decoration: none;
  font-size: 16px;
  width: 32px;
  height: 32px;
  border: 1px solid #ddd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  line-height: 1;
  transition: all 0.3s;
  background: transparent;
  box-shadow: none;
  color: #350f6b;
}

.blog-pagination .page-numbers.current {
  color: #fff;
  border-color: #350f6b;
  background-color: #350f6b;
}

/* Responsive */
@media (max-width: 1600px) {
  .related-blog-image {
    height: 320px;
  }

  .related-blog-title {
    font-size: 80px;
  }

  .blog-details-wrapper {
    gap: 60px;
  }
}

@media (max-width: 1399px) {
  .search-page-content-area {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .related-blog-image {
    height: 300px;
  }

  .error_page_content_area .title {
    font-size: 50px;
  }

  .related-blog-title {
    font-size: 70px;
  }

  .related-blog-header {
    margin-bottom: 40px;
  }

  .related-blog-heading {
    margin-bottom: 5px;
  }

  .related-blog-heading a {
    font-size: 22px;
  }

  .related-blog-excerpt {
    font-size: 18px;
  }

  .blog-details-wrapper {
    gap: 40px;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .cta-card .cta-title {
    font-size: 30px;
  }

  .blog-details-title {
    font-size: 60px;
    margin-bottom: 20px;
  }
}

@media (max-width: 1199px) {
  .search-page-content-area {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .search-page-grid {
    gap: 50px 15px;
  }

  .error_page_content_area .title {
    font-size: 40px;
  }

  .related-blog-title {
    font-size: 50px;
  }

  .related-blog-section {
    padding-top: 95px;
    padding-bottom: 100px;
  }

  .related-blog-header {
    margin-bottom: 30px;
  }

  .related-prev,
  .related-next {
    width: 50px;
    height: 50px;
  }

  .related-blog-card {
    padding: 20px 20px 25px;
  }

  .related-blog-image {
    height: 280px;
  }

  .related-blog-content {
    padding-top: 20px;
  }

  .related-blog-excerpt {
    margin-bottom: 20px;
  }

  .related-blog-heading a {
    margin-bottom: 0;
  }

  .related-blog-heading {
    margin: 0;
    margin-bottom: 3px;
  }

  .blog-details-wrapper {
    gap: 30px;
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .cta-card .cta-title {
    font-size: 28px;
  }

  .blog-sidebar {
    max-width: 330px;
  }

  .sidebar-blog-toc-title {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .blog-author-card .author-name {
    font-size: 22px;
  }

  .blog-details-title {
    font-size: 50px;
    margin-bottom: 15px;
  }

  .blog-details-hero-wrapper {
    gap: 30px;
  }

  .blog-author-card .author-avatar {
    width: 60px;
    height: 60px;
  }

  .featured-image-wrapper {
    height: 380px;
    border: 5px solid #2683b5;
  }

  .blog-details-hero {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (max-width: 991px) {
  .search-page-content-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .search-page-grid {
    grid-template-columns: 1fr 1fr;
  }

  .error_page_content_area .title {
    font-size: 36px;
  }

  .related-blog-section {
    padding-top: 75px;
    padding-bottom: 80px;
  }

  .related-blog-title {
    font-size: 40px;
  }

  .related-blog-card {
    padding: 15px 15px 20px;
  }

  .related-blog-image {
    height: 220px;
  }

  .related-blog-heading a {
    font-size: 20px;
  }

  .related-blog-content {
    padding-top: 15px;
  }

  .related-blog-meta {
    margin-bottom: 12px;
  }

  .related-blog-excerpt {
    font-size: 16px;
  }

  .related-blog-link {
    padding: 8px 20px;
  }

  .sidebar-blog-toc-title {
    font-size: 22px;
  }

  .blog-details-wrapper {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .cta-card {
    padding: 20px 15px;
  }

  .cta-card .cta-title {
    font-size: 24px;
  }

  .image-card .card-content {
    padding: 15px 15px 20px;
  }

  .blog-details-title {
    font-size: 40px;
    margin-bottom: 5px;
  }

  .blog-author-byline {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .blog-author-card .author-name {
    font-size: 20px;
  }

  .blog-details-hero {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .search-page-content-area {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .search-page-grid {
    gap: 40px;
    grid-template-columns: 1fr;
  }

  .error_page_content_area .title {
    font-size: 30px;
  }

  .related-blog-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .related-blog-title {
    font-size: 32px;
  }

  .related-blog-header {
    margin-bottom: 25px;
  }

  .related-blog-title {
    margin: 0;
  }

  .related-blog-card {
    padding: 10px 10px 25px;
    height: auto;
  }

  .related-prev,
  .related-next {
    width: 44px;
    height: 44px;
  }

  .related-blog-nav svg {
    width: 12px;
  }

  .cta-card .cta-title {
    font-size: 24px;
  }

  .blog-details-wrapper {
    flex-direction: column-reverse;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .blog-sidebar {
    max-width: 100%;
  }

  .sidebar-blog-toc-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .blog-details-content p {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .blog-details-hero-wrapper {
    grid-template-columns: 1fr;
  }

  .blog-details-hero-content {
    order: 2;
  }

  .blog-details-hero {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .blog-details-title {
    font-size: 30px;
    margin-bottom: 5px;
  }

  .play-popup-video {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .featured-image-wrapper {
    height: auto;
    border: 3px solid #2683b5;
  }
}

/**
 * Contact Form - Let's Talk
 * Pixel-perfect design matching the provided image
 */

.services-form-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 32px 2px 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  /* max-width: 607px; */
  width: 100%;
}

.services-form-wrapper h2 {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  color: #350f6b;
  margin: 0 0 32px 0;
  letter-spacing: -0.5px;
}

/* Form Groups */
.services-form-group {
  margin-bottom: 24px;
}

.services-form-group label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #350f6b;
  margin-bottom: 10px;
  line-height: 1.4;
}

.services-form-group label span {
  color: #ff6b35;
}

/* Input Fields */
.services-form-wrapper input[type="text"],
.services-form-wrapper input[type="email"],
.services-form-wrapper input[type="tel"],
.services-form-wrapper input[type="url"],
.services-form-wrapper textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  color: #1e293b;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  outline: none;
  transition: all 0.2s ease;
  font-family: inherit;
}

.services-form-wrapper input[type="text"]:focus,
.services-form-wrapper input[type="email"]:focus,
.services-form-wrapper input[type="tel"]:focus,
.services-form-wrapper input[type="url"]:focus,
.services-form-wrapper textarea:focus {
  border-color: #350f6b;
  box-shadow: 0 0 0 3px rgba(53, 15, 107, 0.1);
}

.services-form-wrapper input::placeholder,
.services-form-wrapper textarea::placeholder {
  color: #667085;
  font-size: 16px;
}

/* Two Column Layout */
.services-two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  /* margin-bottom: 24px; */
}

/* Textarea */
.services-form-wrapper textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

/* Submit Button */
.services-submit-btn {
  width: 100%;
  padding: 16px 32px;
  font-size: 18px;
  letter-spacing: -0.25px;
  font-weight: 500;
  color: #ffffff;
  background: #fe5b00;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
  font-family: inherit;
}

.services-submit-btn:hover {
  background: #e55a28;
  background-color: #4d11a1;
  color: #ffffff;
}

.services-submit-btn:active {
  transform: translateY(0);
}

/* Contact Form 7 Compatibility */
.services-form-wrapper .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.services-form-wrapper .wpcf7-not-valid-tip {
  font-size: 13px;
  color: #ef4444;
  margin-top: 6px;
  display: block;
}

.services-form-wrapper .wpcf7-response-output {
  margin: 20px 0 0 0;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
}

.services-form-wrapper .wpcf7-mail-sent-ok {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.services-form-wrapper .wpcf7-validation-errors,
.services-form-wrapper .wpcf7-mail-sent-ng {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* location based form style  */

.location-seo-form .services-form-wrapper {
  padding: 32px;
  background-color: #12374d;
  border: 3px solid #31a7e8;
}
.location-seo-form .services-form-wrapper .services-submit-btn {
  width: auto;
  font-family: "NeueMontreal" !important;
  padding: 14px 56px;
  font-size: 18px;
  letter-spacing: -0.25px;
  font-weight: 500;
  color: #ffffff;
  background: #fe5b00;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.location-seo-form .services-form-wrapper h2 {
  color: #fe5b00;
}
.location-seo-form .services-form-wrapper .services-form-group label {
  color: #ffffff;
}

/* Input Fields */
.location-seo-form .services-form-wrapper input[type="text"],
.location-seo-form .services-form-wrapper input[type="email"],
.location-seo-form .services-form-wrapper input[type="tel"],
.location-seo-form .services-form-wrapper input[type="url"],
.location-seo-form .services-form-wrapper textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  color: #215d7e;
  background: #12374d;
  border: 1px solid #215d7e;
  border-radius: 8px;
  outline: none;
  transition: all 0.2s ease;
  font-family: inherit;
}

.location-seo-form .services-form-wrapper input::placeholder,
.location-seo-form .services-form-wrapper textarea::placeholder {
  color: #215d7e;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .services-form-wrapper {
    padding: 36px 28px;
    border-radius: 20px;
    max-width: 100%;
  }

  .services-form-wrapper h2 {
    font-size: 28px;
    margin-bottom: 28px;
  }

  .services-two-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .services-form-group {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .services-form-wrapper {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .services-form-wrapper h2 {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .services-form-wrapper input[type="text"],
  .services-form-wrapper input[type="email"],
  .services-form-wrapper input[type="tel"],
  .services-form-wrapper input[type="url"],
  .services-form-wrapper textarea {
    padding: 12px 14px;
    font-size: 14px;
  }

  .services-submit-btn {
    padding: 14px 28px;
    font-size: 15px;
  }
}
