@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* 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: #35211f; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #200f0d; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #FFBC01; /* 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: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #FFBC01; /* 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: #35211f; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #FFBC01; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* 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: #faf9f6;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #031013;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Custom Font: Integral CF */
@font-face {
  font-family: "integral-cf";
  src: url("../../assets/fonts/integral-cf/integral-cf-bold.eot");
  src: url("../../assets/fonts/integral-cf/integral-cf-bold.eot?#iefix") format("embedded-opentype"),
    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.svg#integral-cf-bold") format("svg");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.gradient-text {
  background: linear-gradient(180deg, #FFE59E, #FFBC01);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gx-custom {
  --bs-gutter-x: 10rem;
}

.spacer {
  height: 20px!important;
}

/* 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);
}

/* Section CTA Button
------------------------------*/
.cta-button {
  background: #FFBC01;
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.5px;
  padding: 14px 18px 14px 26px;
  border-radius: 16px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #ffca2c;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 188, 1, 0.4);
  color: #000;
}

/* Right Icon Container */
.cta-button .cta-icon {
  width: 44px;
  height: 44px;
  background: #0a0f2c;
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.cta-button:hover .cta-icon {
  transform: translateX(4px);
}

@media screen and (max-width: 767px) {
  .cta-button {
    font-size: 18px;
  }
}

/* Service Card CTA Button
------------------------------*/
.service-card-cta-button {
  background: transparent;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.5px;
  width: 100%;
  padding: 14px 18px 14px 26px;
  border-radius: 16px;
  text-align: center;
  align-items: center;
  justify-content: center;
  text-transform: none;
  transition: all 0.3s ease;
}

.service-card-cta-button:hover {
  background: transparent;
  transform: translateY(-2px);
  color: #ffffff;
}

/* Right Icon Container */
.service-card-cta-button .cta-icon {
  width: 44px;
  height: 44px;
  background: transparent;
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.service-card-cta-button:hover .cta-icon {
  transform: translateX(4px);
}

/* 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);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  --background-color: #070708;
  color: var(--default-color);
  background-color: transparent;
  padding: 15px 50px;
  transition: all 0.5s;
  z-index: 1000;
}

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

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

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

.header .header-cta {
  padding-right: 15px;
}

.header .header-cta .get-started-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 28px;
  border-radius: 16px;

  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;

  color: #fff;
  text-decoration: none;

  background: linear-gradient(360deg,
      rgba(255, 187, 1, 0.123),
      rgba(255, 187, 1, 0));

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.3);

  box-shadow:
    0 8px 32px rgba(31, 38, 135, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);

  transition: all 0.3s ease;
}

/* Hover effect */
.header .header-cta .get-started-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  box-shadow:
    0 12px 40px rgba(31, 38, 135, 0.35),
    inset 0 1px 1px rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

/* Active click */
.header .header-cta .get-started-btn:active {
  transform: translateY(0);
  box-shadow:
    0 6px 20px rgba(31, 38, 135, 0.25);
}

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

  .header .logo {
    max-width: 110px;
  }

  .header .header-cta {
    display: none;
  }
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .header-cta {
    order: 2;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  background-color: rgba(4, 7, 42, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  overflow: visible;
}

.scrolled .header .header-cta .get-started-btn {
  background: linear-gradient(135deg, #FFBC01, #FFBC01);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(7, 7, 8, 0.8);
  overflow: visible;
}

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

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

  .header .logo {
    width: 150px;
  }
}

/*--------------------------------------------------------------
# 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 {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 20px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: color 0.3s;
    text-decoration: none;
  }

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

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

  /* Underline */
  .navmenu li>a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: var(--nav-hover-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
  }

  .navmenu li:hover>a::after,
  .navmenu li>a.active::after,
  .navmenu li.active>a::after {
    width: 40%;
  }

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

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

  .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:hover {
    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;
    left: -100%;
    visibility: visible;
  }
}

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

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

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

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

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

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

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

  .navmenu .dropdown ul {
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
  }

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

  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    height: 100vh;
    height: 100dvh;
  }

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

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

.footer .footer-content .logo {
  line-height: 1;
}

.footer .footer-content .logo span {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

.footer .footer-content p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.footer .newsletter-form {
  margin-top: 30px;
}

.footer .newsletter-form h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.footer .newsletter-form .input-group {
  position: relative;
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .newsletter-form input[type=email] {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 14px;
}

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

.footer .newsletter-form input[type=email]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.footer .newsletter-form .btn-subscribe {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.footer .newsletter-form .btn-subscribe:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.footer .newsletter-form .btn-subscribe i {
  font-size: 16px;
}

.footer .newsletter-form .loading,
.footer .newsletter-form .error-message,
.footer .newsletter-form .sent-message {
  font-size: 13px;
  margin-top: 8px;
}

.footer h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  font-family: var(--heading-font);
}

.footer h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

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

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer .footer-links ul li:hover {
  transform: translateX(5px);
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: 0.3s;
}

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

.footer .footer-links ul a i {
  margin-right: 8px;
  font-size: 12px;
  color: var(--accent-color);
}

.footer .footer-contact h5,
.footer .footer-contact p,
.footer .footer-contact a {
  font-family: "Mona Sans", sans-serif;
  font-size: 18px;
}

.footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer .footer-contact .contact-item .contact-icon {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.footer .footer-contact .contact-item .contact-icon i {
  color: var(--accent-color);
  font-size: 16px;
}

.footer .footer-contact .contact-item .contact-info p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  line-height: 1.5;
}

.footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer .social-links a {
  width: 42px;
  height: 42px;
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none;
}

.footer .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.footer .social-links a i {
  font-size: 16px;
}

.footer .footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  background-color: color-mix(in srgb, #FFFFFF, transparent 95%);
}

.footer .footer-bottom .copyright p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .copyright p {
    text-align: center;
    margin-bottom: 15px;
  }
}

.footer .footer-bottom .footer-bottom-links {
  text-align: right;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links {
    text-align: center;
    margin-bottom: 10px;
  }
}

.footer .footer-bottom .footer-bottom-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
  margin-left: 20px;
  text-decoration: none;
}

.footer .footer-bottom .footer-bottom-links a:first-child {
  margin-left: 0;
}

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

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links a {
    margin: 0 10px;
  }
}

.footer .footer-bottom .credits {
  text-align: right;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .credits {
    text-align: center;
  }
}

.footer .footer-bottom .credits a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer .footer-bottom .credits a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 0;
  }

  .footer .footer-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer .footer-links,
  .footer .footer-contact {
    margin-bottom: 40px;
  }
}

