/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Inter", Arial, sans-serif;
  --heading-font: "Inter", Arial, sans-serif;
  --nav-font: "Inter", Arial, 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: #273d4e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0f6fcf; /* 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: #e5eaee;  /* The default color of the main navmenu links */
  --nav-hover-color: #38bdf8; /* 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: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #1463ff; /* 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: #f1f4fa;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #000910;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #28323a;
  --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);
  letter-spacing: 0.005em;
  -webkit-user-select: none;
  user-select: none;
}

input,
textarea,
select,
[contenteditable="true"] {
  -webkit-user-select: text;
  user-select: text;
}

img {
  -webkit-user-drag: none;
  user-drag: none;
}

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);
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* 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: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, transform 0.34s ease, padding 0.35s ease;
  z-index: 997;
}

.header.header-hidden {
  transform: translateY(-110%);
}

body.mobile-nav-active .header,
.header.nav-at-top {
  transform: translateY(0);
}

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

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

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

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  font-size: 13px;
  padding: 7px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  text-transform: uppercase;
  border: 2px solid var(--contrast-color);
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
}

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

  .header .cta-btn {
    display: none !important;
  }

  .header .navmenu {
    order: 2;
  }
}

.mobile-consultation-link {
  display: none;
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(21, 34, 43, 0.85);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@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>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

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

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 13px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-transform: uppercase;
  }

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

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: color-mix(in srgb, var(--nav-color) 90%, white 15%);
  }

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

/* Mobile Navigation */
@media (max-width: 1199px) {
  .header {
    padding: 12px 0;
  }

  .header .container-fluid,
  .header .container-xl {
    flex-wrap: nowrap;
    gap: 10px;
  }

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

  .header .logo {
    min-width: 0;
    margin-right: auto !important;
  }

  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-left: auto;
    margin-right: 0;
    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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

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

  .mobile-consultation-link {
    display: block;
  }

  .mobile-consultation-link a,
  .mobile-consultation-link a:focus {
    margin: 10px 18px 4px;
    border-radius: 999px;
    background: var(--accent-color);
    color: #ffffff;
    justify-content: center;
    font-weight: 850;
    text-transform: uppercase;
    box-shadow: 0 14px 34px rgba(15, 111, 207, 0.26);
  }

  .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);
    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: fixed;
    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;
  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: 3px;
  font-size: 13px;
  line-height: 0;
  color: var(--accent-color);
}

.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: 15px;
  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: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

/* SRM Connects customizations */
.brand-lockup {
  flex-shrink: 0;
  text-decoration: none;
}

.brand-lockup-inner {
  display: flex;
  width: fit-content;
  max-width: 30vw;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border: 1px solid rgba(15, 111, 207, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 34px rgba(15, 111, 207, 0.18);
}

.brand-lockup-single {
  justify-content: center;
  gap: 0;
  padding: 6px 12px;
}

.header .brand-lockup img,
.brand-lockup img {
  display: block;
  margin: 0;
  max-height: none;
  object-fit: contain;
}

.brand-lockup-icon {
  width: 70px;
  height: 40px;
  flex: 0 0 auto;
}

.brand-lockup-separator {
  width: 1px;
  height: 30px;
  flex: 0 0 auto;
  background: linear-gradient(to bottom, transparent, rgba(15, 111, 207, 0.22), transparent);
}

.brand-lockup-text {
  width: 168px;
  height: auto;
  flex: 1 1 auto;
  min-width: 0;
}

.brand-lockup-full {
  width: auto;
  height: 60px;
  object-fit: contain;
}

.footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 8%, rgba(38, 146, 255, 0.28), transparent 30%),
    radial-gradient(circle at 88% 72%, rgba(0, 196, 255, 0.16), transparent 34%),
    linear-gradient(135deg, #061527 0%, #071f3c 46%, #03101f 100%) !important;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 78%);
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-brand-card {
  position: relative;
  display: inline-flex;
  width: min(250px, 100%);
  min-height: 202px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 18px 18px;
  overflow: hidden;
  text-decoration: none;
  text-align: center;
  border: 1px solid rgba(160, 220, 255, 0.34);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 30%, rgba(64, 174, 255, 0.18), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.055));
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.footer-logo-glow {
  position: absolute;
  top: 20px;
  width: 152px;
  height: 102px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(137, 215, 255, 0.55), rgba(50, 169, 255, 0.20) 44%, transparent 70%);
  filter: blur(8px);
  animation: footer-logo-glow 3.8s ease-in-out infinite alternate;
}

