/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #444444;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #111111;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #e03a3c;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #212529;
  /* The default color of the main navmenu links */
  --nav-hover-color: #e03a3c;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #e03a3c;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Custom Fonts */
@font-face {
  font-family: "integral-cf";
  src: url("../../assets/fonts/integral-cf/integral-cf-bold.woff2") format("woff2"),
    url("../../assets/fonts/integral-cf/integral-cf-bold.woff") format("woff"),
    url("../../assets/fonts/integral-cf/integral-cf-bold.ttf") format("truetype"),
    url("../../assets/fonts/integral-cf/integral-cf-bold.eot") format("embedded-opentype"),
    url("../../assets/fonts/integral-cf/integral-cf-bold.svg") format("svg"),
    url("../../assets/fonts/integral-cf/integral-cf-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1b1b1b;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #353535;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background-color: transparent;
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

@media screen and (max-width: 767px) {
  .header {
    padding: 0 !important;
  }

  .header .container-fluid {
    padding: 0 !important;
  }

  .header .container-fluid .row {
    margin: 0 !important;
  }

  .header .mobile-head {
    padding: 0 !important;
    max-width: calc(100% - 0px);
  }
}

.header .container-fluid {
  max-width: calc(100% - 50px);
  margin: 0 auto;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 78px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo span {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
}

/* Desktop Call Button */
.call-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 28px;
  border-radius: 50px;
  background: black;
  text-decoration: none;
  border: 2px solid #ffbf00;
  transition: 0.3s ease;
}

.call-btn .small-text {
  font-family: "Mona Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: white;
  letter-spacing: 7px !important;
}

.call-btn .big-text {
  font-family: "integral-cf", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(180deg, #FFE59E 0%, #FFBC01 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.call-btn:hover {
  background: #222;
  border-color: #ffce39;
  transform: scale(1.03);
}

/* Mobile Head */
.mobile-head {
  display: none;
}

/* Mobile Styles */
@media screen and (max-width: 767px) {

  /* Hide desktop elements */
  .call-btn,
  .logo.desktop-logo {
    display: none !important;
  }

  /* Make container-fluid block on mobile */
  .header .container-fluid {
    display: block !important;
    text-align: center;
    padding: 0;
  }

  /* Show mobile head */
  .mobile-head {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 10px 0;
    margin: 0 auto;
  }

  /* Each column inside mobile-head */
  .mobile-head .col-md-12 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }

  /* Center the logo image */
  .mobile-head .logo img {
    display: block;
    margin: 0 auto;
    max-width: 180px;
    /* adjust as needed */
    height: auto;
  }

  /* Center mobile CTA button */
  .mobile-head .cta-btn-mobile {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

.cta-mobile-btn {
  background: linear-gradient(to bottom, #ffd74a, #f7b800);
  padding: 12px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  text-decoration: none;
  color: #000;
  font-family: Arial, sans-serif;
  border-radius: 4px;
}

.cta-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.cta-number {
  font-size: 22px;
  font-weight: 900;
}

/* Mobile responsiveness */
@media screen and (max-width: 767px) {
  .mobile-cta-btn {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;

    background: linear-gradient(to bottom, #ffd74a, #f7b800);
    color: #000;
    font-family: Arial, sans-serif;
    text-decoration: none;

    padding: 1px 0;
    font-weight: 900;
    border-radius: 0;
  }

  .cta-label {
    font-family: "Mona Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
  }

  .cta-number {
    font-family: "integral-cf", sans-serif;
    font-size: 30px;
    font-weight: 900;
  }
}

/* Extra mobile refinement */
@media (max-width: 420px) {
  .cta-number {
    font-size: 20px;
  }
}

/* Optional: Add scroll effect */
.scrolled .header {
  background-color: #070513;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

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

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

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

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

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

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--background-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: linear-gradient(180deg, #FFE59E 0%, #FFBC01 100%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #070513;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: var(--alt-background-color);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

.section-bg {
  background-color: transparent;
  padding: 160px 0;
  position: relative;
}

.section-bg:before {
  content: "";
  background-color: var(--background-color);
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  transform: skewY(-3deg);
}

.section-bg .container {
  position: relative;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  text-transform: uppercase;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  margin-top: -7.9%;
  overflow: hidden;
}

.hero .container-fluid {
  max-width: calc(100% - 50px);
  margin: 0 auto;
}

.hero .container-fluid .content {
  margin-top: 10%;
}

@media screen and (max-width: 767px) {
  .hero .container-fluid .content {
    margin-top: 60%;
  }
}

.hero .container-fluid .content h2 {
  font-family: "integral-cf", sans-serif;
  font-size: 40px;
  background: linear-gradient(180deg, #FFE59E 0%, #FFBC01 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero .container-fluid .content h1 {
  font-family: "integral-cf", sans-serif;
  font-size: 80px;
  color: #FFFFFF;
  line-height: 80px;
}

.hero .contact-form {
  position: absolute;
  width: 79%;
  margin-top: 2%;
  background-image: url("../../assets/img/contact-form-bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.hero .contact-form img {
  position: absolute;
  top: 0;
  left: 0;
}

.hero .contact-form h2 {
  font-family: "integral-cf", sans-serif;
  font-size: 38px;
  color: #070513;
}

.hero .contact-form p {
  font-family: "Mona Sans", sans-serif;
  font-size: 20px;
  color: #070513;
}

.hero .contact-form .form-control {
  background: #f8f8f8;
  border: none;
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 0.95rem;
}

.hero .contact-form .form-control:focus {
  box-shadow: 0 0 0 2px #ffb300;
  outline: none;
}

.hero .contact-form .call-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 28px;
  border-radius: 0;
  background: linear-gradient(180deg, #FFE59E 0%, #FFBC01 100%);
  text-decoration: none;
  border: none;
  transition: 0.3s ease;
}

.hero .contact-form .call-btn .small-text {
  font-family: "Mona Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #0B0C19;
  letter-spacing: 7px !important;
}

.hero .contact-form .call-btn .big-number {
  font-family: "integral-cf", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #0B0C19 !important;
}

.hero .contact-form .btn-warning {
  background: linear-gradient(to right, #ffd54f, #ffb300);
  border: none;
  transition: 0.2s ease;
}

.hero .contact-form .btn-warning:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 179, 0, 0.4);
}

.hero .contact-form .call-btn .bg-warning {
  background: linear-gradient(to right, #ffd54f, #ffb300);
}

/* General */
.hero .hero-background {
  position: absolute;
  inset: 10px;
  border-radius: 16px;
  height: 50%;
  background:
    url("../../assets/img/hero-bg.webp") no-repeat top center/cover,
    linear-gradient(135deg, #FFE59E 0%, #FFBC01 100%);
  z-index: 0;
}

@media screen and (max-width: 767px) {
  .hero {
    margin-top: -155px;
  }

  .hero .container-fluid .content img {
    margin-top: 130px;
    width: 60%;
  }

  .hero .container-fluid .content h2 {
    font-size: 20px;
  }

  .hero .container-fluid .content h1 {
    font-size: 28px;
    line-height: 30px;
  }

  /* Contact Form */
  .hero .contact-form {
    display: none;
  }
}

.hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%,
      color-mix(in srgb, var(--accent-color), transparent 90%) 0%,
      transparent 50%);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero .hero-content {
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  z-index: 5;
}

.hero .hero-content .badge {
  padding: 10px 24px;
  border-radius: 500px;
  background: rgba(255, 255, 255, 0.10);
}

.hero .hero-content h4 {
  letter-spacing: 12.8px;
  font-size: 20px;
}

@media (max-width: 767px) {
  .hero {
    height: 1505px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 15px;
  }

  .hero-content {
    margin-top: 180px !important;
    text-align: center;
  }

  .contact-form {
    margin-top: -15px;
  }
}

@media screen and (max-width: 767px) {
  .hero {
    padding: 20px 15px 15px;
  }

  .hero .hero-content h4 {
    font-size: 16px;
    letter-spacing: 4px;
  }
}

/* Main Heading */
.hero .hero-content h1 {
  color: #FFF;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 62px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -3.6px;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .hero .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .hero .hero-content {
    margin-top: 60% !important;
  }
}

@media (max-width: 767px) {
  .hero .hero-content h1 {
    font-size: 2rem;
    letter-spacing: 0.5px;
    line-height: 1.3;
  }
}

@media (max-width: 575px) {
  .hero .hero-content h1 {
    font-size: 1.6rem;
    letter-spacing: 0;
  }
}

/* Horizontal line */
.hero .hero-content hr {
  margin: 1rem auto;
  width: 100px !important;
  background-color: #ffffff;
  height: 3px;
  border: none;
}

/* Promo text */
.hero .hero-content h5,
.hero .hero-content h6 {
  text-align: center;
}

.hero .hero-content h4 {
  padding-top: 3%;
  font-size: 1.2rem;
  font-family: "Montserrat";
  font-weight: 400;
  color: #FFF;
  letter-spacing: 4px;
}

.hero .hero-content h5 {
  font-size: 1.5rem;
}

.hero .hero-content h6 {
  font-size: 1.2rem;
  letter-spacing: 4px;
}

@media (max-width: 575px) {
  .hero .hero-content h5 {
    font-size: 1.2rem;
  }

  .hero .hero-content h6 {
    font-size: 1rem;
    letter-spacing: 2px;
  }
}

/* CTA Buttons */
.hero .hero-content .hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-btns {
    flex-direction: column;
    gap: 1rem;
  }
}

.hero .hero-content .hero-btns .cta-btn {
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 12px;
  padding: 16px 40px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  background: transparent;
  transition: all 0.3s ease;
}

.hero .hero-content .hero-btns .cta-btn:hover {
  background: #b843ac;
  color: #ffffff;
}

.hero .hero-content .hero-btns .cta-btn .small-text {
  font-size: 16px;
  font-weight: 600;
}

.hero .hero-content .hero-btns .cta-btn .big-text {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1px;
}

@media (max-width: 575px) {
  .hero .hero-content .hero-btns .cta-btn {
    padding: 12px 20px;
    width: 100%;
    max-width: 320px;
  }

  .hero .hero-content .hero-btns .cta-btn .small-text {
    font-size: 14px;
  }

  .hero .hero-content .hero-btns .cta-btn .big-text {
    font-size: 26px;
  }
}

/* Contact Form */
form button.btn {
  display: flex;
  padding: 16px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #b843ac;
  gap: 12px;
  align-self: stretch;
}

form button.btn:hover {
  background-color: #520962;
  color: #ffffff;
}

@media (max-width: 575px) {
  form .form-floating label {
    font-size: 14px;
  }

  form .form-control,
  form .form-select {
    font-size: 14px;
    padding: 12px 10px;
  }

  form button.btn {
    font-size: 10px;
    padding: 14px;
  }

  form p {
    font-size: 13px;
  }
}

/* Contact Form */
.hero .consult-card-mobile {
  position: absolute;
  top: 87%;
  width: 88vw;
  left: 50%;
  transform: translateX(-50%);
  max-width: 600px;
  margin: 40px auto;
  border-radius: 16px;
  overflow: hidden;
}

.hero .consult-card-mobile {
  display: none;
}

@media screen and (max-width: 767px) {
  .hero .consult-card-mobile {
    display: block;
  }
}

.hero .consult-card-mobile .card-header {
  display: flex;
  background: #ffd100;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 20px 3px;
  font-weight: bold;
  letter-spacing: 1px;
  border: 1px solid #ffd100;
}

.hero .consult-card-mobile .card-header h4 {
  font-family: "Mona Sans", sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #000000;
  text-transform: uppercase;
}

.hero .consult-card-mobile .card-body {
  padding: 10px 30px 30px;
}

.hero .consult-card-mobile .card-body .consult-title {
  font-family: "integral-cf", sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 5px;
}

.hero .consult-card-mobile .card-body .consult-subtitle {
  font-family: "Mona Sans", sans-serif;
  font-size: 18px;
  color: #000000;
  text-transform: uppercase;
  margin-bottom: 0;
}

.hero .consult-card-mobile .card-body form .form-label {
  font-family: "Mona Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: #070513;
}

.hero .consult-card-mobile .card-body form input {
  border-radius: 0;
  background-color: #F5F5F5;
  border: 1px solid #F5F5F5;
  height: 42px;
}

.hero .consult-card-mobile .card-body form textarea {
  border-radius: 0;
  background-color: #F5F5F5;
  border: 1px solid #F5F5F5;
}

.hero .consult-card-mobile .card-body form .submit-btn {
  background: linear-gradient(to bottom, #ffd100, #ffb900);
  border: none;
  border-radius: 0;
  box-shadow: 0 4px 10px rgba(255, 185, 0, 0.4);
  font-weight: bold;
  padding: 14px;
  width: 100%;
  font-size: 14px;
  transition: all 0.3s ease;
}

.hero .consult-card-mobile .card-body form .submit-btn i {
  display: none;
}

.hero .consult-card-mobile .card-body form .submit-btn:hover {
  box-shadow: 0 6px 15px rgba(255, 185, 0, 0.6);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# General CTA Button
--------------------------------------------------------------*/
.btn-warning {
  background: linear-gradient(90deg, #ffcc00, #ff9900);
  border: none;
  color: #000;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-warning:hover {
  background: linear-gradient(90deg, #ffdb4d, #ffb300);
}

/*--------------------------------------------------------------
# Team Gallery Slider Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media screen and (max-width: 767px) {
  .hero-carousel {
    position: absolute;
    top: 27%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
  }

  .hero-carousel .item img {
    width: 50vw;
    height: auto;
    display: block;
  }
}

/*--------------------------------------------------------------
# Trusted Partners Section
--------------------------------------------------------------*/
.trusted-partnership {
  margin-top: -2%;
  background-color: #fff;
}

.trusted-partnership .container-fluid {
  max-width: calc(100% - 50px);
  margin: 0 auto;
}

.trusted-partnership h6 {
  color: #000;
  font-size: 24px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

.trusted-partnership .yellow-line {
  display: inline-block;
  width: 3px;
  height: 52px;
  background: #ffcc00;
  margin-right: 10px;
  border-radius: 2px;
}

.partner-logo {
  max-height: 100px;
  opacity: 0.8;
  transition: 0.3s ease;
}

.partner-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

@media screen and (max-width: 768px) {
  .trusted-partnership h6 {
    font-size: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .trusted-partnership .yellow-line {
    width: 50px;
    height: 4px;
    background: #ffcc00;
    margin: 0 auto 10px auto;
    border-radius: 2px;
  }
}

@media (max-width: 767px) {
  .trusted-logos {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    justify-items: center;
  }

  .trusted-logos .partner-logo {
    max-width: 90%;
    height: auto;
  }
}


/*--------------------------------------------------------------
# Why Trust Us Section
--------------------------------------------------------------*/
.why-trust-us {
  background: #fff;
  color: #000;
}

.why-trust-us h6 {
  font-family: "Mona Sans", sans-serif;
  letter-spacing: 1.5px;
  background-color: #FFBC01;
}

.why-trust-us h2 {
  font-family: "integral-cf", sans-serif;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.why-trust-us p {
  font-family: "Mona Sans", sans-serif;
  font-size: 20px;
  color: #5B5B5B;
}

.why-trust-us .image-wrapper {
  max-width: 90%;
  margin: 0 auto;
}

.why-trust-us img {
  border-radius: 12px;
}

.why-trust-us ul li .icon svg {
  width: 30px;
}

.why-trust-us ul li span {
  font-family: "Mona Sans", sans-serif;
  font-size: 20px;
  color: #070513;
  line-height: 1.6;
}

/* Custom Button */
.btn-warning {
  background: linear-gradient(180deg, #FFE59E 0%, #FFBC01 100%);
  border: none;
  font-family: "Mona Sans", sans-serif;
  font-size: 20px;
  color: #0b0d13;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 14px 22px;
  border-radius: 0;
  box-shadow: 0 10px 20px rgba(245, 195, 66, .25);
}

.btn-warning:hover {
  filter: brightness(1.06);
  color: #0b0d13;
}

/* Responsive Tweaks */
@media (max-width: 991px) {

  .why-trust-us {
    text-align: left;
  }

  .why-trust-us h6,
  .why-trust-us h2,
  .why-trust-us p,
  .why-trust-us ul li span {
    text-align: left;
  }

  .why-trust-us .btn-warning {
    display: inline-block;
  }

  .why-trust-us .row.gy-5 {
    row-gap: 20px;
  }

  .why-trust-us .image-wrapper {
    margin-bottom: 10px;
    max-width: 100%;
  }

  .why-trust-us ul {
    text-align: left;
    margin: 0;
    max-width: 100%;
  }

  .why-trust-us ul li .icon svg {
    width: 24px;
    height: 24px;
  }

  .why-trust-us p,
  .why-trust-us ul li span {
    font-size: 18px;
  }

  .why-trust-us .btn {
    font-size: 16px;
  }

  .why-trust-us .btn .arrow-pointing-upright {
    display: none;
  }
}

/*--------------------------------------------------------------
# What We Do Section
--------------------------------------------------------------*/
.what-we-do .container-fluid {
  --bg: #0b0d13;
  --bg-soft: #131722;
  --bg-soft-2: #0f131d;
  --text: #e9e6df;
  --muted: #9aa0a6;
  --accent: #FFBC01;
  --accent-2: #f2b429;

  max-width: calc(100% - 20px);
  margin: 0 auto;
  border-radius: 40px;
  background-image: url("../../assets/img/what-we-do-bg.webp");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 991px) {
  .what-we-do .container-fluid {
    max-width: calc(100% - 20px);
    margin: 0 auto;
    border-radius: 20px;
    padding: 20px;
    background-position: top center;
    background-size: cover;
  }
}

/* headings */
.what-we-do .eyebrow {
  display: inline-block;
  font-weight: 800;
  letter-spacing: .25em;
  font-family: "Mona Sans", sans-serif;
  font-size: .75rem;
  background: var(--accent);
  color: #0b0d13;
  padding: 6px 12px;
}

.what-we-do .headline {
  font-family: "integral-cf", sans-serif;
  font-weight: 900;
  letter-spacing: .04em;
}

.what-we-do .subhead {
  color: var(--muted);
}

@media (max-width: 991px) {
  .what-we-do .text-center {
    text-align: center;
    margin-bottom: 20px;
    padding: 0 10px;
  }

  .what-we-do .text-center .eyebrow {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .what-we-do .text-center .headline {
    font-size: 24px;
    line-height: 1.2;
    margin-top: 10px;
    margin-bottom: 8px;
  }

  .what-we-do .text-center .subhead {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 0;
  }
}

/* Base card */
.what-we-do .service-card {
  background: linear-gradient(180deg, #070513 0%, #261c12 100%);
  border: 3px solid #070513;
  border-radius: 24px;
  padding: 28px;
  transition: all .25s ease;
}

/* Hover effect – now includes accent */
.what-we-do .service-card.accent {
  background: linear-gradient(180deg, #0c0a18 0%, #261c12 100%);
  border: 3px solid #FFBC01;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .35);
}

@media screen and (max-width: 767px) {
  .what-we-do .service-card.accent {
    border: 3px solid #070513;
  }
}

.what-we-do .icon-badge svg {
  width: 70px;
}

.what-we-do .icon-badge svg path {
  fill: #FFBC01 !important;
}

.what-we-do .service-title {
  font-weight: 800;
  text-transform: uppercase;
  font-family: "integral-cf", sans-serif;
  font-size: 24px;
  color: #ffffff;
  letter-spacing: .04em;
}

.what-we-do .service-desc {
  font-family: "Mona Sans", sans-serif;
  color: #FFFFFF;
  font-weight: 200;
  font-size: 20px;
}

.icon-title-wrapper {
  display: block;
  align-items: center;
  gap: 12px;
}

@media (max-width: 767px) {
  .icon-title-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .icon-title-wrapper .icon-badge svg {
    width: 50px;
    height: auto;
  }

  .icon-title-wrapper .service-title {
    font-size: 18px;
  }

  .what-we-do .service-desc {
    font-size: 16px !important;
    margin-top: 10px;
  }
}

/* CTA */
.what-we-do .btn-cta {
  background: linear-gradient(180deg, #FFE59E 0%, #FFBC01 100%);
  border: none;
  font-family: "Mona Sans", sans-serif;
  font-size: 20px;
  color: #0b0d13;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 14px 22px;
  border-radius: 0;
  box-shadow: 0 10px 20px rgba(245, 195, 66, .25);
}

.what-we-do .btn-cta:hover {
  filter: brightness(1.06);
  color: #0b0d13;
}

.arrow-pointing-upright {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../../assets/img/arrow-up.svg");
  background-size: contain;
  background-repeat: no-repeat;
  text-indent: -9999px;
}

/*--------------------------------------------------------------
# Pros Section
--------------------------------------------------------------*/
.pros {
  margin-bottom: 100px !important;
}

/*--------------------------------------------------------------
# Marketing Consultation Section
--------------------------------------------------------------*/
.consultation-section {
  overflow: visible;
}

.consultation-section .container-fluid {
  display: flex;
  align-items: stretch;
  max-width: calc(100% - 20px);
  min-height: 686px;
  margin: 0 auto;
  border-radius: 32px;
  background-image: url("../../assets/img/footer-bg.webp");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
  .consultation-section .container-fluid {
    display: flex;
    align-items: stretch;
    max-width: calc(100% - 20px);
    min-height: 1244px;
    margin: 0 auto;
    border-radius: 32px;
    background-image: url("../../assets/img/footer-mobile-bg.webp");
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

.consultation-section .content h2 {
  font-family: "integral-cf", sans-serif;
}

.consultation-section .content h2 span {
  background: linear-gradient(180deg, #FFE59E 0%, #FFBC01 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.consultation-section .content p {
  font-family: "Mona Sans", sans-serif;
  font-size: 18px;
  color: #FFFFFF;
  font-weight: 400;
}

/* Ensure the parent row takes full height */
.full-height-row {
  height: 70vh;
  display: flex;
  align-items: start;
  justify-content: start;
  text-align: start;
}

.full-height-row .col-md-7 {
  order: 2;
}

.consultation-section .content {
  margin-top: 5% !important;
}

.consultation-section .copyrights {
  margin-top: 20% !important;
}

@media screen and (max-width: 767px) {
  .col-md-7 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .col-md-7 .content {
    margin-bottom: 20px;
  }

  .col-md-7 .copyrights {
    margin-top: 20px;
  }

  .col-md-7 .call-btn {
    justify-content: center;
  }
}

/* Contact Form */
.consultation-section .consult-card {
  position: absolute;
  bottom: -3750px;
  max-width: 600px;
  margin: 40px auto;
  border-radius: 16px;
  overflow: hidden;
}

.consult-card.mobile {
  display: none;
}

.consultation-section .consult-card .card-header {
  display: flex;
  background: #ffd100;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 20px 5px;
  font-weight: bold;
  letter-spacing: 1px;
  border: 1px solid #ffd100;
}

.consultation-section .consult-card .card-header h4 {
  font-family: "Mona Sans", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  text-transform: uppercase;
}

.consultation-section .consult-card .card-body {
  padding: 10px 30px 30px;
}

.consultation-section .consult-card .card-body .consult-title {
  font-family: "integral-cf", sans-serif;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 5px;
}

.consultation-section .consult-card .card-body .consult-subtitle {
  font-family: "Mona Sans", sans-serif;
  font-size: 24px;
  color: #000000;
  text-transform: uppercase;
  margin-bottom: 0;
}

.consultation-section .consult-card .card-body form .form-label {
  font-family: "Mona Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: #070513;
}

.consultation-section .consult-card .card-body form input {
  border-radius: 0;
  background-color: #F5F5F5;
  border: 1px solid #F5F5F5;
  height: 42px;
}

.consultation-section .consult-card .card-body form textarea {
  border-radius: 0;
  background-color: #F5F5F5;
  border: 1px solid #F5F5F5;
}

.consultation-section .consult-card .card-body form .submit-btn {
  background: linear-gradient(to bottom, #ffd100, #ffb900);
  border: none;
  border-radius: 0;
  box-shadow: 0 4px 10px rgba(255, 185, 0, 0.4);
  font-weight: bold;
  padding: 14px;
  width: 100%;
  font-size: 18px;
  transition: all 0.3s ease;
}

.consultation-section .consult-card .card-body form .submit-btn:hover {
  box-shadow: 0 6px 15px rgba(255, 185, 0, 0.6);
  transform: translateY(-2px);
}

@media screen and (max-width: 767px) {
  .consultation-section .col-md-7 {
    margin-top: 160% !important;
  }
}

@media screen and (max-width: 767px) {
  .consultation-section {
    position: relative;
  }

  .consultation-section .consult-card {
    display: none;
  }

  .consultation-section .consult-card.mobile {
    display: block;
    position: absolute;
    bottom: 52%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    z-index: 10;
  }

  .consultation-section .consult-card .card-header {
    padding: 10px 15px 0;
  }

  .consultation-section .consult-card .card-header h4 {
    font-size: 14px;
  }

  .consultation-section .consult-card .card-body {
    padding: 15px 20px 20px;
  }

  .consultation-section .consult-card .card-body .consult-title {
    font-size: 24px;
    line-height: 1.2;
  }

  .consultation-section .consult-card .card-body .consult-subtitle {
    font-size: 16px;
  }

  .consultation-section .consult-card .card-body form .form-label {
    font-size: 14px;
  }

  .consultation-section .consult-card .card-body form input {
    height: 36px;
  }

  .consultation-section .consult-card .card-body form textarea {
    height: 100px;
  }

  .consultation-section .consult-card .card-body form .submit-btn {
    font-size: 16px;
    padding: 12px;
  }
}

.text-warning {
  color: #ffc107 !important;
}