input[type=text],
input[type=email],
textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  border-color: var(--accent-color);
}

input[type=text]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  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;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  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: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 44px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title h4 {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);

  width: 100%;
  text-align: center;
  z-index: 1;

  font-family: "integral-cf", sans-serif;
  font-size: 125px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.17;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.02)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 768px) {
  .section-title h4 {
    font-size: 50px;
  } 
  
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  font-family: "Mona Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-transform: normal;
  letter-spacing: 1px;
  color: #FFFFFF;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  min-height: 100vh;
  display: grid;
  place-content: center;
  align-items: center;
  justify-content: center;
  padding: 180px 0;
  overflow: hidden;
}

.hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url("/assets/img/bg/hero-bg.webp");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .hero-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero .hero-content {
  position: relative;
  margin-bottom: 4rem;
  z-index: 2;
}

/* Rating */
.hero .hero-content .hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  padding: 8px 16px;
  border-radius: 30px;

  /* Glass gradient */
  background: linear-gradient(360deg,
      rgba(255, 187, 1, 0.123),
      rgba(255, 187, 1, 0));

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  /* Glass borders */
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-left: 1px solid rgba(255, 255, 255, 0.35);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 8px 24px rgba(0, 0, 0, 0.25);

  font-size: 18px;
  color: #fff;
}