.footer-logo-badge {
  position: relative;
  z-index: 1;
  display: flex;
  width: 150px;
  height: 92px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 1), rgba(235, 248, 255, 0.92) 58%, rgba(197, 232, 255, 0.82));
  box-shadow: 0 18px 42px rgba(20, 145, 229, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.footer-logo {
  width: 124px;
  max-height: 72px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.footer-brand-name,
.footer-brand-tagline {
  position: relative;
  z-index: 1;
  display: block;
}

.footer-brand-name {
  margin-top: 8px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.footer-brand-tagline {
  color: rgba(224, 244, 255, 0.9);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  line-height: 1.55;
}

.footer-address img {
  width: 24px;
  height: 16px;
  flex: 0 0 24px;
  margin-top: 4px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.footer-address span {
  display: block;
}

.footer-social-links,
.contact-social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-social-links {
  justify-content: center;
  width: min(250px, 100%);
  margin-top: 18px;
  margin-bottom: 20px;
  margin-left: 0;
  margin-right: 0;
}

.footer-social-links a,
.contact-social-links a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  padding: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(8, 42, 93, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.footer-social-links a:hover,
.contact-social-links a:hover {
  transform: translateY(-4px) scale(1.06);
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(15, 111, 207, 0.24);
}

.footer-social-links img,
.contact-social-links img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.contact-social-section {
  padding-top: 0;
}

.contact-social-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(15, 111, 207, 0.12);
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff 0%, #f3f9ff 100%);
  padding: 30px;
  box-shadow: 0 18px 54px rgba(15, 111, 207, 0.10);
}

.contact-social-card .eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-social-card h2 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 850;
}

.contact-social-card p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 24%);
}

.hero h2 {
  max-width: 1120px;
  text-align: center;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

.typing-word {
  display: inline-block;
  color: #55c7ff;
  white-space: nowrap;
  border-right: 3px solid currentColor;
  padding-right: 6px;
  text-shadow: 0 0 22px rgba(56, 189, 248, 0.45);
}

.hero p {
  max-width: 860px;
  text-align: center;
}

.global-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 34px;
}

.global-badges span {
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 72%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--contrast-color), transparent 88%);
  color: var(--contrast-color);
  padding: 10px 18px;
  font-family: var(--nav-font);
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.consultation-btn {
  border: 0;
  border-radius: 999px;
  background: var(--accent-color);
  padding: 12px 28px;
  color: var(--contrast-color);
  font-family: var(--nav-font);
  font-weight: 700;
}

.service-click {
  color: inherit;
  display: block;
  height: 100%;
}

.service-click:hover {
  color: inherit;
}

.service-detail-wrap {
  scroll-margin-top: 90px;
}

.service-detail-card {
  scroll-margin-top: 110px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 82%);
  border-radius: 18px;
  background: var(--surface-color);
  box-shadow: 0 18px 50px color-mix(in srgb, var(--heading-color), transparent 90%);
  padding: 32px;
}

.service-detail-card + .service-detail-card {
  margin-top: 24px;
}

.service-detail-card h3 {
  color: var(--heading-color);
  margin-bottom: 18px;
}

.service-detail-card .lead {
  color: color-mix(in srgb, var(--default-color), transparent 16%);
}

.workflow-strip {
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(15, 111, 207, 0.10), rgba(56, 189, 248, 0.16));
  color: var(--heading-color);
  padding: 20px 24px;
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 800;
}

.service-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-tools li {
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 78%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--heading-color);
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 700;
}

.service-hero {
  position: relative;
  overflow: hidden;
  padding: 170px 0 92px;
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 20%, rgba(56, 189, 248, 0.30), transparent 28%),
    radial-gradient(circle at 15% 20%, rgba(15, 111, 207, 0.28), transparent 32%),
    linear-gradient(135deg, #082a5d 0%, #0f6fcf 55%, #38bdf8 100%);
}

.service-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.10) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.34;
}

.service-hero .container {
  position: relative;
  z-index: 2;
}

.service-hero h1 {
  color: #ffffff;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

.service-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.service-hero .breadcrumbs,
.service-hero .breadcrumbs a,
.service-hero .breadcrumbs li {
  color: rgba(255, 255, 255, 0.88);
}

.modern-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: auto;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--nav-font);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(14px);
}

.modern-breadcrumb a {
  color: #ffffff;
}

.modern-breadcrumb i {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.modern-breadcrumb span {
  color: rgba(255, 255, 255, 0.86);
}

.service-hero-visual {
  position: relative;
  min-height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 90px rgba(2, 31, 72, 0.32);
  backdrop-filter: blur(16px);
}

.service-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: 28px;
  opacity: 0.76;
}

.service-orbit {
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 50%;
  animation: service-orbit-spin 16s linear infinite;
}

.service-orbit:before,
.service-orbit:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 26px rgba(255, 255, 255, 0.85);
}

.service-orbit:before {
  top: 18%;
  left: 3%;
}

.service-orbit:after {
  right: 8%;
  bottom: 14%;
}

.overview-card,
.problem-solution-card,
.benefit-card,
.tech-card {
  border: 1px solid rgba(15, 111, 207, 0.14);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(235, 247, 255, 0.70));
  box-shadow: 0 22px 70px rgba(15, 111, 207, 0.10);
}

.overview-card {
  padding: 34px;
}