.hero .hero-content h1 {
  font-family: "integral-cf", sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.1;
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

@media (max-width: 992px) {
  .hero .hero-content {
      margin-top: -50px;
  }

  .hero .hero-content h1 {
    font-size: 3rem;
  }
}

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

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

.hero .hero-content h5 {
  font-family: "Mona Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 10px;
}

.hero .hero-content p {
  font-family: "Mona Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  color: #ffffff;
  line-height: 1.6;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .hero .hero-content p {
    font-size: 1.1rem;
  }
}

.hero .hero-content .hero-cta {
  background: #FFBC01;
  color: #000;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: 0.5px;
  padding: 14px 18px 14px 26px;
  border-radius: 16px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.hero .hero-content .hero-cta:hover {
  background: #ffca2c;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 188, 1, 0.4);
  color: #000;
}

/* Right Icon Container */
.hero .hero-content .hero-cta .cta-icon {
  width: 44px;
  height: 44px;
  background: #0a0f2c;
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.hero .hero-content .hero-cta:hover .cta-icon {
  transform: translateX(4px);
}

.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;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 160px 30px;
  overflow: hidden;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .clients {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 10px 30px;
    overflow: hidden;
    z-index: 1;
  }
}

@media screen and (max-width: 1024px) {
  .clients {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 10px 30px;
    overflow: hidden;
    z-index: 1;
  }
}

.clients .swiper {
  position: relative;

  /* Fade edges */
  -webkit-mask-image: linear-gradient(to left,
      transparent 5%,
      black 100%,
      black 100%,
      transparent 100%);

  mask-image: linear-gradient(to right,
      transparent 5%,
      black 20%,
      black 50%,
      transparent 100%);
}

.clients .swiper-slide {
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.clients .swiper-slide img {
  max-width: 100%;
  height: auto;
  opacity: 1;
  filter: grayscale(100%);
  transition: transform 0.3s, filter 0.3s, opacity 0.3s;
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
  transform: scale(1.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);
}

/*--------------------------------------------------------------
# What Astra Brings Section
--------------------------------------------------------------*/
.astra-brings {
  background: #ffffff;
  padding: 100px 50px;
  border-bottom-left-radius: 88px;
  border-bottom-right-radius: 88px;
}

/* Typography */
.astra-brings h2 {
  font-family: "integral-cf", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #000326;
  line-height: 1.15;
}

.astra-brings p {
  font-family: "Mona Sans", sans-serif;
  font-size: clamp(16px, 2.2vw, 28px);
  font-weight: 400;
  color: #000326;
  line-height: 1.6;
}

/* Image Card */
.astra-brings .image-card img {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  border-radius: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* CEO Image */
.astra-brings .ceo-img img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
}

/* Experience Block */
.astra-brings .experience h4 {
  font-family: "Mona Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000326;
}

.astra-brings .experience h2 {
  font-family: "integral-cf", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #000326;
}

.astra-brings .experience p {
  font-family: "Mona Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #353535;
}

/* Additional Info */
.astra-brings .additional-info p {
  font-family: "Mona Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #353535;
}

/*--------------------------------------------------------------
# Responsive Adjustments
--------------------------------------------------------------*/

/* Tablet & Below */
@media (max-width: 991px) {
  .astra-brings {
    padding: 60px 24px;
    border-bottom-left-radius: 48px;
    border-bottom-right-radius: 48px;
  }

  .astra-brings .experience {
    text-align: left !important;
    margin-left: 0 !important;
  }

  .astra-brings .image-card img {
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .astra-brings {
    margin-top: -100px;
    padding: 48px 0;
  }

  .astra-brings h2 {
    font-size: 28px;
  }

  .astra-brings p {
    font-size: 16px;
  }

  .astra-brings .experience h2 {
    font-size: 32px;
  }

  .astra-brings .ceo-img img {
    max-width: 600px;
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
  position: relative;
  margin-top: -120px;
  padding: 160px 0 100px;
  background: url("/assets/img/general/why-us-bg.webp") top center / cover no-repeat;
  color: #ffffff;
  z-index: -1;
}

.why-us .container-fluid {
  padding-left: 70px!important;
  padding-right: 70px!important;
}

/*
# Inner Width Control (container-fluid safe)
*/

.why-us-inner {
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/*
# Partner Brands Image
*/
.why-us .partner-brands img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/*
# Content Typography
*/
.why-us .content h2 {
  font-family: "integral-cf", sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #ffffff;
}

.why-us .content p {
  font-family: "Mona Sans", sans-serif;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 400;
  color: #ffffff;
}

.why-us .content h5 {
  font-family: "Mona Sans", sans-serif;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ffffff;
}

/*
# Feature List
*/
.why-us .content ul li {
  margin-bottom: 16px;
}

.why-us .content ul li .star-icon svg {
  width: 40px;
  height: 40px;
  fill: #FFBC01;
}

.why-us .content ul li p {
  font-family: "Mona Sans", sans-serif;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 500;
  margin-bottom: 0;
}

/*
# Tablet & Below (≤ 991px)
*/
@media (max-width: 991px) {
  .why-us {
    margin-top: -80px;
    padding: 120px 0 80px;
    text-align: center;
  }

  .why-us .content {
    margin-top: 0;
  }
}

/*
# Mobile Only (≤ 576px)
*/
@media (max-width: 576px) {
  .why-us {
    margin-top: 0;
    padding: 80px 0 60px;
  }

  .why-us .content ul li .d-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .why-us .content ul li .star-icon {
    margin-bottom: 6px;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding: 100px 0 100px 50px;
  background-image: url("/assets/img/general/services-bg.webp");
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
}

.services .container-fluid {
  padding-left: 50px!important;
  padding-bottom: 150px!important;
}

.services .section-title {
  position: relative;
  top: 110px;
  padding: 180px 50px 280px 50px;
}

.services .section-title h2 {
  width: 60%;
  font-family: "integral-cf", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #FFFFFF;
}

/* Tablet: <= 992px */
@media (max-width: 992px) {
  .services {
    padding: 5rem 4% 5rem 4%;
  }

  .services .container-fluid {
    padding-left: 0!important;
    padding-bottom: 8rem !important;
  }

  .services .section-title {
    top: 5rem;
    padding: 8rem 4% 12rem 4%;
  }

  .services .section-title h2 {
    width: 80%;
    font-size: 2.5rem; /* ~40px */
  }
}

/* Mobile: <= 768px */
@media (max-width: 768px) {
  .services {
    padding: 4rem 3% 4rem 3%;
    background-position: center top;
  }

  .services .container-fluid {
    padding-left: 3% !important;
    padding-bottom: 6rem !important;
  }

  .services .section-title {
    top: 3rem;
    padding: 6rem 3% 8rem 3%;
  }

  .services .section-title h2 {
    width: 100%;
    font-size: 2rem; /* ~32px */
  }
}

/* Small Mobile: <= 480px */
@media (max-width: 480px) {
  .services {
    padding: 3rem 2% 3rem 2%;
  }

  .services .container-fluid {
    padding-left: 2% !important;
    padding-bottom: 4rem !important;
  }

  .services .section-title {
    top: 2rem;
    padding: 4rem 2% 6rem 2%;
  }

  .services .section-title h2 {
    font-size: 1.75rem; /* ~28px */
  }
}

.services .services-list {
  position: relative;
  top: 180px;
}

.services .mobile-services {
  display: none;
}

/* Tablet & below */
@media (max-width: 1024px) {
  .services .services-list {
    display: none;
  }

  .services .mobile-services {
    display: block;
    padding-left: 0!important;
  }
}

/* Buttons */
.services .services-list .card-buttons .card-btn {
  color: #fff;
  border: 1px solid rgba(255, 200, 0, 0.4);
  margin-bottom: 10px;
  text-align: left;
  padding: 14px 18px;
  border-radius: 10px;
  font-family: "Mona Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  background: transparent;
  transition: 0.3s ease-in-out;
}

.services .services-list .card-buttons .card-btn.active {
  background: linear-gradient(90deg, #ffcc00, #ffb300);
  color: #000;
  border: none;
}

/* Slider */
.services .services-list .card-slider {
  position: relative;
  perspective: 1400px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.services .services-list .card-slider .card-track {
  position: relative;
  width: 100%;
  height: 900px;
  display: flex;
  justify-content: center;
}

/* Base card */
.services .services-list .card-slider .card-track .card-item {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 90%;
  max-width: 520px;
  border-radius: 24px;
  padding: 48px;

  background: linear-gradient(180deg, transparent, transparent,);
  color: white;

  opacity: 0;
  transform: scale(0.9);
  transition:
    transform 0.6s ease,
    opacity 0.6s ease;
}

/* ACTIVE (CENTER) */
.services .services-list .card-slider .card-track .card-item.active,
.services .services-list .card-slider .card-track .card-item.is-active {
  position: relative;
  opacity: 1;
  transform:
    translateX(0)
    scale(1);
  z-index: 3;
}

/* PREVIOUS (LEFT) */
.services .services-list .card-slider .card-track .card-item.is-prev {
  margin-top: 50px;
  opacity: 0.5;
  transform:
    translateX(-100%)
    scale(0.95)
    rotateY(15deg)
    skewY(20deg);
  z-index: 2;

  -webkit-mask-image: linear-gradient(to right,
    transparent 30%,
    black 100%,
    black 100%,
    transparent 100%);
}

/* NEXT (RIGHT) */
.services .services-list .card-slider .card-track .card-item.is-next {
  margin-top: 50px;
  opacity: 0.5;
  transform:
    translateX(103%)
    scale(1)
    rotateY(-15deg)
    skewY(-20deg);
  z-index: 2;

  -webkit-mask-image: linear-gradient(to left,
    transparent 30%,
    black 100%,
    black 100%,
    transparent 100%);
}

/* Mobile: only show active */
@media (max-width: 768px) {
  .services .services-list .card-slider .card-track .card-item.is-prev,
  .services .services-list .card-slider .card-track .card-item.is-next {
    opacity: 0;
    pointer-events: none;
  }
}

.services .services-list .card-slider .card-track .card-item .card {
  background:
    radial-gradient(
      circle at bottom right,
      rgba(255, 187, 1, 0.9) 0%,
      rgba(255, 187, 1, 0.4) 20%,
      rgba(255, 187, 1, 0.15) 35%,
      transparent 55%
    ),
    linear-gradient(
      180deg,
      #05061d 0%,
      #0a0c2e 40%,
      #0b0c1a 70%,
      #0a0a0a 100%
    );
  border-radius: 24px;
}

.services .services-list .card-slider .card-track .card-item .card .card-body .card-content img {
  width: 152px;
  height: 152px;
}

.services .services-list .card-slider .card-track .card-item .card .card-body .card-content .card-title {
  font-family: "integral-cf", sans-serif;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.services .services-list .card-slider .card-track .card-item .card .card-body .card-content .card-text {
  font-family: "Mona Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
}

.services .mobile-services .accordion .accordion-item {
  background-color: transparent;
  border: none;
  margin-bottom: 15px;
}

.services .mobile-services .accordion .accordion-item .accordion-header .accordion-button {
  /* background-color: color-mix(in srgb, var(--surface-color), transparent 80%); */
  background-color: transparent;
  font-family: "Mona Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  border-radius: 12px;
  border: 1px solid #ffb300;
  padding: 14px 20px;
  color: #FFFFFF;
}

.services .mobile-services .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, #ffcc00, #ffb300);
  color: #000000;
}

.services .mobile-services .accordion .accordion-item .accordion-header .accordion-button::after {
  background-color: #ffb300;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  background-position: center;
  background-size: 14px;
}

.services .mobile-services .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background-color: #ffffff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  background-position: center;
  background-size: 14px;
}

.services .mobile-services .accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}

.services .mobile-services .accordion .accordion-item .accordion-collapse .accordion-body .card {
  background:
    radial-gradient(
      circle at bottom right,
      rgba(255, 187, 1, 0.9) 0%,
      rgba(255, 187, 1, 0.4) 20%,
      rgba(255, 187, 1, 0.15) 35%,
      transparent 55%
    ),
    linear-gradient(
      180deg,
      #05061d 0%,
      #0a0c2e 40%,
      #0b0c1a 70%,
      #0a0a0a 100%
    );
  border-radius: 24px;
}

.services .mobile-services .accordion .accordion-item .accordion-collapse .accordion-body .card .card-content img {
  width: 100px;
  height: 100px;
}

.services .mobile-services .accordion .accordion-item .accordion-collapse .accordion-body .card .card-content .card-title {
  font-family: "integral-cf", sans-serif;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.services .mobile-services .accordion .accordion-item .accordion-collapse .accordion-body .card .card-content .card-text {
  font-family: "Mona Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
}

.services .mobile-services .accordion .accordion-item .accordion-collapse .accordion-body .card .service-card-cta-button .cta-icon {
  width: 36px;
  height: 36px;
  background: #ffb300;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

/*--------------------------------------------------------------
# Stellar Results Section
--------------------------------------------------------------*/
.stellar-results {
  background-image: url("/assets/img/general/stellar-results-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #fff;
  position: relative;
}

.stellar-results .container-fluid {
  padding-left: 50px!important;
  padding-right: 50px!important;
}

.stellar-title {
  font-family: "integral-cf", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.stellar-text {
  color: #d1d5ff;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.stellar-btn {
  background: #f5b400;
  color: #000;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  transition: 0.3s ease;
}

.stellar-btn:hover {
  background: #ffd24d;
  color: #000;
}

.stellar-btn-icon {
  background: #000;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* SINGLE IMAGE STYLING */

.stellar-main-image {
  max-width: 80%;
  border-radius: 28px;
}

/* MOBILE TWEAKS */

@media (max-width: 991px) {
  .stellar-main-image {
    margin-top: 2rem;
  }
}

/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/
.footer {
  background: #ffffff;
  color: #020321;
}

.footer .container-fluid {
  padding-left: 50px!important;
  padding-right: 50px!important;
}

.footer-title {
  font-family: "integral-cf", sans-serif;
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: #000326;
  font-weight: 800;
  line-height: 1.15;
}

.footer-btn {
  background: #f5b400;
  color: #000;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
}

.footer-btn-icon {
  background: #020321;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.25rem;
  font-family: "Mona Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.footer-heading hr {
  flex-grow: 1;
  border: none;
  height: 2px;
  background: #020321;
}

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

.footer-links li,
.footer-legal li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-legal a {
  text-decoration: none;
  color: #020321;
  font-family: "Mona Sans", sans-serif;
  font-size: 18px;
}

.footer-links a:hover,
.footer-legal a:hover {
  text-decoration: underline;
}

.footer-contact p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.footer-contact a {
  font-family: "Mona Sans", sans-serif;
  font-size: 18px;
  color: #020321;
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom {
  font-size: 18px;
}

.footer-logo {
  max-height: 150px;
}

/* MOBILE */

@media (max-width: 768px) {
  .footer-legal {
    margin-bottom: 1.5rem;
  }
}

.footer-bottom {
  padding: 5rem 0 0;
}

/*--------------------------------------------------------------
# Coming Soon Page
--------------------------------------------------------------*/
.coming-soon {
  min-height: 100vh;
  /* background-image:
    radial-gradient(circle at bottom right,
      rgba(245, 180, 0, 0.9) 0%,
      rgba(4, 6, 47, 0.95) 35%,
      rgba(2, 3, 33, 1) 70%),
    url("/assets/img/backgrounds/stellar-bg.webp"); */
  background-image: url("/assets/img/general/services-bg.webp");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  color: #ffffff;
}

.coming-logo {
  max-width: 180px;
}

.coming-title {
  font-family: "integral-cf", sans-serif;
  color: #FFFFFF;
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
}

.coming-text {
  color: #d1d5ff;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 520px;
}

.coming-subtext {
  color: #f5b400;
  font-weight: 600;
}

.coming-btn {
  background: #f5b400;
  color: #000;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  transition: 0.3s ease;
}

.coming-btn:hover {
  background: #ffd24d;
  color: #000;
}

.btn-icon {
  background: #020321;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.coming-image {
  max-width: 90%;
  border-radius: 28px;
}

.coming-footer {
  color: #c7cbff;
  font-size: 0.9rem;
}

/* MOBILE OPTIMIZATION */

@media (max-width: 991px) {
  .coming-text {
    max-width: 100%;
  }

  .coming-image {
    margin-top: 2rem;
  }
}

/*--------------------------------------------------------------
# Inner Hero Section
--------------------------------------------------------------*/
/* About Us */
.inner-hero {
  position: relative;
  min-height: 520px;
  padding: 150px 0 20px;
  color: #ffffff;
  background-image: url("/assets/img/bg/inner-hero-bg.webp");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  border-bottom-left-radius: 88px;
  border-bottom-right-radius: 88px;
  overflow: hidden;
}

.inner-hero .container-fluid {
  padding-left: 60px!important;
  padding-right: 60px!important;
}

/* Rating */
.hero-rating {
  font-size: 18px;
  color: #d1d5db;
}

.hero-rating .stars {
  color: #f5b400;
  font-size: 20px;
  letter-spacing: 2px;
}

.hero-rating span.first-g {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 24px;
  color: #3074F0;
}

.hero-rating span.first-o {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 18px;
  color: #E73124;
}

.hero-rating span.second-o {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 18px;
  color: #FBB101;
}

.hero-rating span.second-g {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 18px;
  color: #3074F0;
}

.hero-rating span.l {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 24px;
  color: #239A40;
}

.hero-rating span.e {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 18px;
  color: #E73124;
}

/* Title */
.hero-title {
  color: #FFFFFF;
  font-family: "integral-cf", sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero-title span {
  display: inline-block;
  color: #f5b400;
}

/* Text */
.hero-text {
  font-family: "Mona Sans", sans-serif;
  font-size: 20px;
  line-height: 1.7;
  color: #e5e7eb;
  max-width: 750px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .inner-hero {
    padding: 100px 0;
    background-position: center;
  }

  .hero-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 575px) {
  .inner-hero {
    padding: 80px 0;
    text-align: left;
  }

  .hero-text {
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# About Astra Section
--------------------------------------------------------------*/
.about-astra {
  padding: 120px 0;
  background-color: #ffffff;
}

.about-astra .container-fluid {
  padding-left: 60px!important;
  padding-right: 60px!important;
}

/* Title */
.about-title {
  font-family: "integral-cf", sans-serif;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  color: #000326;
  margin-bottom: 18px;
}

/* Yellow underline */
.title-underline {
  display: inline-block;
  width: 320px;
  height: 5px;
  background-color: #f5b400;
  border-radius: 4px;
}

/* Text */
.about-astra p {
  font-family: "Mona Sans", sans-serif;
  font-size: 20px;
  line-height: 1.8;
  color: #353535;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 991px) {
  .about-astra {
    padding: 90px 0;
  }

  .about-title {
    font-size: 2.3rem;
  }

  .about-astra p {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .about-astra {
    padding: 70px 0;
  }

  .about-title {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# Our Process Section
--------------------------------------------------------------*/
.our-process {
  padding: 0 0 60px 0;
  background-color: #ffffff;
}

.our-process .process-fluid {
  padding-left: 60px !important;
  padding-right: 60px !important;
}

/* Keep mobile safe */
@media (max-width: 575px) {
  .our-process .process-fluid {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* Section label */
.our-process .process-label {
  font-family: "Mona Sans", sans-serif;
  font-size: 24px;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: #000326;
  text-transform: uppercase;
}

/* Card */
.our-process .process-card {
  height: 100%;
  padding: 24px;
  text-align: left;
}

.our-process .process-card h4 {
  font-family: "Mona Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #000326;
  margin-bottom: 10px;
}

.our-process .process-card p {
  font-family: "Mona Sans", sans-serif;
  font-size: 20px;
  line-height: 1.6;
  color: #353535;
}

/* Icon */
.our-process .process-card .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: #fff2cc;
  color: #f5b400;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 14px;
}

/* Responsive */
@media (max-width: 991px) {
  .our-process {
    padding: 90px 0;
  }

  .process-card {
    text-align: center;
  }

  .icon-box {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 575px) {
  .our-process {
    padding: 70px 0;
  }
}

/*--------------------------------------------------------------
# The Astra Difference Section
--------------------------------------------------------------*/
.astra-difference {
  padding: 40px 0;
  background-color: transparent;
}

/* Container padding */
.astra-difference .container-fluid {
  padding-left: 60px !important;
  padding-right: 60px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Content wrapper */
.astra-difference .content {
  position: relative;
  background-color: #f6f6f6;
  padding: 0 40px;
  border-bottom: 5px solid #eeeeee;
  overflow: hidden;
}

/* Title */
.astra-difference .difference-title {
  font-family: "integral-cf", sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  color: #000326;
  margin-bottom: 0;
}

/* Text */
.astra-difference .difference-text {
  font-family: "Mona Sans", sans-serif;
  font-size: 20px;
  line-height: 1.7;
  color: #353535;
  margin-bottom: 0;
}

/* Optional vertical spacing helper */
.astra-difference .spacer {
  height: 20px;
}

/* Tablet  */
@media (max-width: 991px) {
  .astra-difference .container-fluid {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .astra-difference .content {
    padding: 20px 30px;
  }

  .astra-difference .difference-title {
    margin-bottom: 20px;
  }

  .astra-difference .difference-icon {
    left: 35%;
  }
}

/* Mobile  */
@media (max-width: 575px) {
  .astra-difference .container-fluid {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .astra-difference .content {
    padding: 30px 20px;
    text-align: center;
  }

  .astra-difference .difference-title {
    text-align: center;
  }

  .astra-difference .difference-text {
    text-align: center;
    margin-top: 15px;
  }
}

/*--------------------------------------------------------------
# Brand Positioning Section
--------------------------------------------------------------*/
.brand-positioning {
  position: relative;
  padding: 20px;
}

.brand-positioning .container-fluid {
  padding-left: 60px!important;
  padding-right: 60px!important;
  padding: 120px 0;
  border-radius: 32px;
  background-image: url("/assets/img/bg/brand-positioning-bg.webp");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  color: #ffffff;
  overflow: hidden;
}

/* Image Stack */
.brand-positioning .image-stack {
  position: relative;
}

.brand-positioning .image-stack img {
  width: 100%;
}

/* Partners */
.brand-positioning .partners img {
  max-height: 48px;
  opacity: 0.9;
  transition: 0.3s;
}

.brand-positioning .partners img:hover {
  opacity: 1;
  filter: none;
}

.brand-positioning .partners img.microsoft {
  max-height: 48px;
}

.brand-positioning .partners img.meta {
  max-height: 36px;
}

.brand-positioning .partners img.shopify {
  max-height: 42px;
}

.brand-positioning .partners img.callrail {
  max-height: 40px;
}

.brand-positioning .partners img.google {
  max-height: 48px;
}

/* Content */
.brand-positioning .content .content-title {
  font-family: "integral-cf", sans-serif;
  font-size: 44px;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.brand-positioning .content .content-lead {
  font-family: "Mona Sans", sans-serif;
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 16px;
}

.brand-positioning .content p {
  font-family: "Mona Sans", sans-serif;
  font-size: 20px;
  line-height: 1.7;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
  .brand-positioning {
    padding: 90px 0;
  }

  .brand-positioning .image-stack {
    min-height: 360px;
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .brand-positioning {
    padding: 70px 20px;
    border-radius: 24px;
  }

  .brand-positioning .image-stack .image {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta {
  padding: 50px 0;
  background-color: #ffffff;
}

/* Container padding */
.cta .container-fluid {
  padding-left: 60px !important;
  padding-right: 60px !important;
}

/* Content wrapper */
.cta .cta-content {
  position: relative;
  padding: 40px 0;
}

.cta .cta-content .left-content {
  position: relative;
}

.cta .cta-content .left-content::before {
  content: "";
  position: absolute;
  top: -85px;
  right: 170px;
  width: 500px;
  height: 500px;
  background: url("/assets/img/general/chevrons.svg") top left / contain no-repeat;
  z-index: 0;
}

.cta .cta-content .left-content > * {
  position: relative;
  z-index: 1;
}

/* Headline */
.cta .cta-title {
  font-family: "integral-cf", sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  color: #04062f;
  margin-bottom: 0;
}

/* Supporting text */
.cta .cta-text {
  font-family: "Mona Sans", sans-serif;
  font-size: 20px;
  color: #353535;
  margin-bottom: 20px;
}

/* Tablet */
@media (max-width: 991px) {
  .cta .container-fluid {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .cta .cta-text {
    margin-left: 0;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .cta .container-fluid {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .cta .cta-title,
  .cta .cta-text {
    text-align: center;
  }

  .cta .cta-content {
    text-align: center;
  }
}