.overview-card .eyebrow,
.service-section-eyebrow {
  color: var(--accent-color);
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.problem-solution-card {
  height: 100%;
  padding: 30px;
  transition: 0.3s;
}

.problem-solution-card:hover,
.benefit-card:hover,
.tech-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 80px rgba(15, 111, 207, 0.16);
}

.problem-solution-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.problem-solution-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.problem-solution-card i {
  color: var(--accent-color);
  font-size: 19px;
}

.workflow-stepper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  padding: 32px 0 8px;
}

.workflow-stepper:before {
  content: "";
  position: absolute;
  top: 58px;
  left: 8%;
  right: 8%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0f6fcf, #38bdf8, #0f6fcf);
  background-size: 200% 100%;
  animation: workflow-line 3.8s ease-in-out infinite;
}

.workflow-step {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.workflow-step .step-number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f6fcf, #38bdf8);
  color: #ffffff;
  box-shadow: 0 16px 38px rgba(15, 111, 207, 0.28);
  font-weight: 900;
  transition: 0.3s;
}

.workflow-step i {
  color: var(--accent-color);
  font-size: 24px;
}

.workflow-step h4 {
  margin: 0;
  font-size: 17px;
}

.workflow-step:hover .step-number {
  transform: scale(1.08);
}

.benefit-card {
  height: 100%;
  padding: 26px;
  transition: 0.3s;
}

.benefit-card i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(15, 111, 207, 0.12), rgba(56, 189, 248, 0.20));
  color: var(--accent-color);
  font-size: 24px;
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.tech-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  color: var(--heading-color);
  font-weight: 800;
  transition: 0.3s;
}

.tech-card i {
  color: var(--accent-color);
  font-size: 19px;
}

.service-cta-panel {
  overflow: hidden;
  position: relative;
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.20), transparent 28%),
    linear-gradient(135deg, #082a5d, #0f6fcf 45%, #38bdf8, #0f6fcf);
  background-size: 220% 220%;
  color: #ffffff;
  padding: 46px;
  box-shadow: 0 28px 90px rgba(15, 111, 207, 0.22);
  animation: cta-gradient-flow 8s ease-in-out infinite;
}

.service-cta-panel h2,
.service-cta-panel p {
  color: #ffffff;
}

.cursor-dot,
.cursor-outline {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000000;
  border-radius: 50%;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 0.2s ease, width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: #0f6fcf;
  box-shadow: 0 0 18px rgba(15, 111, 207, 0.65);
}

.cursor-outline {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(15, 111, 207, 0.42);
  background: rgba(56, 189, 248, 0.06);
}

body.srm-cursor-ready .cursor-dot,
body.srm-cursor-ready .cursor-outline {
  opacity: 1;
}

body.srm-cursor-hover .cursor-outline {
  width: 52px;
  height: 52px;
  border-color: rgba(15, 111, 207, 0.78);
}

.page-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000001;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0 18%, rgba(255, 255, 255, 0.94) 18% 34%, rgba(216, 242, 255, 0.98) 49%, rgba(25, 139, 231, 0.9) 66%, transparent 66% 100%),
    radial-gradient(circle at 72% 48%, rgba(78, 190, 255, 0.28), transparent 34%);
  transform: translateX(105%);
  opacity: 0;
  will-change: transform, opacity;
}

.page-transition-overlay.is-active {
  animation: page-sweep 0.48s cubic-bezier(0.78, 0, 0.18, 1) both;
  opacity: 1;
}

body.page-transition-enabled .main,
body.page-transition-enabled #footer {
  opacity: 0;
  transform: translateY(20px);
}

body.page-transition-enabled.page-visible .main,
body.page-transition-enabled.page-visible #footer {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.46s ease, transform 0.46s ease;
}

body.page-transition-enabled.page-leaving .main,
body.page-transition-enabled.page-leaving #footer {
  opacity: 0;
  transform: translateY(18px) scale(0.995);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.srm-motion-item,
.srm-motion-image {
  opacity: 0;
  will-change: transform, opacity;
}

.srm-motion-item {
  transform: translateY(28px);
}

.srm-motion-image {
  transform: translateY(18px) scale(1.025);
}

body.motion-ready .srm-motion-item {
  animation: srm-motion-up 0.72s cubic-bezier(0.2, 0.75, 0.25, 1) both;
  animation-delay: var(--motion-delay, 0ms);
}

body.motion-ready .srm-motion-image {
  animation: srm-image-in 0.8s cubic-bezier(0.2, 0.75, 0.25, 1) both;
  animation-delay: var(--motion-delay, 120ms);
}

.word-reveal {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.22em;
}

.word-reveal span {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.48s ease, transform 0.48s ease;
  transition-delay: calc(var(--word-index, 0) * 45ms);
}

.word-reveal.is-visible span {
  opacity: 1;
  transform: translateY(0);
}

.section p,
.page-title p,
.hero p {
  animation: paragraph-soft-rise 0.72s ease both;
}

.btn,
.cta-btn,
.btn-get-started,
.btn-watch-video,
.consultation-btn,
.presence-link,
.enquiry-submit {
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease, color 0.28s ease;
}

.btn:hover,
.cta-btn:hover,
.btn-get-started:hover,
.btn-watch-video:hover,
.consultation-btn:hover,
.presence-link:hover,
.enquiry-submit:hover {
  transform: translateY(-2px) scale(1.02);
}

.section img,
.portfolio .portfolio-content img,
.service-hero-visual img {
  transition: transform 0.45s ease;
}

.section img:hover,
.service-hero-visual:hover img {
  transform: scale(1.025);
}

@keyframes paragraph-soft-rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cta-gradient-flow {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes page-sweep {
  0% {
    transform: translateX(105%);
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  100% {
    transform: translateX(-105%);
    opacity: 1;
  }
}

@keyframes srm-motion-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes srm-image-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(1.025);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes footer-logo-glow {
  from {
    opacity: 0.58;
    transform: scale(0.94);
  }

  to {
    opacity: 0.95;
    transform: scale(1.08);
  }
}

@media (hover: none), (max-width: 991px) {
  .cursor-dot,
  .cursor-outline {
    display: none;
  }
}

.blog-card {
  height: 100%;
  padding: 34px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 14px;
  background: var(--surface-color);
  box-shadow: 0 12px 34px color-mix(in srgb, var(--heading-color), transparent 92%);
  transition: 0.3s;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px color-mix(in srgb, var(--accent-color), transparent 82%);
}

.blog-card .meta {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent-color);
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-layout-section {
  background: #ffffff;
}

.blog-post-list {
  display: grid;
  gap: 34px;
}

.blog-list-post {
  overflow: hidden;
  border: 1px solid rgba(15, 111, 207, 0.10);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(8, 42, 93, 0.08);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.blog-list-post:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 111, 207, 0.22);
  box-shadow: 0 28px 78px rgba(15, 111, 207, 0.14);
}

.blog-post-image {
  overflow: hidden;
  background: #f3f7fb;
}

.blog-post-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.48s ease;
}

.blog-list-post:hover .blog-post-image img {
  transform: scale(1.05);
}

.blog-post-body {
  padding: 34px;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 32%);
  font-size: 13px;
  font-weight: 700;
}

.blog-post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.blog-post-meta i {
  color: var(--accent-color);
}

.blog-list-post h2 {
  margin: 0 0 14px;
  color: var(--heading-color);
  font-size: 34px;
  line-height: 1.18;
  font-weight: 850;
}

.blog-list-post p {
  margin: 0 0 24px;
  color: color-mix(in srgb, var(--default-color), transparent 24%);
  font-size: 16px;
  line-height: 1.75;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  background: var(--accent-color);
  color: #ffffff;
  padding: 12px 20px;
  font-weight: 800;
  box-shadow: 0 15px 34px rgba(15, 111, 207, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.blog-read-more:hover {
  background: color-mix(in srgb, var(--accent-color), #06345f 18%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(15, 111, 207, 0.28);
}

.blog-sidebar {
  position: sticky;
  top: 110px;
}

.blog-sidebar-card {
  margin-bottom: 26px;
  border: 1px solid rgba(15, 111, 207, 0.10);
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  padding: 28px;
  box-shadow: 0 18px 52px rgba(8, 42, 93, 0.08);
}

.blog-sidebar-card h3 {
  margin: 0 0 18px;
  color: var(--heading-color);
  font-size: 21px;
  font-weight: 850;
}

.blog-status-card {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(15, 111, 207, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  padding: 28px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-weight: 750;
  box-shadow: 0 18px 52px rgba(8, 42, 93, 0.08);
}

.blog-status-card.error {
  border-color: rgba(215, 61, 61, 0.20);
  background: linear-gradient(180deg, #fff8f8 0%, #ffffff 100%);
  color: #9c3131;
}

.blog-sidebar-note {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 36%);
  line-height: 1.65;
}

.blog-search-form {
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(15, 111, 207, 0.16);
  border-radius: 999px;
  background: #ffffff;
}

.blog-search-form input {
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 13px 16px;
  color: var(--default-color);
  background: transparent;
}

.blog-search-form input:focus {
  outline: none;
}

.blog-search-form button {
  flex: 0 0 50px;
  border: 0;
  background: var(--accent-color);
  color: #ffffff;
  transition: background 0.3s ease;
}

.blog-search-form button:hover {
  background: color-mix(in srgb, var(--accent-color), #06345f 18%);
}

.blog-category-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  background: #ffffff;
  padding: 12px 14px;
  color: var(--default-color);
  font-weight: 750;
  box-shadow: inset 0 0 0 1px rgba(15, 111, 207, 0.08);
  transition: color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-category-list a::after {
  content: "\F285";
  font-family: bootstrap-icons;
  color: var(--accent-color);
  font-size: 13px;
}

.blog-category-list a:hover {
  color: var(--accent-color);
  transform: translateX(4px);
  box-shadow: inset 0 0 0 1px rgba(15, 111, 207, 0.18);
}

.related-post {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(15, 111, 207, 0.10);
}

.related-post:first-of-type {
  padding-top: 0;
}

.related-post:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.related-post img {
  width: 82px;
  height: 68px;
  border-radius: 12px;
  object-fit: cover;
}

.related-post a {
  display: block;
  margin-bottom: 5px;
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.35;
}

.related-post a:hover {
  color: var(--accent-color);
}

.related-post span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 13px;
  font-weight: 700;
}

.blog-detail-article {
  overflow: hidden;
  border: 1px solid rgba(15, 111, 207, 0.10);
  border-radius: 20px;
  background: #ffffff;
  padding: 38px;
  box-shadow: 0 20px 60px rgba(8, 42, 93, 0.08);
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 32%);
  font-size: 14px;
  font-weight: 750;
}

.blog-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.blog-detail-meta i {
  color: var(--accent-color);
}

.blog-detail-article h1 {
  margin: 0 0 16px;
  color: var(--heading-color);
  font-size: 42px;
  line-height: 1.16;
  font-weight: 880;
}

.blog-detail-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.blog-detail-labels span {
  border-radius: 999px;
  background: rgba(15, 111, 207, 0.10);
  color: var(--accent-color);
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 850;
}

.blog-detail-featured {
  width: 100%;
  max-height: 480px;
  margin-bottom: 30px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(8, 42, 93, 0.10);
}

.blog-detail-content {
  color: color-mix(in srgb, var(--default-color), transparent 16%);
  font-size: 17px;
  line-height: 1.85;
}

.blog-detail-content img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
}

.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4 {
  margin-top: 30px;
  color: var(--heading-color);
  font-weight: 850;
}

.blog-detail-content a {
  color: var(--accent-color);
  font-weight: 750;
}

.blog-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(15, 111, 207, 0.10);
}

.blog-comments-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(15, 111, 207, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: var(--accent-color);
  padding: 12px 20px;
  font-weight: 800;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.blog-comments-link:hover {
  background: rgba(15, 111, 207, 0.08);
  color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15, 111, 207, 0.12);
}

@media (max-width: 991px) {
  .blog-sidebar {
    position: static;
  }

  .blog-post-image img {
    height: 280px;
  }

  .blog-list-post h2 {
    font-size: 29px;
  }

  .blog-detail-article h1 {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .blog-post-body,
  .blog-sidebar-card,
  .blog-detail-article {
    padding: 24px;
  }

  .blog-post-image img {
    height: 220px;
  }

  .blog-list-post h2 {
    font-size: 24px;
  }

  .blog-detail-article h1 {
    font-size: 28px;
  }
}

.office-card {
  height: 100%;
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 14px;
  background: var(--surface-color);
  box-shadow: 0 12px 34px color-mix(in srgb, var(--heading-color), transparent 92%);
}

.presence-card {
  position: relative;
  height: 100%;
  padding: 30px;
  border: 1px solid rgba(15, 111, 207, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.96)),
    var(--surface-color);
  box-shadow: 0 18px 54px rgba(15, 111, 207, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.presence-card:hover {
  transform: translateY(-8px);
  border-color: rgba(15, 111, 207, 0.26);
  box-shadow: 0 26px 70px rgba(15, 111, 207, 0.16);
}

.presence-flag {
  width: 56px;
  height: 38px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(15, 111, 207, 0.18);
}

.presence-card h3 {
  margin: 18px 0 12px;
}

.presence-card p {
  margin-bottom: 12px;
}

.presence-meta {
  min-height: 56px;
  color: color-mix(in srgb, var(--default-color), transparent 12%);
  font-weight: 700;
}

.presence-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(15, 111, 207, 0.10), rgba(56, 189, 248, 0.16));
  color: var(--accent-color);
  padding: 10px 16px;
  font-family: var(--nav-font);
  font-size: 14px;
  font-weight: 800;
}

.presence-link:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #0f6fcf, #38bdf8);
}

.map-placeholder {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 34px;
  border-radius: 14px;
  background:
    linear-gradient(color-mix(in srgb, var(--accent-color), transparent 92%) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--accent-color), transparent 92%) 1px, transparent 1px),
    var(--surface-color);
  background-size: 42px 42px;
  text-align: center;
}

.office-map-card {
  background: #ffffff;
  border: 1px solid rgba(15, 111, 207, 0.12);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(15, 111, 207, 0.12);
  padding: 16px;
  overflow: hidden;
}

.map-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.map-switch-btn {
  border: 1px solid rgba(15, 111, 207, 0.18);
  background: #f7fbff;
  color: #0c2f57;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  transition: all 0.24s ease;
}

.map-switch-btn:hover,
.map-switch-btn.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-color), #0b4ea2);
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(15, 111, 207, 0.22);
}

.office-map-frame {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 20px;
  overflow: hidden;
}

.cta-strip {
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-color), #0ea5e9);
  color: var(--contrast-color);
  padding: 48px;
}

.contact-enquiry-card,
.modern-enquiry-form {
  overflow: hidden;
  border: 1px solid rgba(15, 111, 207, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(15, 111, 207, 0.16);
  padding: 24px;
  backdrop-filter: blur(16px);
}

.enquiry-form-head {
  margin: -24px -24px 20px;
  padding: 22px 24px 18px;
  background: linear-gradient(135deg, rgba(15, 111, 207, 0.10), rgba(56, 189, 248, 0.20));
  text-align: center;
}

.form-logo {
  width: 210px;
  max-height: 76px;
  object-fit: contain;
  display: block;
  margin: 0 auto 10px;
  background: #ffffff;
  border-radius: 12px;
  padding: 4px 8px;
}

.modern-enquiry-form h3 {
  margin-bottom: 8px;
}

.modern-enquiry-form p {
  color: color-mix(in srgb, var(--default-color), transparent 22%);
  margin-bottom: 0;
}

.input-icon {
  position: relative;
}

.input-icon i {
  position: absolute;
  top: 50%;
  left: 15px;
  z-index: 2;
  color: var(--accent-color);
  transform: translateY(-50%);
}

.input-icon.textarea-icon i {
  top: 20px;
  transform: none;
}

.modern-enquiry-form .form-control,
.modern-enquiry-form .form-select {
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 82%);
  border-radius: 14px;
  min-height: 50px;
  padding: 11px 16px 11px 44px;
  background-color: rgba(255, 255, 255, 0.86);
}

.modern-enquiry-form textarea.form-control {
  min-height: 110px;
}

.enquiry-submit {
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f6fcf, #38bdf8);
  color: #ffffff;
  padding: 14px 24px;
  font-family: var(--nav-font);
  font-weight: 800;
  transition: 0.3s;
}

.enquiry-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(15, 111, 207, 0.26);
}

.modern-enquiry-form.is-submitting .enquiry-submit,
.enquiry-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.privacy-note {
  display: block;
  margin-top: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 28%);
  font-size: 13px;
  text-align: center;
}

.enquiry-success {
  display: none;
  margin-top: 16px;
  border: 1px solid rgba(15, 111, 207, 0.18);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(15, 111, 207, 0.08), rgba(56, 189, 248, 0.12));
  color: var(--heading-color);
  padding: 16px 18px;
  font-weight: 700;
  text-align: center;
}

.modern-enquiry-form.is-sent .enquiry-success {
  display: block;
}

.modern-enquiry-form.is-error .enquiry-success {
  border-color: rgba(185, 28, 28, 0.20);
  background: linear-gradient(135deg, rgba(254, 242, 242, 0.98), rgba(255, 255, 255, 0.96));
  color: #9f1d1d;
}

.enquiry-modal .modal-content {
  border: 0;
  border-radius: 28px;
  background: transparent;
}

.enquiry-modal .modal-dialog {
  width: 92%;
  max-width: 720px;
}

.enquiry-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  background-color: #ffffff;
  border-radius: 50%;
  opacity: 1;
}

.cta-strip h3,
.cta-strip p {
  color: var(--contrast-color);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 86px;
  z-index: 999;
  width: 62px;
  height: 62px;
  border-radius: 50px;
  background: #25d366;
  color: #ffffff;
  font-size: 28px;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.32);
  transition: all 0.4s;
}

.whatsapp-float:hover {
  color: #ffffff;
  transform: translateY(-4px) scale(1.08);
}

.contact .php-email-form .sent-message {
  display: block;
}

@media (max-width: 575px) {
  .brand-lockup-inner {
    width: fit-content;
    max-width: 54vw;
    gap: 5px;
    padding: 4px 8px;
    border-radius: 10px;
  }

  .brand-lockup-single {
    padding: 4px 8px;
  }

  .brand-lockup-icon {
    width: 48px;
    height: 28px;
  }

  .brand-lockup-separator {
    height: 23px;
  }

  .brand-lockup-text {
    width: 110px;
  }

  .brand-lockup-full {
    height: 40px;
  }

  .form-logo {
    width: 180px;
    max-height: 66px;
  }

  .footer-brand-card {
    width: min(226px, 100%);
    min-height: 190px;
    padding: 18px 14px 16px;
  }

  .footer-logo-badge {
    width: 138px;
    height: 84px;
  }

  .footer-logo {
    width: 114px;
    max-height: 66px;
  }

  .footer-brand-name {
    font-size: 18px;
  }

  .footer-brand-tagline {
    font-size: 11px;
  }

  .modern-enquiry-form {
    padding: 20px 16px;
  }

  .enquiry-form-head {
    margin: -20px -16px 18px;
    padding: 20px 16px 16px;
  }

  .hero h2 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.12;
  }

  .cta-strip {
    padding: 32px 24px;
  }

  .typing-word {
    display: block;
    margin-top: 6px;
  }

  .modern-breadcrumb {
    flex-wrap: wrap;
    border-radius: 18px;
    gap: 7px;
    font-size: 13px;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 78px;
    width: 52px;
    height: 52px;
    font-size: 24px;
  }
}

@media (max-width: 1199px) and (min-width: 576px) {
  .brand-lockup-inner {
    width: fit-content;
    max-width: 42vw;
    gap: 6px;
    padding: 5px 10px;
  }

  .brand-lockup-single {
    padding: 5px 10px;
  }

  .brand-lockup-icon {
    width: 60px;
    height: 35px;
  }

  .brand-lockup-separator {
    height: 27px;
  }

  .brand-lockup-text {
    width: 150px;
  }

  .brand-lockup-full {
    height: 52px;
  }

  .hero h2 {
    font-size: clamp(42px, 4.5vw, 48px);
  }
}

@media (max-width: 575px) {
  .brand-lockup-inner {
    max-width: 62vw;
  }

  .navmenu ul {
    inset: 64px 12px 16px 12px;
  }

  .footer-social-links,
  .contact-social-links {
    justify-content: center;
    gap: 10px;
  }

  .footer-social-links a,
  .contact-social-links a {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    padding: 6px;
  }

  .footer-social-links img,
  .contact-social-links img {
    width: 100%;
    height: 100%;
  }

  .contact-social-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .contact-social-card h2 {
    font-size: 24px;
  }

  .portfolio .portfolio-content img {
    height: 230px;
  }

  .footer .footer-top {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .page-title h1 {
    font-size: 34px;
  }

  .blog-post-image img,
  .blog-detail-featured {
    height: 210px;
  }

  .modern-enquiry-form {
    border-radius: 20px;
  }
}

@media (max-width: 380px) {
  .brand-lockup-inner {
    max-width: 66vw;
    padding: 3px 6px;
  }

  .brand-lockup-full {
    height: 34px;
  }

  .mobile-nav-toggle {
    font-size: 26px;
  }

  .navmenu a,
  .navmenu a:focus {
    font-size: 15px;
    padding: 9px 16px;
  }

  .footer-brand-card {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .hero h2 {
    font-size: clamp(34px, 5.5vw, 40px);
  }

  .service-hero {
    padding: 140px 0 70px;
  }

  .workflow-stepper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    padding-left: 22px;
  }

  .workflow-stepper:before {
    top: 32px;
    bottom: 34px;
    left: 48px;
    right: auto;
    width: 3px;
    height: auto;
  }

  .workflow-step {
    grid-template-columns: 54px 30px 1fr;
    justify-items: start;
    text-align: left;
  }

  .workflow-step h4 {
    align-self: center;
  }

  .service-cta-panel {
    padding: 34px 24px;
  }
}

.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-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  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;
}

/*--------------------------------------------------------------
# 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 {
  color: var(--default-color);
  background-color: var(--background-color);
  background-image: url("../img/page-title-bg.webp");
  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-mix(in srgb, var(--background-color), transparent 30%);
  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: 76px;
  }
}

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

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .section-title p {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}

.hero .btn-get-started {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.3s;
  text-transform: uppercase;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-weight: 400;
  color: var(--default-color);
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
}

.about .fst-italic {
  color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.stats .stats-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .img {
  border-radius: 8px;
  overflow: hidden;
}

.services .img img {
  transition: 0.6s;
}

.services .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  position: relative;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.services .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 6px solid var(--contrast-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
}

.services .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover .details h3 {
  color: var(--accent-color);
}

.services .service-item:hover .details .icon {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
}

.services .service-item:hover .details .icon i {
  color: var(--accent-color);
}

.services .service-item:hover .img img {
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  background-color: var(--surface-color);
  color: var(--heading-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 15px 20px;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.features .nav-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.features .nav-link.active h4 {
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .features .nav-link {
    padding: 15px;
  }

  .features .nav-link i {
    font-size: 24px;
  }
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 26px;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: 0.3s;
}

.services-2 .service-item .icon {
  font-size: 36px;
  line-height: 0;
  margin-right: 30px;
  color: var(--accent-color);
}

.services-2 .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services-2 .service-item .title a {
  color: var(--heading-color);
}

.services-2 .service-item .description {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
}

.services-2 .service-item:hover {
  border-color: var(--accent-color);
}

.services-2 .service-item:hover .title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

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

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 0 auto 32px auto;
  list-style: none;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(15, 111, 207, 0.14);
  border-radius: 999px;
  background: #ffffff;
  color: var(--heading-color);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 800;
  margin: 0;
  line-height: 1;
  margin-bottom: 5px;
  box-shadow: 0 12px 32px rgba(15, 111, 207, 0.08);
  transition: all 0.28s ease;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  border-color: var(--accent-color);
  background: var(--accent-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(15, 111, 207, 0.18);
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }

  .portfolio .portfolio-filters li {
    flex: 0 0 auto;
    font-size: 13px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 310px;
  border: 1px solid rgba(15, 111, 207, 0.12);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(15, 111, 207, 0.10);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.portfolio .portfolio-content img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.portfolio .portfolio-content .portfolio-info {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  opacity: 1;
  background: linear-gradient(180deg, rgba(8, 42, 93, 0.06), rgba(8, 42, 93, 0.84));
  padding: 24px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 22px;
  padding: 0;
  margin: 0;
  font-weight: 850;
  color: #ffffff;
  background: transparent;
}

.portfolio .portfolio-content .portfolio-info p {
  position: static;
  text-align: left;
  display: block;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.86);
}

.portfolio-badge {
  align-self: flex-start;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent-color);
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: static;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #ffffff;
  font-size: 20px;
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info .portfolio-action {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: 4px;
  border-radius: 999px;
  background: var(--accent-color);
  color: #ffffff;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(15, 111, 207, 0.28);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover,
.portfolio .portfolio-content .portfolio-info .portfolio-action:hover {
  background: #ffffff;
  color: var(--accent-color);
  transform: translateY(-2px);
}

.portfolio .portfolio-content:hover {
  transform: translateY(-8px);
  border-color: rgba(15, 111, 207, 0.24);
  box-shadow: 0 28px 72px rgba(15, 111, 207, 0.18);
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.08);
}

.portfolio-item {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.42s ease, transform 0.42s ease;
}

.portfolio-item.portfolio-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.isotope-layout.is-filtering .portfolio-item {
  transition-duration: 0.28s;
}

.portfolio-empty-state {
  display: none;
  margin-top: 34px;
  border: 1px solid rgba(15, 111, 207, 0.14);
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff 0%, #f4f9ff 100%);
  padding: 42px 24px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(15, 111, 207, 0.10);
}

.portfolio-empty-state.is-visible {
  display: block;
  animation: portfolioEmptyIn 0.35s ease both;
}

.portfolio-empty-state .empty-icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(15, 111, 207, 0.10);
  color: var(--accent-color);
  font-size: 26px;
}

.portfolio-empty-state h3 {
  margin-bottom: 8px;
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 850;
}

.portfolio-empty-state p {
  margin: 0 auto;
  max-width: 520px;
  color: color-mix(in srgb, var(--default-color), transparent 28%);
}

@keyframes portfolioEmptyIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .pic {
  overflow: hidden;
  margin-bottom: 50px;
}

.team .member .member-info {
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
  overflow: hidden;
  transition: 0.5s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  bottom: 0;
  left: 0;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.team .member .social a:hover {
  color: var(--accent-color);
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

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

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

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

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

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

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Deployment Overrides
--------------------------------------------------------------*/
.site-logo,
.header-logo img,
.logo img,
.header .brand-lockup img,
.brand-lockup-full {
  max-height: 46px !important;
  height: 46px !important;
  width: auto !important;
  object-fit: contain !important;
}

.navbar-brand,
.logo-box,
.header-logo,
.brand-lockup-inner,
.brand-lockup-single {
  padding: 5px 10px !important;
  border-radius: 14px !important;
  width: fit-content !important;
}

.brand-lockup-inner {
  max-width: 28vw !important;
}

.footer-social,
.footer-social-links,
.social-links {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 14px !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  margin-top: 20px !important;
  margin-bottom: 24px !important;
}

.footer-social-links {
  width: auto !important;
  min-width: 276px;
  max-width: none !important;
}

.footer .footer-about {
  min-width: 320px;
}

@media (max-width: 1200px) {
  .site-logo,
  .header-logo img,
  .logo img,
  .header .brand-lockup img,
  .brand-lockup-full {
    max-height: 42px !important;
    height: 42px !important;
  }

  .brand-lockup-inner {
    max-width: 46vw !important;
  }
}

.footer-social a,
.footer-social-links a,
.social-links a {
  flex: 0 0 auto !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
}

.footer-social img,
.footer-social-links img,
.social-links img,
.footer-social svg,
.footer-social-links svg,
.social-links svg {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  object-fit: contain !important;
  display: block !important;
}

@media (max-width: 575px) {
  .site-logo,
  .header-logo img,
  .logo img,
  .header .brand-lockup img,
  .brand-lockup-full {
    max-height: 38px !important;
    height: 38px !important;
  }

  .navbar-brand,
  .logo-box,
  .header-logo,
  .brand-lockup-inner,
  .brand-lockup-single {
    padding: 4px 8px !important;
    border-radius: 12px !important;
  }

  .brand-lockup-inner {
    max-width: 64vw !important;
  }

  .office-map-card {
    padding: 12px;
    border-radius: 20px;
  }

  .office-map-frame {
    height: 320px;
    border-radius: 18px;
  }

  .map-switcher {
    justify-content: center;
  }

  .footer-social,
  .footer-social-links,
  .social-links {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    white-space: normal !important;
  }

  .footer-social-links {
    min-width: 0;
    width: 100% !important;
  }

  .footer .footer-about {
    min-width: 0;
  }

  .footer-social a,
  .footer-social-links a,
  .social-links a {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
  }

  .footer-social img,
  .footer-social-links img,
  .social-links img,
  .footer-social svg,
  .footer-social-links svg,
  .social-links svg {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
  }
}
