: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: "Montserrat", sans-serif;
  --nav-font: "Rubik", 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: #f4f4f4;
  /* Background color for the entire website, including individual sections */
  --default-color: #505050;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #383838;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #011627;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  /* 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 {

    --at-primary-teal: #0d9488;
  --at-heading-dark: #1e293b;
  --at-body-gray: #64748b;
  --at-border-soft: #e2e8f0;
  
    --hms-emerald: #0d9488;
    --hms-slate: #1e293b;
    --hms-muted: #64748b;
    --hms-bg: #f8fafc;
    --hms-gold-border: #D1913B;
    --hms-gold-bg: #D6D2C9;

   --card-bg2: #f1f5f9;
      --text-main: #1e293b;
      --text-muted: #64748b;
      --transition-speed: 0.5s;
      
      /* Theme Base Colors */
      --color-blue: #3b82f6;
      --color-green: #10b981;
      --color-purple: #8b5cf6;

      --bg-dark: #151b2b;
      --card-bg: #1f2a3d;
      --accent: #3b82f6;

 --sol-primary: #d97706;
      --sol-bg: #ffffff;
      --sol-card-dark: #111827;
      --sol-font: 'Plus Jakarta Sans', sans-serif;
 --brand-primary: #0a2540;
      --brand-accent-blue: #3b82f6; /* Installation Blue */
      --brand-accent-green: #10b981; /* Training Green */
      --card-white: #ffffff;
      --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      
   --mb-sol-bg: #f8fafc;
      --mb-sol-radius: 20px;
      --mb-sol-dark: #0f172a;
      
      /* Theme Color Variables */
      --mb-sol-c1: #3b82f6; /* Blue */
      --mb-sol-c2: #f59e0b; /* Amber */
      --mb-sol-c3: #10b981; /* Emerald */
      --mb-sol-c4: #8b5cf6; /* Violet */
      --mb-sol-c5: #ef4444; /* Red */
      --mb-sol-c6: #06b6d4; /* Cyan */

    --hp-indigo: #6366f1;
      --hp-sky: #0ea5e9;
      --hp-bg: #fcfcfd;
      --hp-dark: #0f172a;
      --hp-slate: #475569;

--accent: #ff4d00;
      --dark: #0a0a0a;
      --card-bg: #161616;
      --glass: rgba(255, 255, 255, 0.03);
      --glass-border: rgba(255, 255, 255, 0.1);

        --luxury-gold: #c2a36b;
      --soft-white: #ffffff;
      --glass-bg: rgba(255, 255, 255, 0.8);
      --deep-text: #1a1c20;
      --slate-light: #f1f5f9;
      --transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);

  --brand-primary: #0a2540;
      --brand-accent: #d4af37;
      --bg-canvas: #f1f5f9;
      --card-white: #ffffff;
      --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    
         --editorial-dark: #000000;
      --editorial-muted: #555555;
      --editorial-accent: #facc15;
      --editorial-border: #eeeeee;

      --ui-black: #000000;
      --ui-muted: #666666;
      --ui-accent: #facc15;

  --nav-color: #000;
  /* The default color of the main navmenu links */
  --nav-hover-color: #011627;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #fff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #fff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #505050;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #011627;
  /* 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: #fcfcfc;
  --surface-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

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


/* ITV Section Specific Styling */
.itv-display-section {
    padding: 60px 0;
    /* Body Font: Roboto */
    font-family: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.itv-content-box {
    margin-bottom: 3rem;
}

.itv-main-heading {
    /* Heading Font: Montserrat */
    font-family: "Montserrat", sans-serif;
    font-size: 36px; /* Slightly adjusted for the shorter text */
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.itv-sub-text {
    /* Default Font: Roboto */
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto;
}

/* Ensure scannability on mobile */
@media (max-width: 768px) {
    .itv-main-heading {
        font-size: 28px;
    }
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background-color: #ffffff !important;
  color: var(--default-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

/* removed surface*/

/* .header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 25px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
} */

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

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

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/*--------------------------------------------------------------
# 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;
  }
.header .navmenu a,
.header .navmenu a:focus {
  color: #1e293b !important;
}
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

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

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

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

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

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

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

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

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

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

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}
#header:not(.scrolled) .mobile-nav-toggle {
  color: #000 !important;
}

/* After scroll */
#header.scrolled .mobile-nav-toggle {
  color: #000 !important;
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    
  }
@media (max-width: 1199px) {
#header .header-container,
#header .container-fluid {
position: relative !important;
display: flex !important;
justify-content: space-between !important;
align-items: center !important;
min-height: 60px !important;
width: 100% !important;
padding: 0 20px !important;
}}
#header .logo {
position: absolute !important;
left: 50% !important;
top: 50% !important;
transform: translate(-50%, -50%) !important;
margin: 0 !important;
z-index: 1000 !important;
display: flex !important;
align-items: center !important;
}

#header .logo img {
height: 48px !important;
width: auto !important;
}
.hero-bg-third {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: url('../images/Westin-Anaheim-1.jpg') !important;
background-size: cover;
background-position: center;
z-index: 1;
}
 
  .navmenu {
    padding: 0;
    z-index: 9997;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer .footer-info p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
}

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

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  font-size: 16px;
  color: var(--default-color);
  transition: all 0.3s ease;
}

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

.footer h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 8px;
}

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

.footer h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

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

.footer .footer-links ul li {
  padding: 5px 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 20%);
  display: inline-block;
  line-height: 1.2;
  transition: all 0.3s ease;
  position: relative;
}

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

.footer .footer-newsletter p {
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.footer .footer-newsletter form .position-relative {
  display: flex;
  margin-bottom: 15px;
}

.footer .footer-newsletter form input[type=email] {
  height: 44px;
  border-radius: 8px;
  padding: 10px 15px;
  width: 100%;
  color: var(--default-color);
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  font-size: 14px;
}

.footer .footer-newsletter form input[type=email]:focus {
  outline: none;
  border-color: var(--accent-color);
}

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

.footer .footer-newsletter form .btn-subscribe {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
}

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

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

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

.footer .footer-middle .payment-icons,
.footer .footer-middle .badge-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer .footer-middle .payment-icons i,
.footer .footer-middle .badge-icons i {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: color 0.3s ease;
}

.footer .footer-middle .payment-icons i:hover,
.footer .footer-middle .badge-icons i:hover {
  color: var(--accent-color);
}

.footer .footer-bottom {
  padding-top: 25px;
}

.footer .footer-bottom .copyright p {
  margin-bottom: 0;
  font-size: 13px;
}

.footer .footer-bottom .credits {
  padding-top: 5px;
}

.footer .footer-bottom .legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-end;
}

@media (max-width: 767.98px) {
  .footer .footer-bottom .legal-links {
    justify-content: center;
    margin-bottom: 15px;
  }
}
@media (min-width: 992px) {
  .footer-info {
    max-width: 280px;
  }

  .footer .footer-links {
    padding-left: 60px;
  }
}
.footer .footer-bottom .legal-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
  transition: color 0.3s ease;
}

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

@media (max-width: 991.98px) {

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

@media (max-width: 767.98px) {
  .footer .trust-badges {
    text-align: left !important;
    margin-top: 20px;
  }

  .footer .copyright,
  .footer .credits {
    text-align: center;
  }
}
 .footer .footer-links {
  padding-left: 25px;
}
@media (min-width: 992px) {
  .footer .footer-links {
    padding-left: 100px;
  }
}
.footer-logo {
  max-width: 180px;
  height: auto;
}
/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# 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 {
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .breadcrumbs {
  margin-bottom: 1.5rem;
}

.page-title .breadcrumbs .breadcrumb {
  justify-content: center;
  margin: 0;
  padding: 0;
  background: none;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
  font-size: 0.9rem;
  margin-right: 0.2rem;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .title-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

.page-title .title-wrapper h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.page-title .title-wrapper p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-title .title-wrapper h1 {
    font-size: 2rem;
  }

  .page-title .title-wrapper p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-title .title-wrapper h1 {
    font-size: 1.75rem;
  }
}

/*--------------------------------------------------------------
# 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-bottom: 30px;
  position: relative;
}

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

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 100px 0 60px;
  position: relative;
}

.hero .hero-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .hero-text-center {
  text-align: center;
  max-width: 800px;
  margin-bottom: 4rem;
}

.hero .hero-text-center .hero-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.hero .hero-text-center h1 {
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .hero .hero-text-center h1 {
    font-size: 2.25rem;
  }
}

.hero .hero-text-center p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero .hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero .hero-buttons .btn-get-started {
 background:#2563eb;
   color: #fff;
  display: flex;
  align-items: center;
  padding: 10px 36px 12px 36px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
  
}

.hero .hero-buttons .btn-get-started:hover {
   background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.hero .hero-buttons .btn-watch {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 24px;
  transition: all 0.3s ease;
}

.hero .hero-buttons .btn-watch .play-icon {
  width: 44px;
  height: 44px;
  background: var(--surface-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--default-color), transparent 85%);
  transition: all 0.3s ease;
}

.hero .hero-buttons .btn-watch .play-icon i {
  font-size: 1.25rem;
  color: var(--accent-color);
  margin-left: 3px;
}

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

.hero .hero-buttons .btn-watch:hover .play-icon {
  background: var(--accent-color);
  transform: scale(1.1);
}

.hero .hero-buttons .btn-watch:hover .play-icon i {
  color: var(--contrast-color);
}

.hero .hero-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}

@media (max-width: 992px) {
  .hero .hero-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .hero .hero-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .hero .hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 10px;
  }

  .hero .hero-buttons .btn-get-started {
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 40px;
    margin: 0 auto;
  }
}
.hero .hero-cards-grid .hero-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 15px 50px color-mix(in srgb, var(--default-color), transparent 88%);
  transition: all 0.4s ease;
}

.hero .hero-cards-grid .hero-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px color-mix(in srgb, var(--default-color), transparent 80%);
}

.hero .hero-cards-grid .hero-card:hover .card-image img {
  transform: scale(1.1);
}

.hero .hero-cards-grid .hero-card:hover .card-overlay {
  background: linear-gradient(180deg, transparent 20%, color-mix(in srgb, var(--accent-color), transparent 20%) 100%);
}

.hero .hero-cards-grid .hero-card .card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero .hero-cards-grid .hero-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero .hero-cards-grid .hero-card .card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--default-color), transparent 30%) 100%);
  transition: all 0.4s ease;
}

.hero .hero-cards-grid .hero-card .card-overlay .card-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.hero .hero-cards-grid .hero-card .card-overlay .card-icon-wrap i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.hero .hero-cards-grid .hero-card .card-overlay h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin: 0 0 0.25rem 0;
}

.hero .hero-cards-grid .hero-card .card-overlay p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin: 0;
}

@media (max-width: 992px) {
  .hero {
    padding: 80px 0 40px;
  }

  .hero .hero-text-center {
    margin-bottom: 3rem;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/


.about .intro-block {
  margin-bottom: 8px;
}

.about .tag-label {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.about .intro-heading {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 16px;
}
/* ============================= */
/* MOBILE CARD ALIGN FIX         */
/* ============================= */

@media (max-width: 768px) {

  /* Make rows tighter */
  .about .row.text-center {
    margin-bottom: 20px !important;
  }

  /* Remove uneven spacing */
  .about .col-6 {
    margin-top: 0 !important;
    padding: 8px;
  }

  /* Equal height cards */
  .feature-icon-box {
    height: 100%;
    min-height: 120px; /* keeps all same */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  /* Fix icon spacing */
  .feature-icon-box i {
    margin-bottom: 10px;
  }

  /* Fix text wrapping */
  .feature-icon-box h6 {
    font-size: 14px;
    line-height: 1.3;
    text-align: center;
  }

}
@media (max-width: 768px) {
  .about .intro-heading {
    font-size: 28px;
  }
}

.about .intro-description {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 560px;
  margin: 0 auto;
}


.features .intro-description {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 560px;
  margin: 0 auto;
 
}

.about .image-card {
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}

.about .image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about .primary-card {
  min-height: 280px;
}

.about .secondary-card {
  min-height: 280px;
}

.about .info-panel {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  padding: 32px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 92%);
}

.about .info-panel .panel-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.about .info-panel h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.about .info-panel p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  margin: 0;
}

.about .metric-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 1px 2px color-mix(in srgb, var(--default-color), transparent 95%);
  transition: all 0.2s ease;
}

.about .metric-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 90%);
}

.about .metric-card .metric-value {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--heading-font);
}

.about .metric-card .metric-label {
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-weight: 500;
}

.about .capability-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  height: 100%;
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.2s ease;
}

.about .capability-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 90%);
}

.about .capability-card .capability-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.about .capability-card .capability-body h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.about .capability-card .capability-body p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  margin: 0;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .logo-card {
  padding: 24px 16px;
  border-radius: 8px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  min-height: 88px;
}

.clients .logo-card img {
  max-height: 40px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: all 0.2s ease;
}

.clients .logo-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.clients .logo-card:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .sidebar-nav {
  position: sticky;
  top: 100px;
}

@media (max-width: 992px) {
  .features .sidebar-nav {
    position: static;
    margin-bottom: 24px;
  }
}

.features .nav-pills {
  gap: 8px;
  border: none;
}

@media (max-width: 992px) {
  .features .nav-pills {
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 8px;
  }
}

@media (max-width: 992px) {
  .features .nav-item {
    flex: 1 1 calc(50% - 4px);
    min-width: 160px;
  }
}

@media (max-width: 576px) {
  .features .nav-item {
    flex: 1 1 100%;
  }
}

.features .nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  background: var(--surface-color);
  color: var(--default-color);
  transition: all 0.2s ease;
  cursor: pointer;
  width: 100%;
}

.features .nav-link i {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.features .nav-link .link-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.features .nav-link .link-text .link-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  transition: color 0.2s ease;
}

.features .nav-link .link-text .link-desc {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: color 0.2s ease;
}

.features .nav-link:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 75%);
  background: color-mix(in srgb, var(--surface-color), var(--default-color) 3%);
}

.features .nav-link.active {
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  border-color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.features .nav-link.active i {
  color: var(--accent-color);
}

.features .nav-link.active .link-text .link-title {
  color: var(--accent-color);
}

.features .tab-content .tab-pane {
  padding: 0;
}

.features .panel-card {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
   border-radius: 12px;
  background: var(--surface-color);
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 92%);
  overflow: hidden;
}

.features .panel-image {
  height: 100%;
  min-height: 280px;
}

.features .panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .features .panel-image {
    min-height: 220px;
  }
}

.features .panel-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

@media (max-width: 768px) {
  .features .panel-body {
    padding: 24px;
  }
}

.features .panel-body .panel-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  margin-bottom: 16px;
  width: fit-content;
}

.features .panel-body h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .features .panel-body h3 {
    font-size: 20px;
  }
}

.features .panel-body p {
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 20px;
}

.features .check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.features .check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--default-color);
}

.features .check-list li i {
  font-size: 14px;
  color: var(--accent-color);
  margin-top: 2px;
  flex-shrink: 0;
}

.features .metric-row {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  margin-bottom: 24px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .features .metric-row {
    gap: 16px;
  }
}

.features .metric-row .metric {
  text-align: center;
}

.features .metric-row .metric strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1.2;
}

@media (max-width: 576px) {
  .features .metric-row .metric strong {
    font-size: 16px;
  }
}

.features .metric-row .metric span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  margin-top: 4px;
}

.features .action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  background: var(--heading-color);
  color: var(--contrast-color);
  text-decoration: none;
  transition: all 0.2s ease;
  width: fit-content;
}

.features .action-btn i {
  font-size: 14px;
  transition: transform 0.2s ease;
}

.features .action-btn:hover {
  background: color-mix(in srgb, var(--heading-color), transparent 10%);
  color: var(--contrast-color);
}

.features .action-btn:hover i {
  transform: translateX(3px);
}

.features .action-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--heading-color), transparent 80%);
}

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards .capability-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  padding: 32px;
  height: 100%;
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 94%);
  transition: all 0.2s ease;
}

.features-cards .capability-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 90%);
}

.features-cards .capability-card .card-header-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.features-cards .capability-card .icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.features-cards .capability-card .icon-wrapper i {
  font-size: 20px;
  color: var(--accent-color);
}

.features-cards .capability-card .card-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  letter-spacing: 0.02em;
}

.features-cards .capability-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.features-cards .capability-card p {
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
}

.features-cards .capability-card .check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.features-cards .capability-card .check-list li {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding: 6px 0;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.features-cards .capability-card .check-list li i {
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 8px;
  flex-shrink: 0;
}

.features-cards .capability-card .card-action {
  padding-top: 16px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.features-cards .capability-card .action-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-color);
  transition: color 0.2s ease;
}

.features-cards .capability-card .action-link i {
  font-size: 20px;
  margin-left: 2px;
  transition: transform 0.2s ease;
}

.features-cards .capability-card .action-link:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.features-cards .capability-card .action-link:hover i {
  transform: translateX(4px);
}

.features-cards .status-tile {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  padding: 20px 24px;
  height: 100%;
  box-shadow: 0 1px 2px color-mix(in srgb, var(--default-color), transparent 95%);
  transition: all 0.2s ease;
}

.features-cards .status-tile:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 90%);
}

.features-cards .status-tile .tile-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  flex-shrink: 0;
}

.features-cards .status-tile .tile-icon i {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.features-cards .status-tile .tile-content h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.features-cards .status-tile .status-badge {
  display: inline-flex;
  align-items: center;
  padding: 1px 8px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 12px;
}

.features-cards .status-tile .status-badge.badge-progress {
  background: color-mix(in srgb, #3b82f6, transparent 90%);
  color: #3b82f6;
  border: 1px solid color-mix(in srgb, #3b82f6, transparent 70%);
}

.features-cards .status-tile .status-badge.badge-live {
  background: color-mix(in srgb, #16a34a, transparent 90%);
  color: #16a34a;
  border: 1px solid color-mix(in srgb, #16a34a, transparent 70%);
}

.features-cards .status-tile .status-badge.badge-queued {
  background: color-mix(in srgb, #71717a, transparent 90%);
  color: #71717a;
  border: 1px solid color-mix(in srgb, #71717a, transparent 70%);
}

@media (max-width: 768px) {
  .features-cards .capability-card {
    padding: 24px;
  }

  .features-cards .capability-card h3 {
    font-size: 18px;
  }

  .features-cards .status-tile {
    padding: 16px 20px;
  }
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .capability-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.features-2 .capability-item {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  padding: 24px;
  transition: all 0.2s ease;
}

.features-2 .capability-item:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 93%);
}

.features-2 .capability-item.active {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
}

.features-2 .capability-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  margin-right: 20px;
  flex-shrink: 0;
}

.features-2 .capability-icon i {
  font-size: 1.25rem;
}

.features-2 .capability-body .capability-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.features-2 .capability-body h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
  letter-spacing: -0.01em;
}

.features-2 .capability-body p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.65;
  margin-bottom: 16px;
}

.features-2 .tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 12px;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  line-height: 1.6;
}

.features-2 .tag.tag-accent {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features-2 .check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.features-2 .check-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
}

.features-2 .check-list li i {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 700;
}

.features-2 .side-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.features-2 .side-image {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.features-2 .side-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.features-2 .side-quote {
  flex: 1;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.features-2 .side-quote .quote-mark {
  color: color-mix(in srgb, var(--accent-color), transparent 40%);
  font-size: 1.5rem;
  margin-bottom: 12px;
  line-height: 1;
}

.features-2 .side-quote p {
  font-size: 14px;
  line-height: 1.7;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 16px;
  flex: 1;
}

.features-2 .side-quote .divider {
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 16px;
}

.features-2 .side-quote .quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.features-2 .side-quote .quote-author .author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.features-2 .side-quote .quote-author .author-info h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.features-2 .side-quote .quote-author .author-info span {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 992px) {
  .features-2 .side-panel {
    flex-direction: row;
    height: auto;
  }

  .features-2 .side-image {
    flex: 1;
  }

  .features-2 .side-image img {
    height: 100%;
    min-height: 200px;
  }

  .features-2 .side-quote {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .features-2 .capability-item {
    padding: 20px;
  }

  .features-2 .capability-icon {
    margin-right: 16px;
  }

  .features-2 .check-list {
    flex-direction: column;
    gap: 6px;
  }

  .features-2 .side-panel {
    flex-direction: column;
  }

  .features-2 .side-image img {
    height: 200px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .media-block .preview-image {
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 4px 6px color-mix(in srgb, var(--default-color), transparent 93%);
  width: 100%;
  object-fit: cover;
}

.call-to-action .stat-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  padding: 24px;
  height: 100%;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 95%);
}

.call-to-action .stat-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 90%);
}

.call-to-action .stat-card i {
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 12px;
  display: block;
}

.call-to-action .stat-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.call-to-action .stat-card p {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  line-height: 1.6;
}

.call-to-action .info-panel {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 95%);
}

.call-to-action .info-panel .label-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  margin-bottom: 24px;
  align-self: flex-start;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.call-to-action .info-panel h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .call-to-action .info-panel h2 {
    font-size: 24px;
  }
}

.call-to-action .info-panel>p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.65;
  margin-bottom: 24px;
}

.call-to-action .checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 24px;
}

.call-to-action .checklist li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 14px;
}

.call-to-action .checklist li:last-child {
  margin-bottom: 0;
}

.call-to-action .checklist li i {
  color: var(--accent-color);
  font-size: 16px;
  margin-right: 10px;
  margin-top: 2px;
  flex-shrink: 0;
  font-weight: 700;
}

.call-to-action .checklist li span {
  font-size: 14px;
  line-height: 1.6;
  color: var(--default-color);
}

.call-to-action .action-group {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.call-to-action .btn-primary-action {
  background: transparent;
  color: var(--default-color);
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
}

.call-to-action .btn-primary-action:hover {
  background: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 50%);
  color: var(--default-color);
}

.call-to-action .btn-primary-action:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--default-color), transparent 90%);
}

.call-to-action .btn-ghost-action {
  background: transparent;
  color: var(--default-color);
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
}

.call-to-action .btn-ghost-action:hover {
  background: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 50%);
  color: var(--default-color);
}

.call-to-action .btn-ghost-action:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 992px) {
  .call-to-action .info-panel {
    margin-top: 16px;
  }
}

@media (max-width: 576px) {
  .call-to-action .info-panel {
    padding: 24px;
  }

  .call-to-action .stat-card {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .review-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.testimonials .review-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 90%);
}

.testimonials .review-card.featured {
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.testimonials .review-card.featured:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.testimonials .review-body .star-group {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonials .review-body .star-group i {
  font-size: 14px;
  color: #f59e0b;
}

.testimonials .review-body p {
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.testimonials .review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.testimonials .review-footer img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonials .reviewer-info h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}

.testimonials .reviewer-info span {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

@media (max-width: 992px) {
  .testimonials .review-card {
    padding: 20px;
  }

  .testimonials .review-body p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .testimonials .review-card {
    padding: 16px;
  }

  .testimonials .review-footer {
    margin-top: 16px;
    padding-top: 12px;
  }

  .testimonials .reviewer-info h4 {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
/* Stats Section - Clean & Consistent UI */
.stats .section-headline {
  font-family: var(--heading-font);
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 16px;
}

.stats .section-subtext {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.stats .metric-card {
  background: var(--surface-color);
   border: 1px solid #000000;  
  border-radius: 12px;
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.stats .metric-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

/* Highlighted card - only subtle accent, no black border */
.stats .metric-card.highlighted {
  border-color: #000000;   /* same black */
  background: #ffffff; 
}

.stats .metric-card.highlighted:hover {
  box-shadow: 0 12px 30px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.stats .metric-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.stats .metric-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--default-color), transparent 93%);
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 22px;
}

.stats .metric-card.highlighted .metric-icon-wrap {
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
}

.stats .metric-trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #16a34a;
  background: color-mix(in srgb, #16a34a, transparent 90%);
  padding: 4px 10px;
  border-radius: 20px;
}

.stats .metric-body {
  flex: 1;
  margin-bottom: 12px;
}

.stats .metric-value {
  font-family: var(--heading-font);
  font-size: 42px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stats .metric-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--heading-color);
  margin-top: 4px;
}

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

/* Responsive */
@media (max-width: 992px) {
  .stats .section-headline { font-size: 32px; }
}

@media (max-width: 768px) {
  .stats .metric-card { padding: 24px 20px; }
  .stats .metric-value { font-size: 36px; }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding: 80px 0;
}

.services .intro-block {
  margin-bottom: 16px;
}

.services .intro-block .tag-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.services .intro-block .block-heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--heading-color);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .services .intro-block .block-heading {
    font-size: 28px;
  }
}

.services .intro-block .block-text {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 600px;
  margin: 0 auto 32px;
}

.services .intro-block .action-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.services .intro-block .btn-primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 24px;
  background: var(--heading-color);
  color: var(--contrast-color);
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.services .intro-block .btn-primary-action:hover {
  background: color-mix(in srgb, var(--heading-color), transparent 10%);
  color: var(--contrast-color);
}

.services .intro-block .btn-primary-action:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--heading-color), transparent 80%);
}

.services .intro-block .btn-ghost-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  background: transparent;
  color: var(--default-color);
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  gap: 6px;
}

.services .intro-block .btn-ghost-action:hover {
  background: var(--surface-color);
  color: var(--accent-color);
}

.services .capability-card {
  background: var(--surface-color);
  padding: 24px;
  border-radius: 8px;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.2s ease;
}

.services .capability-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 90%);
}

.services .capability-card .card-icon {
  margin-bottom: 16px;
}

.services .capability-card .card-icon i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.services .capability-card:hover .card-icon i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.services .capability-card .card-body-content {
  flex: 1;
}

.services .capability-card .card-body-content .card-heading {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.services .capability-card .card-body-content .card-heading a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.services .capability-card .card-body-content .card-heading a:hover {
  color: var(--accent-color);
}

.services .capability-card .card-body-content .card-text {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.services .capability-card .card-foot {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.services .capability-card .card-foot .card-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--default-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.services .capability-card .card-foot .card-link i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.services .capability-card .card-foot .card-link:hover {
  color: var(--accent-color);
}

.services .capability-card .card-foot .card-link:hover i {
  transform: translateX(3px);
}

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

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  --border-light: color-mix(in srgb, var(--default-color), transparent 88%);
  --text-muted: color-mix(in srgb, var(--default-color), transparent 45%);
  --shadow-sm: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 94%);
  --shadow-md: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 90%);
}

.pricing .pricing-toggle-container .pricing-toggle {
  background: var(--surface-color);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 8px 16px;
  position: relative;
}

.pricing .pricing-toggle-container .pricing-toggle .monthly,
.pricing .pricing-toggle-container .pricing-toggle .yearly {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s ease;
  user-select: none;
}

.pricing .pricing-toggle-container .pricing-toggle .monthly.active,
.pricing .pricing-toggle-container .pricing-toggle .yearly.active {
  color: var(--heading-color);
}

.pricing .pricing-toggle-container .pricing-toggle .save-badge {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  padding: 2px 10px;
  border-radius: 12px;
  margin-left: 4px;
}

.pricing .pricing-toggle-container .pricing-toggle .switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.pricing .pricing-toggle-container .pricing-toggle .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.pricing .pricing-toggle-container .pricing-toggle .switch .slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: color-mix(in srgb, var(--default-color), transparent 75%);
  transition: background 0.2s ease;
  border-radius: 999px;
}

.pricing .pricing-toggle-container .pricing-toggle .switch .slider::before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  top: 3px;
  background-color: var(--surface-color);
  transition: transform 0.2s ease;
  border-radius: 50%;
}

.pricing .pricing-toggle-container .pricing-toggle .switch input:checked+.slider {
  background: var(--heading-color);
}

.pricing .pricing-toggle-container .pricing-toggle .switch input:checked+.slider::before {
  transform: translateX(20px);
}

.pricing .plan-card {
  background: var(--surface-color);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pricing .plan-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 75%);
  box-shadow: var(--shadow-md);
}

.pricing .plan-card.recommended {
  border-color: var(--heading-color);
  box-shadow: var(--shadow-md);
  position: relative;
}

.pricing .plan-card.recommended .recommended-tag {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--heading-color);
  color: var(--contrast-color);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

.pricing .plan-card .plan-header {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 24px;
}

.pricing .plan-card .plan-header .plan-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.pricing .plan-card .plan-header .plan-price {
  margin-bottom: 8px;
}

.pricing .plan-card .plan-header .plan-price .amount {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
  letter-spacing: -0.02em;
  display: none;
}

.pricing .plan-card .plan-header .plan-price .amount sup {
  font-size: 20px;
  top: -0.5em;
  position: relative;
  margin-right: 2px;
}

.pricing .plan-card .plan-header .plan-price .billing {
  display: none;
  font-size: 14px;
  color: var(--text-muted);
  margin-left: 4px;
}

.pricing .plan-card .plan-header .plan-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.pricing .plan-card .plan-body {
  flex: 1;
}

.pricing .plan-card .plan-body .features-heading {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.pricing .plan-card .plan-body .checklist {
  margin: 0;
}

.pricing .plan-card .plan-body .checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--default-color);
}

.pricing .plan-card .plan-body .checklist li i {
  font-size: 16px;
  color: var(--heading-color);
  flex-shrink: 0;
}

.pricing .plan-card .plan-body .checklist li.disabled {
  color: var(--text-muted);
}

.pricing .plan-card .plan-body .checklist li.disabled i {
  color: var(--text-muted);
}

.pricing .plan-card .plan-footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.pricing .plan-card .plan-footer .btn-plan-primary {
  background: var(--heading-color);
  color: var(--contrast-color);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 6px;
  border: 1px solid var(--heading-color);
  transition: background 0.2s ease;
}

.pricing .plan-card .plan-footer .btn-plan-primary:hover {
  background: color-mix(in srgb, var(--heading-color), transparent 10%);
  color: var(--contrast-color);
}

.pricing .plan-card .plan-footer .btn-plan-primary:focus {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--heading-color), transparent 80%);
}

.pricing .plan-card .plan-footer .btn-plan-secondary {
  background: transparent;
  color: var(--heading-color);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 6px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  transition: all 0.2s ease;
}

.pricing .plan-card .plan-footer .btn-plan-secondary:hover {
  background: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.pricing .plan-card .plan-footer .btn-plan-secondary:focus {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--heading-color), transparent 80%);
}

.pricing .pricing-toggle-container~.row .plan-card .price-monthly {
  display: inline;
}

.pricing .pricing-toggle-container~.row .plan-card .price-yearly {
  display: none;
}

@supports (selector(:has(*))) {
  .pricing .pricing-toggle-container:has(.switch input:checked)~.row .plan-card .price-monthly {
    display: none;
  }

  .pricing .pricing-toggle-container:has(.switch input:checked)~.row .plan-card .price-yearly {
    display: inline;
  }

  .pricing .pricing-toggle-container:has(.switch input:checked) .monthly {
    color: var(--text-muted) !important;
  }

  .pricing .pricing-toggle-container:has(.switch input:checked) .yearly {
    color: var(--heading-color) !important;
  }
}

@supports not (selector(:has(*))) {
  .pricing .pricing-toggle-container .yearly::after {
    content: " ";
  }
}

@media (max-width: 768px) {
  .pricing .plan-card .plan-header .plan-price .amount {
    font-size: 40px;
  }

  .pricing .plan-card .plan-header .plan-price .amount sup {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .pricing .plan-card {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq .faq-item {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: background 0.2s ease;
}

.faq .faq-item:first-child {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.faq .faq-item .faq-header {
  display: flex;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq .faq-item .faq-header:hover .faq-number {
  color: var(--accent-color);
}

.faq .faq-item .faq-header:hover h3 {
  color: var(--accent-color);
}

.faq .faq-item .faq-number {
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  min-width: 32px;
  transition: color 0.2s ease;
  letter-spacing: 0.05em;
}

.faq .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  flex: 1;
  transition: color 0.2s ease;
  letter-spacing: -0.01em;
}

.faq .faq-item .faq-toggle {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: transform 0.2s ease, color 0.2s ease;
  cursor: pointer;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.faq .faq-item .faq-toggle:hover {
  background: color-mix(in srgb, var(--default-color), transparent 94%);
}

.faq .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.2s ease, opacity 0.2s ease, padding 0.2s ease;
  visibility: hidden;
  opacity: 0;
  padding: 0 0 0 48px;
}

.faq .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-active .faq-header .faq-number {
  color: var(--accent-color);
}

.faq .faq-active .faq-header h3 {
  color: var(--accent-color);
}

.faq .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding: 0 0 20px 48px;
}

.faq .faq-active .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .sidebar-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.contact .sidebar-intro {
  padding-bottom: 24px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.contact .sidebar-heading {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.contact .sidebar-text {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
  line-height: 1.7;
  margin-bottom: 0;
}

.contact .contact-block {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 8px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact .contact-block:hover {
  border-color: color-mix(in srgb, var(--default-color) 20%, transparent);
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color) 5%, transparent);
}

.contact .contact-block-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: color-mix(in srgb, var(--accent-color) 10%, transparent);
}

.contact .contact-block-icon i {
  font-size: 18px;
  color: var(--accent-color);
}

.contact .contact-block-body {
  flex: 1;
  min-width: 0;
}

.contact .contact-block-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
  margin-bottom: 2px;
}

.contact .contact-block-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--default-color);
  margin-bottom: 0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact .contact-block-value:hover {
  color: var(--accent-color);
}

.contact p.contact-block-value {
  margin-bottom: 0;
}

.contact .social-links {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.contact .social-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
  margin-bottom: 12px;
}

.contact .social-icons {
  display: flex;
  gap: 8px;
}

.contact .social-icons a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid color-mix(in srgb, var(--default-color) 15%, transparent);
  color: color-mix(in srgb, var(--default-color) 60%, transparent);
  font-size: 14px;
  transition: all 0.2s ease;
}

.contact .social-icons a:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.contact .form-card {
  padding: 32px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
  border-radius: 8px;
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color) 5%, transparent);
  height: 100%;
}

.contact .form-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.contact .form-control,
.contact .form-select {
  height: 40px;
  padding: 8px 12px;
  border: 1px solid color-mix(in srgb, var(--default-color) 25%, transparent);
  border-radius: 6px;
  font-size: 14px;
  color: var(--default-color);
  background: var(--background-color);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact .form-control:focus,
.contact .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 10%, transparent);
}

.contact .form-control::placeholder,
.contact .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color) 40%, transparent);
}

.contact textarea.form-control {
  height: auto;
  min-height: 140px;
  resize: vertical;
}

.contact .form-note {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
}

.contact .btn-send {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 28px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  border: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.contact .btn-send:hover {
  background: color-mix(in srgb, var(--accent-color) 85%, black);
  color: var(--contrast-color);
}

.contact .btn-send:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 20%, transparent);
}

@media (max-width: 992px) {
  .contact .sidebar-content {
    gap: 16px;
  }

  .contact .social-links {
    margin-top: 0;
  }
}

@media (max-width: 576px) {
  .contact .form-card {
    padding: 24px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .swiper-wrapper {
  height: auto !important;
}

.service-details .service-intro {
  margin-bottom: 64px;
}

.service-details .service-intro .intro-content .badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.service-details .service-intro .intro-content .service-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.service-details .service-intro .intro-content .service-badge i {
  margin-right: 6px;
  font-size: 12px;
}

.service-details .service-intro .intro-content h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.service-details .service-intro .intro-content .lead {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 32px;
}

.service-details .service-intro .intro-content .intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.service-details .service-intro .intro-content .btn-action-primary {
  display: inline-flex;
  align-items: center;
  background: var(--heading-color);
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  border: none;
  transition: background 0.2s ease;
}

.service-details .service-intro .intro-content .btn-action-primary:hover {
  background: color-mix(in srgb, var(--heading-color), transparent 10%);
  color: #fff;
}

.service-details .service-intro .intro-content .btn-action-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--heading-color), transparent 80%);
}

.service-details .service-intro .intro-content .btn-action-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--heading-color);
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  border: none;
  transition: background 0.2s ease;
}

.service-details .service-intro .intro-content .btn-action-ghost i {
  margin-right: 8px;
}

.service-details .service-intro .intro-content .btn-action-ghost:hover {
  background: var(--surface-color);
  color: var(--heading-color);
}

.service-details .service-intro .intro-image {
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

@media (max-width: 992px) {
  .service-details .service-intro .intro-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .service-details .service-intro .intro-content h1 {
    font-size: 28px;
  }

  .service-details .service-intro .intro-content .lead {
    font-size: 16px;
  }
}

.service-details .service-tabs {
  margin-bottom: 64px;
}

.service-details .service-tabs .nav-tabs {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  margin-bottom: 32px;
  gap: 0;
}

.service-details .service-tabs .nav-tabs .nav-link {
  border: none;
  border-radius: 0;
  padding: 12px 20px;
  font-weight: 500;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  position: relative;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  background: transparent;
}

.service-details .service-tabs .nav-tabs .nav-link i {
  margin-right: 8px;
  font-size: 16px;
}

.service-details .service-tabs .nav-tabs .nav-link:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--heading-color);
  transition: width 0.2s ease;
}

.service-details .service-tabs .nav-tabs .nav-link:hover {
  color: var(--heading-color);
  background: transparent;
}

.service-details .service-tabs .nav-tabs .nav-link:hover:after {
  width: 100%;
}

.service-details .service-tabs .nav-tabs .nav-link.active {
  color: var(--heading-color);
  background: transparent;
}

.service-details .service-tabs .nav-tabs .nav-link.active:after {
  width: 100%;
}

.service-details .service-tabs .tab-content .overview-block {
  padding: 24px;
  border-radius: 8px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  height: 100%;
}

.service-details .service-tabs .tab-content .overview-block h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.service-details .service-tabs .tab-content .overview-block p {
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 12px;
}

.service-details .service-tabs .tab-content .overview-block p:last-child {
  margin-bottom: 0;
}

.service-details .service-tabs .tab-content .process-card {
  padding: 24px;
  border-radius: 8px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 1px 3px color-mix(in srgb, #000, transparent 92%);
  height: 100%;
  transition: all 0.2s ease;
}

.service-details .service-tabs .tab-content .process-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  box-shadow: 0 4px 12px color-mix(in srgb, #000, transparent 90%);
}

.service-details .service-tabs .tab-content .process-card .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}

.service-details .service-tabs .tab-content .process-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-details .service-tabs .tab-content .process-card p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.service-details .service-tabs .tab-content .benefit-card {
  padding: 24px;
  border-radius: 8px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 1px 3px color-mix(in srgb, #000, transparent 92%);
  height: 100%;
  transition: all 0.2s ease;
}

.service-details .service-tabs .tab-content .benefit-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  box-shadow: 0 4px 12px color-mix(in srgb, #000, transparent 90%);
}

.service-details .service-tabs .tab-content .benefit-card i {
  font-size: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 16px;
  display: block;
}

.service-details .service-tabs .tab-content .benefit-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-details .service-tabs .tab-content .benefit-card p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .service-details .service-tabs .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .service-details .service-tabs .nav-tabs .nav-link {
    white-space: nowrap;
    padding: 10px 16px;
    font-size: 13px;
  }
}

.service-details .service-gallery {
  margin-bottom: 64px;
}

.service-details .service-gallery .gallery-header {
  margin-bottom: 32px;
}

.service-details .service-gallery .gallery-header h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-details .service-gallery .gallery-header p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

.service-details .service-gallery .gallery-slider {
  padding-bottom: 48px;
}

.service-details .service-gallery .gallery-slider .gallery-item {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  transition: all 0.2s ease;
}

.service-details .service-gallery .gallery-slider .gallery-item:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  box-shadow: 0 4px 12px color-mix(in srgb, #000, transparent 90%);
}

.service-details .service-gallery .gallery-slider .gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.service-details .service-gallery .gallery-slider .gallery-item img {
  width: 100%;
  display: block;
}

.service-details .service-gallery .gallery-slider .gallery-item .gallery-caption {
  padding: 16px;
  background: var(--surface-color);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.service-details .service-gallery .gallery-slider .gallery-item .gallery-caption h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--heading-color);
}

.service-details .service-gallery .gallery-slider .gallery-item .gallery-caption p {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.service-details .service-gallery .gallery-slider .swiper-pagination {
  bottom: 0;
}

.service-details .service-gallery .gallery-slider .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.service-details .service-gallery .gallery-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 4px;
  background-color: var(--heading-color);
}

.service-details .bottom-grid .offerings-card {
  padding: 24px;
  border-radius: 8px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 1px 3px color-mix(in srgb, #000, transparent 92%);
  height: 100%;
}

.service-details .bottom-grid .offerings-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.service-details .bottom-grid .offerings-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-details .bottom-grid .offerings-card ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.service-details .bottom-grid .offerings-card ul li:last-child {
  margin-bottom: 0;
}

.service-details .bottom-grid .offerings-card ul li i {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-right: 12px;
}

.service-details .bottom-grid .offerings-card ul li div {
  flex: 1;
}

.service-details .bottom-grid .offerings-card ul li div h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.service-details .bottom-grid .offerings-card ul li div p {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  line-height: 1.5;
}

.service-details .bottom-grid .testimonial-card {
  padding: 24px;
  border-radius: 8px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 1px 3px color-mix(in srgb, #000, transparent 92%);
  margin-bottom: 16px;
}

.service-details .bottom-grid .testimonial-card .rating-stars {
  margin-bottom: 16px;
}

.service-details .bottom-grid .testimonial-card .rating-stars i {
  color: #f59e0b;
  font-size: 14px;
  margin-right: 2px;
}

.service-details .bottom-grid .testimonial-card blockquote {
  font-size: 14px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  font-style: italic;
  margin: 0 0 16px;
  padding: 0;
  border: none;
}

.service-details .bottom-grid .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.service-details .bottom-grid .testimonial-card .testimonial-author .author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
}

.service-details .bottom-grid .testimonial-card .testimonial-author h5 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 2px;
}

.service-details .bottom-grid .testimonial-card .testimonial-author span {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.service-details .bottom-grid .contact-card {
  padding: 24px;
  border-radius: 8px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  box-shadow: 0 1px 3px color-mix(in srgb, #000, transparent 92%);
}

.service-details .bottom-grid .contact-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.service-details .bottom-grid .contact-card .contact-row {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.service-details .bottom-grid .contact-card .contact-row:last-child {
  margin-bottom: 0;
}

.service-details .bottom-grid .contact-card .contact-row i {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-right: 12px;
}

.service-details .bottom-grid .contact-card .contact-row div span {
  display: block;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.service-details .bottom-grid .contact-card .contact-row div p {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
}

.service-details .bottom-grid .cta-card {
  padding: 32px 24px;
  border-radius: 8px;
  background: var(--heading-color);
  color: var(--contrast-color);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.service-details .bottom-grid .cta-card .cta-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-details .bottom-grid .cta-card .cta-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

.service-details .bottom-grid .cta-card h3 {
  color: var(--contrast-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-details .bottom-grid .cta-card p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 24px;
}

.service-details .bottom-grid .cta-card .cta-btn {
  display: inline-block;
  background: var(--contrast-color);
  color: var(--heading-color);
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
}

.service-details .bottom-grid .cta-card .cta-btn:hover {
  opacity: 0.9;
  color: var(--heading-color);
}

.service-details .bottom-grid .cta-card .guarantee {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  opacity: 0.7;
}

.service-details .bottom-grid .cta-card .guarantee i {
  margin-right: 4px;
}

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

/*New*/
/* .hero {
  position: relative;
  background: linear-gradient(rgba(10, 25, 47, 0.75), rgba(10, 25, 47, 0.85)),
              url('https://res.cloudinary.com/dql3qqgbb/image/upload/v1775739073/hotel_bg_image/SKY%20HIGH-hotel_bg_image-1775739067136.png') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
} */

.hero {
  position: relative;
  background:
    url('../test/SDSAC-9598-HU8000F-B2B-HP-KV-DT-1440x640.jpg') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

 

.hero-title,
.hero-desc {
  color: #fff !important;
}

.hero-text-center {
  text-align: left !important;
  align-items: flex-start !important;
  backdrop-filter: none !important;
  /* removes glass effect if still there */
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0;
    margin-left: -40px;
}
.hero-title {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-desc {
    font-size: 16px;
  }
}
.hero-desc {
 color: #fff !important;
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
}
 
.feature-icon-box {
  text-align: center;
  padding: 30px 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #eef2f7;
  transition: all 0.3s ease;
  height: 100%;
}
#header .logo {
display: flex;
align-items: center;
text-decoration: none;
margin-right: auto; /* Aligns left organically on desktop */
}
#header.sticky-top {
position: sticky;
top: 0;
z-index: 1000;
}
#header .sitename {
font-size: 24px;
font-weight: 800;
letter-spacing: 1px;
color: var(--primary-color);
margin: 0;
}
/* Hover */
.feature-icon-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* ICON (Perfect Center Fix) */
.feature-icon-box i {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px auto;  /* CENTER FIX */
  
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;
  border-radius: 50%;

  background: #eff6ff;  /* soft blue bg */
  color: #2563eb;
}

/* Title */
.feature-icon-box h6 {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

/*neww*/

/* Navbar Base */
#header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  background: transparent;
  transition: all 0.3s ease;
}

/* After Scroll */
#header.scrolled {
    background-color: #ffffff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
   padding: 8px 0; 
}

/* Default (on hero) */
#header:not(.scrolled) .navmenu a {
  color: #000 !important;
}

@media (max-width: 1199px) {

  /* Force black ALWAYS in mobile */
  #header .navmenu a,
  #header:not(.scrolled) .navmenu a {
    color: #000 !important;
  }

}

/* After scroll */
#header.scrolled .navmenu a {
  color: #000 !important;

}
/* 
#header img {
  height: 50px;
  width: auto;
} */
/* Force dropdown links always black */
#header .navmenu .dropdown ul li a {
  color: #000 !important;
}

/* Also ensure hover state stays black (optional but safe) */
#header .navmenu .dropdown ul li a:hover {
  color: #000 !important;
}
/* Remove circle background from play button */
.hero .hero-buttons .btn-watch .play-icon {
  background: transparent;
  box-shadow: none;
}


.hero .hero-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero .hero-text-left {
  text-align: left;
  max-width: 600px;
}

.hero .hero-buttons {
  justify-content: flex-start;
}

#header img {
  height: 70px;
  width: 100px;
  object-fit: contain;
}

.logo2 {
  height: 70px;
  width: 100px;
  object-fit: contain;
}

#header {
   padding: 12px 0; 
  /* adds vertical space */
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;          /* smaller hero on mobile */
    align-items: center;       /* vertical center */
  }
  .hero-wrapper {
    display: flex;
    justify-content: center;
  }
    .hero-text-center {
    text-align: center !important;
    margin-left: 0;            /* remove negative shift */
    width: 100%;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-desc {
    font-size: 16px;
    max-width: 100%;
  }

}
 
/* ============================= */
/* MOBILE HEADER HEIGHT          */
/* ============================= */

@media (max-width: 768px) {

  #header {
    padding: 10px 0;
  }

  #header.scrolled {
    padding: 6px 0;  /* super compact */
  }

  /* Reduce logo size slightly */
  #header img,
  .logo2 {
    height: 50px;
    width: auto;
  }

}

.social-links h5 {
  margin-bottom: 10px;
  color: #000;
}

.social-links a {
  font-size: 24px;
  color: #333;
  margin-right: 15px;
  transition: all 0.3s ease;
}

/* Facebook */
.social-links a.facebook:hover {
  color: #1877F2;
}

/* Instagram */
.social-links a.instagram:hover {
  color: #E4405F;
}

/* LinkedIn */
.social-links a.linkedin:hover {
  color: #0A66C2;
}

/* WhatsApp */
.social-links a.whatsapp:hover {
  color: #25D366;
}

/* YouTube */
.social-links a.youtube:hover {
  color: #FF0000;
}

/* X (Twitter) */
.social-links a.twitter:hover {
  color: #000000;
}
/* .custom-logo {
  height: 50px !important;
  width: auto !important;
  max-height: none !important;
  object-fit: contain;
} */

#header {
  padding: 10px 0;
}

@media (max-width: 768px) {
  .custom-logo {
    height: 50px !important;
  }
}


/*New About Us*/
/* About Modern Section */
.about-modern {
  padding: 100px 0;
}

/* Title */
.about-title {
  font-size: 36px;
  font-weight: 700;
 
  color: #111827;
}

/* Image */
.about-img-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.about-img-wrapper img {
  width: 100%;
  height: 450px;
  border-radius: 16px;
  transition: 0.4s ease;
}

/* Subtle hover zoom */
.about-img-wrapper:hover img {
  transform: scale(1.05);
}

/* Content */
.about-content {
  padding-left: 40px;
   margin-top: 28px
}

.about-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #111827;
}

.about-content p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 991px) {
  .about-content {
    padding-left: 0;
    margin-top: 30px;
    text-align: center;
  }
}


#about-modern {
  padding-top: 10px;      /* reduce top space */
}


.carousel-fade .carousel-item {
  transition: opacity 1s ease-in-out;
}
#atithya-banner-section {
  width: 100%;
  overflow: hidden;
}
/* ==========================
   FULL SCREEN HERO SLIDER
========================== */

#atithya-banner-section {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  overflow: hidden;
}

.atithya-banner-slider,
.atithya-banner-slider .carousel-inner,
.atithya-banner-slider .carousel-item {
  height: 90vh;
}

.atithya-banner-slider .carousel-item img {
  width: 100%;
  height: 100vh;
  object-fit: cover; /* Fill screen without distortion */
  animation: atithyaZoom 10s ease-in-out infinite alternate;
}

/* Dark Overlay */
#atithya-banner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 2;
  pointer-events: none;
}

@keyframes atithyaZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}


/* SERVICE HERO (NO CONFLICT) */
.service-hero {
  position: relative;
  background: url('../images/hotel-tv.jpg') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* TEXT */
.service-hero .hero-title,
.service-hero .hero-desc {
  color: #fff !important;
   text-align: center;
}

/* TEXT ALIGN */
.service-hero .hero-text-center {
  text-align: left !important;
  align-items: flex-start !important;
  background: transparent !important;
  padding: 0 !important;
  margin-left: -40px;
}

/* TITLE */
.service-hero .hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
 
}

/* DESC */
.service-hero .hero-desc {
  font-size: 18px;
  max-width: 600px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .service-hero {
    min-height: 70vh;
  }

  .service-hero .hero-text-center {
    text-align: center !important;
    margin-left: 0;
  }

  .service-hero .hero-title {
    font-size: 32px;
   
  }
}

/* SERVICE HERO VIDEO */
.service-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* VIDEO */
.service-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* OVERLAY */
.service-hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 2;
}

/* CONTENT */
.service-hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
}

/* TEXT ALIGN */
.service-hero .hero-text-center {
   text-align: center !important;
  max-width: 600px;
}

/* MOBILE */
@media (max-width: 768px) {
  .service-hero {
    min-height: 70vh;
  }

  .service-hero .hero-text-center {
    text-align: center;
  }
}

/* CENTER TEXT ONLY FOR SERVICE HERO */
.service-hero .hero-text-center {
  text-align: center !important;
  margin: 0 auto !important;
  align-items: center !important;
}

/* Center content container */
.service-hero-content {
  text-align: center;
}

/* Optional: center button */
.service-hero .hero-text-center .mt-4 {
  display: flex;
  justify-content: center;
}



/* SERVICE 2 HERO */
.service2-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* IMAGE FULLSCREEN */
.service2-hero-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

/* OVERLAY */
.service2-hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  top: 0;
  left: 0;
  z-index: 2;
}

/* CONTENT */
.service2-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
}

/* TEXT */
.service2-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.service2-desc {
  font-size: 18px;
  line-height: 1.6;
}

/* BUTTON CENTER */
.service2-text-center .mt-4 {
  display: flex;
  justify-content: center;
}

/* MOBILE */
@media (max-width: 768px) {
  .service2-hero {
    min-height: 70vh;
  }

  .service2-title {
    font-size: 32px;
  }

  .service2-desc {
    font-size: 16px;
  }
}

.about-modern.section {
  padding: 80px 0;
}




/* CRM SECTION */
.about-modern {
  padding: 80px 0;
}

.about-img-wrapper {
  overflow: hidden;
  border-radius: 16px;
}

.about-img-wrapper img {
  width: 100%;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

/* Smooth hover zoom */
.about-img-wrapper:hover img {
  transform: scale(1.05);
}

/* Content */
.about-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111827;
}

.about-content p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Feature icons */
.about-content .row i {
  font-size: 18px;
}

/* Feature items spacing */
.about-content .row span {
  font-size: 15px;
  color: #374151;
}

/* Section spacing */
.about-modern.section {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Alternate background */
.light-background {
  background: #f9fafb;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .about-modern {
    padding: 50px 0;
  }

  .about-content {
    text-align: center;
    margin-top: 30px;
  }

  .about-content .row {
    justify-content: center;
  }
}

/* Soft card feel for content */
.about-content {
  padding: 10px 10px;
}

/* Icon color enhancement */
.text-primary {
  color: #2563eb !important;
}

/* Smooth section fade effect */
.about-modern {
  transition: all 0.3s ease;
}




#about{
  padding-bottom: 14px;      /* reduce top space */
}

#about-modern2{
  padding-top: 10px;
}



/* SECTION */
.tv-ui-showcase {
  padding: 80px 0;
  background: #f8f9fb;
}

/* SCROLL WRAPPER */
.tv-scroll-wrapper {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

/* HIDE SCROLLBAR */
.tv-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

/* CARD STYLE */
.tv-card {
  min-width: 320px;
  background: #fff;
  border-radius: 16px;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  scroll-snap-align: start;
  transition: 0.3s;
}

/* IMAGE */
.tv-card img {
  width: 100%;
  border-radius: 12px;
  height: 200px;
  object-fit: cover;
}

/* HOVER EFFECT */
.tv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* DESKTOP CENTERING */
@media (min-width: 992px) {
  .tv-scroll-wrapper {
    justify-content: center;
    overflow: hidden;
  }
}
 /* ============================= */
/* FEATURE CARD - REDESIGN       */
/* ============================= */

.hotel-feature-card {
  border-radius: 18px;
  padding: 22px;
  height: 100%;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* === Soft Gradient Backgrounds === */
.hotel-feature-card:nth-of-type(1) {
  background: linear-gradient(135deg, #eff6ff, #ffffff);
}

.hotel-feature-card:nth-of-type(2) {
  background: linear-gradient(135deg, #fff7ed, #ffffff);
}

.hotel-feature-card:nth-of-type(3) {
  background: linear-gradient(135deg, #f0fdf4, #ffffff);
}

.hotel-feature-card:nth-of-type(4) {
  background: linear-gradient(135deg, #f3e8ff, #ffffff);
}

/* === Hover Effect === */
.hotel-feature-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* ============================= */
/* HEADER                        */
/* ============================= */

.feature-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

/* ICON - COLORFUL + GRADIENT */
.feature-header i {
  font-size: 30px;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* Unique icon gradients */
.hotel-feature-card:nth-of-type(1) i {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.hotel-feature-card:nth-of-type(2) i {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.hotel-feature-card:nth-of-type(3) i {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.hotel-feature-card:nth-of-type(4) i {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
}

/* TITLE */
.feature-header h3 {
  font-size: 1.25rem;
  margin: 0;
  color: #1f2937;
  font-weight: 600;
}

/* SUBTITLE (NEW) */
.feature-subtitle {
  font-size: 0.9rem;
  color: #6b7280;
  margin-left: 68px;
  margin-bottom: 14px;
}

/* ============================= */
/* IMAGE                        */
/* ============================= */

.feature-image {
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
}

/* Subtle animation */
.feature-image img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.5s ease;
}

/* Zoom on hover */
.hotel-feature-card:hover .feature-image img {
  transform: scale(1.08);
}

/* ============================= */
/* DESCRIPTION                   */
/* ============================= */

.feature-description p {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

/* ============================= */
/* LINK                          */
/* ============================= */

.feature-link {
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: #2563eb;
  transition: all 0.2s ease;
}

.feature-link:hover {
  transform: translateX(4px);
  text-decoration: none;
}

.hotel-feature-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.15), transparent);
  top: -40px;
  right: -40px;
  z-index: 0;
}

.hotel-feature-card {
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ============================= */
/* MAIN LOGO (NO CONFLICT)       */
/* ============================= */

.main-logo {
  height: 85px;        /* adjust size here */
  width: auto;
  object-fit: contain;
  display: block;
}

/* Header alignment fix (optional) */
.header .logo {
  display: flex;
  align-items: center;
}
 
@media (max-width: 768px) {
  .main-logo {
    height: 60px;
  }
}
 /* ============================= */
/* HERO CAROUSEL BACKGROUND      */
/* ============================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Slides */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* Active slide */
.hero-slide.active {
  opacity: 1;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2;
}

/* Content above */
.hero .container {
  position: relative;
  z-index: 3;
}
 
/* HERO CAROUSEL        

.hero-slider-new {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
 
.hero-slider-new::before,
.hero-slider-new::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease;
}
 
.hero-slider-new::before {
  background-image: url('../images/feature9.webp');
  animation: slide1 15s infinite;
}
 
.hero-slider-new::after {
  background-image: url('../images/iptv-banner.webp');
  animation: slide2 15s infinite;
}
 
.hero-slider-new .hero-bg-third {
  position: absolute;
  inset: 0;
  background: url('../images/bg.png') center/cover no-repeat;
  animation: slide3 15s infinite;
}
 
.hero-slider-new .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}
 
.hero-slider-new .container {
  position: relative;
  z-index: 2;
}
 
@keyframes slide1 {
  0%, 33% { opacity: 1; }
  34%, 100% { opacity: 0; }
}

@keyframes slide2 {
  0%, 33% { opacity: 0; }
  34%, 66% { opacity: 1; }
  67%, 100% { opacity: 0; }
}

@keyframes slide3 {
  0%, 66% { opacity: 0; }
  67%, 100% { opacity: 1; }
}

     */


     /* HERO NEW */
.contact-hero-new {
  position: relative;
  height: 220px; /* reduced height */
  background: url('../images/contact-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

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

.contact-title {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  margin-top: 5px;
}

.breadcrumb-text {
  color: #ddd;
  font-size: 14px;
}

/* FLEX BOX FOR MESSAGE + IMAGE */
.message-flex-box {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

/* TEXTAREA TAKES MORE SPACE */
.message-flex-box .textarea-new {
  flex: 2;
  height: 120px;
}

/* IMAGE RIGHT SIDE */
.message-image-box {
  flex: 1;
  background: url('../images/contact-side.jpg') center/cover no-repeat;
  border-radius: 6px;
  min-height: 120px;
}

@media (max-width: 768px) {
  .message-flex-box {
    flex-direction: column;
  }

  .message-image-box {
    height: 180px;
  }
}



/* ===============================
   CONTACT HERO (SMALL & CLEAN)
=================================*/
.contact-hero-new {
  position: relative;
    height: 300px; 
  background: url('../images/Notifications\ &\ Alerts.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

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

.contact-title {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  margin-top: 5px;
}

.breadcrumb-text {
  color: #ddd;
  font-size: 14px;
}


/* ===============================
   CONTACT SECTION
=================================*/
.contact-section-new {
  padding: 60px 0;
  background: #fff;
}

/* FORM BOX */
.contact-form-box {
  padding-right: 30px;
}

/* INPUT FIELDS */
.form-input-new {
  width: 100%;
  padding: 14px 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  background: #f7f7f7;
  outline: none;
  transition: 0.3s;
}

.form-input-new:focus {
  border-color: #5c6bc0;
  background: #fff;
}

/* TEXTAREA */
.textarea-new {
  height: 120px;
  resize: none;
}


/* ===============================
   MESSAGE + IMAGE SECTION
=================================*/
.message-flex-box {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

/* TEXTAREA SIDE */
.message-flex-box .textarea-new {
  flex: 2;
}

 



/* ===============================
   SUBMIT BUTTON
=================================*/
.contact-btn-new {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 6px;
  background: #5c6bc0;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
  cursor: pointer;
}

.contact-btn-new:hover {
  background: #3f51b5;
}


/* ===============================
   RIGHT SIDE IMAGE (OPTIONAL)
=================================*/
.contact-image-box {
  width: 100%;
  height: 100%;
  min-height: 350px;
  background: url('../images/ivancik.jpg') center/cover no-repeat;
  border-radius: 8px;
}


/* ===============================
   RESPONSIVE DESIGN
=================================*/
@media (max-width: 991px) {

  .contact-form-box {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .contact-image-box {
    min-height: 250px;
  }

  .contact-hero-new {
    height: 180px;
  }

  .contact-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {

  .message-flex-box {
    flex-direction: column;
  }

  .message-image-box {
    height: 180px;
  }

  .form-input-new {
    font-size: 13px;
    padding: 12px;
  }

  .contact-btn-new {
    padding: 12px;
  }
}
  

 /* --- Section Header --- */
    .hp-main-heading {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--hp-dark);
      letter-spacing: -1px;
      margin-bottom: 1rem;
    }

    /* --- Feature Card Base --- */
    .hp-service-item {
      background: #ffffff;
      border: 1px solid #d1d5db; 
      border-radius: 20px;
      padding: 45px 35px;
      text-align: left;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      height: 100%;
      display: flex;
      flex-direction: column;
      position: relative;
    }

    /* Subtle gradient background on hover */
    .hp-service-item::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(14, 165, 233, 0.03) 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 0;
    }

    /* --- Hover State --- */
    .hp-service-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 40px 80px -15px rgba(99, 102, 241, 0.12);
    }

    /* Hover specific border color logic */
    .hp-service-item.hp-node-1:hover { border-color: #4338ca; }
    .hp-service-item.hp-node-2:hover { border-color: #0369a1; }
    .hp-service-item.hp-node-3:hover { border-color: #15803d; }
    .hp-service-item.hp-node-4:hover { border-color: #b91c1c; }

    .hp-service-item:hover::after {
      opacity: 1;
    }

    /* --- Icon Wrapper --- */
    .hp-visual-box {
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 16px;
      margin-bottom: 30px;
      font-size: 28px;
      position: relative;
      z-index: 1;
      transition: all 0.4s ease;
    }

    /* Specific Icon Colors */
    .hp-theme-blue { background: #e0e7ff; color: #4338ca; }
    .hp-theme-sky { background: #e0f2fe; color: #0369a1; }
    .hp-theme-green { background: #f0fdf4; color: #15803d; }
    .hp-theme-red { background: #fef2f2; color: #b91c1c; }

    .hp-service-item:hover .hp-visual-box {
      transform: scale(1.1) rotate(8deg);
      border-radius: 50%;
    }

    /* --- Content --- */
    .hp-service-item h6 {
      font-size: 20px;
      font-weight: 700;
      color: var(--hp-dark);
      margin-bottom: 15px;
      position: relative;
      z-index: 1;
    }

    .hp-service-item .hp-description {
      font-size: 15px;
      color: var(--hp-slate);
      line-height: 1.7;
      margin-bottom: 0;
      position: relative;
      z-index: 1;
    }

    /* Top Accent Line */
    .hp-top-accent {
      position: absolute;
      top: 0;
      left: 35px;
      width: 40px;
      height: 3px;
      background: var(--hp-indigo);
      border-radius: 0 0 4px 4px;
      opacity: 0.3;
      transition: width 0.4s ease, opacity 0.4s ease;
    }

    .hp-service-item:hover .hp-top-accent {
      width: 80px;
      opacity: 1;
    }


    
    #elite-features-showcase {
      padding: 120px 0;
      position: relative;
    }

    /* --- Creative Heading --- */
    .showcase-header {
      margin-bottom: 80px;
    }

    .pre-title {
      text-transform: uppercase;
      letter-spacing: 4px;
      font-size: 13px;
      font-weight: 700;
      color: var(--luxury-gold);
      display: block;
      margin-bottom: 15px;
    }

    .main-title {
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 25px;
    }

    /* --- Innovative Split Card --- */
    .elite-card {
      background: var(--soft-white);
      border-radius: 32px;
      overflow: hidden;
      border: 1px solid rgba(0,0,0,0.05);
      transition: var(--transition);
      cursor: pointer;
      display: flex;
      flex-direction: column;
      height: 100%;
      box-shadow: 0 10px 30px -10px rgba(0,0,0,0.04);
      position: relative;
    }

    .card-visual-frame {
      height: 280px;
      overflow: hidden;
      position: relative;
      background: var(--slate-light);
    }

    .card-visual-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
      transform: scale(1.02);
    }

    .card-badge {
      position: absolute;
      top: 25px;
      left: 25px;
      background: var(--soft-white);
      padding: 8px 16px;
      border-radius: 100px;
      font-size: 12px;
      font-weight: 700;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      z-index: 5;
    }

    .card-body-wrap {
      padding: 40px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      background: white;
    }

    .card-body-wrap h3 {
      font-weight: 700;
      font-size: 24px;
      margin-bottom: 15px;
    }

    .card-body-wrap p {
      color: #64748b;
      line-height: 1.7;
      margin-bottom: 30px;
    }

    .card-action-btn {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--slate-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      transition: var(--transition);
      align-self: flex-end;
    }

    /* --- Hover Animations --- */
    .elite-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 40px 60px -20px rgba(0,0,0,0.1);
      border-color: var(--luxury-gold);
    }

    .elite-card:hover .card-visual-frame img {
      transform: scale(1.15) rotate(-1deg);
    }

    .elite-card:hover .card-action-btn {
      background: var(--luxury-gold);
      color: white;
      transform: rotate(-45deg);
    }

    /* --- Side Drawer (Creative Click Action) --- */
    .detail-drawer {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      max-width: 500px;
      height: 100vh;
      background: white;
      z-index: 2000;
      box-shadow: -20px 0 60px rgba(0,0,0,0.15);
      transition: right 0.6s cubic-bezier(0.85, 0, 0.15, 1);
      display: flex;
      flex-direction: column;
    }

    .detail-drawer.active {
      right: 0;
    }

    .drawer-header {
      padding: 40px;
      padding-bottom: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .close-drawer {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: var(--slate-light);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 18px;
    }

    .drawer-content {
      padding: 40px;
      overflow-y: auto;
    }

    .drawer-img-wrap {
      width: 100%;
      height: 250px;
      border-radius: 20px;
      overflow: hidden;
      margin-bottom: 30px;
    }

    .drawer-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .drawer-tag {
      color: var(--luxury-gold);
      font-weight: 800;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 10px;
      display: block;
    }

    .drawer-title {
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .drawer-text {
      color: #64748b;
      line-height: 1.8;
      font-size: 16px;
    }

    .drawer-overlay {
      position: fixed;
      inset: 0;
      background: rgba(15, 23, 42, 0.3);
      backdrop-filter: blur(4px);
      z-index: 1999;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
    }

    .drawer-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* Decorative background element */
    .bg-circle {
      position: absolute;
      top: -10%;
      right: -5%;
      width: 40vw;
      height: 40vw;
      background: radial-gradient(circle, rgba(194, 163, 107, 0.05) 0%, transparent 70%);
      z-index: -1;
    }

/*  Today */
 #feature-grid-section {
  padding: 40px 0 80px;
}
#feature-grid-section .section-title {
  margin-bottom: 20px;
}

#feature-grid-section br {
  display: none;
}

    .section-intro h2 {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--brand-primary);
      margin-bottom: 50px;
    }

    /* --- Compact Card Style --- */
    .feature-slab {
      background: var(--card-white);
      border-radius: 20px;
      overflow: hidden;
      height: 100%;
      /* Visible border color for the whole card */
      border: 1.5px solid var(--brand-primary); 
      transition: var(--transition);
      cursor: pointer;
      display: flex;
      flex-direction: column;
    }

    .slab-header {
      height: 160px;
      position: relative;
      overflow: hidden;
    }

    .slab-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease;
    }

    .slab-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 40%, rgba(10,37,64,0.7));
    }

    .slab-icon {
      position: absolute;
      bottom: 12px;
      left: 15px;
      width: 38px;
      height: 38px;
      background: var(--brand-accent);
      color: var(--brand-primary);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      z-index: 5;
    }

    .slab-body { padding: 20px 18px; flex-grow: 1; }
    .slab-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--brand-primary); margin-bottom: 8px; }
    .slab-body p { font-size: 0.9rem; line-height: 1.5; color: #64748b; margin: 0; }

    /* --- Footer Link (Border Removed) --- */
    .slab-footer {
      padding: 0 18px 20px;
    }

    .explore-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.80rem;
      font-weight: 700;
      color: var(--brand-primary);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      padding: 0;
      border: none;
      background: transparent;
    
    }

    .explore-btn i {
      font-size: 1rem;
   
      line-height: 1;
    }

    /* Hover Effects */
    .feature-slab:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(10, 37, 64, 0.15);
      border-color: var(--brand-accent);
    }
    .feature-slab:hover .slab-image { transform: scale(1.15); }
    
    /* Text color shift and arrow animation on card hover */
    .feature-slab:hover .explore-btn { 
      color: var(--brand-accent);
    }
    .feature-slab:hover .explore-btn i { transform: translateX(5px); }

    /* --- Compact Modal --- */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(10, 37, 64, 0.85);
      backdrop-filter: blur(6px);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      padding: 20px;
    }

    .compact-modal {
      background: #1e293b;
      width: 100%;
      max-width: 480px;
      border-radius: 24px;
      overflow: hidden;
      position: relative;
      color: white;
      box-shadow: 0 30px 60px rgba(0,0,0,0.5);
      animation: modalZoom 0.3s ease-out;
    }

    @keyframes modalZoom {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }

    .modal-img-wrap { height: 220px; position: relative; }
    .modal-img-wrap img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
    
    .modal-close {
      position: absolute;
      top: 15px;
      right: 15px;
      color: white;
      cursor: pointer;
      font-size: 20px;
      z-index: 10;
      opacity: 0.6;
    }

    .modal-content-pad {
      padding: 30px;
      position: relative;
    }

    .modal-icon-float {
      position: absolute;
      top: -30px;
      left: 30px;
      width: 60px;
      height: 60px;
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(10px);
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      border: 1px solid rgba(255,255,255,0.1);
    }

    .modal-content-pad h2 { font-size: 1.5rem; font-weight: 700;  color: #cbd5e1;margin-bottom: 12px; margin-top: 10px; }
    .modal-content-pad p { font-size: 0.90rem; color: #cbd5e1; line-height: 1.7; margin: 0; }



    /* ABOUT NEW*/


    
    #about-clean-v10 {
      padding: 120px 0;
    }

    /* --- Header --- */
    .section-label {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: var(--ui-muted);
      margin-bottom: 20px;
      display: block;
    }

    .about-title {
      font-size: 34px;
      font-weight: 800;
      position: relative;
      display: inline-block;
      padding-bottom: 15px;
      margin-bottom: 80px;
       
    }

    /* Your requested yellow half-underline */
    .about-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 50px;
      height: 5px;
      background: var(--ui-accent);
      border-radius: 10px;
    }

    /* --- Image Styling --- */
    .image-container {
      padding-right: 40px;
    }

    .image-container img {
      width: 100%;
      border-radius: 16px;
      box-shadow: 0 30px 60px -15px rgba(0,0,0,0.08);
      transition: transform 0.5s ease;
    }

    .image-container img:hover {
      transform: translateY(-5px);
    }

    /* --- Content Styling --- */
    .content-wrapper {
      padding-left: 20px;
     
    }

    .content-wrapper h3 {
      font-size: 30px;
      font-weight: 750;
      line-height: 1.2;
      margin-bottom: 30px;
      letter-spacing: -0.02em;
    }

    .content-wrapper p {
      font-size: 18px;
      color: var(--ui-muted);
      margin-bottom: 25px;
    }

    .content-wrapper p.lead-text {
      color: var(--ui-black);
      font-weight: 500;
      font-size: 20px;
    }

    /* Minimal Divider */
    .accent-line {
      width: 40px;
      height: 2px;
      background: var(--ui-accent);
      margin: 40px 0;
    }

    @media (max-width: 991px) {
      #about-clean-v10 { padding: 80px 0; }
      .image-container { padding-right: 0; margin-bottom: 50px; }
      .content-wrapper { padding-left: 0; }
      .content-wrapper h3 { font-size: 28px; }
    }
@media (max-width: 768px) {

  #about-editorial-v9 {
    padding: 60px 0 20px;
  }

  .editorial-header {
    margin-bottom: 25px;
  }

  #feature-grid-section {
    padding: 20px 0 60px;
  }

}
 #about-editorial-v9 {
  padding: 80px 0 40px; /* less bottom padding */
}

    .editorial-header {
  margin-bottom: 40px;
}

    .editorial-label {
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: var(--editorial-muted);
      margin-bottom: 15px;
      display: block;
    }

    .editorial-title {
      font-size: 32px;
      font-weight: 800;
      position: relative;
      display: inline-block;
      padding-bottom: 15px;
    }

    /* Yellow half-underline */
    .editorial-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 50px;
      height: 4px;
      background: var(--editorial-accent);
    }

    /* --- Image Presentation --- */
    .editorial-img-container {
      padding-right: 40px;
    }

    .editorial-img-container img {
      width: 100%;
      height: auto;
      border-radius: 4px; /* Minimal rounding for editorial feel */
      box-shadow: 0 4px 30px rgba(0,0,0,0.03);
    }

    /* --- Content Presentation --- */
    .editorial-content {
      padding-left: 20px;
    }

    .editorial-content h3 {
      font-size: 34px;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 30px;
      letter-spacing: -0.5px;
    }

    .editorial-content p {
      font-size: 17px;
      line-height: 1.8;
      color: var(--editorial-muted);
      margin-bottom: 25px;
    }

    /* Highlight box instead of icons/ticks */
    .editorial-highlight {
      background: #fdfdfd;
      border-top: 1px solid var(--editorial-border);
      border-bottom: 1px solid var(--editorial-border);
      padding: 30px 0;
      margin-top: 40px;
      display: flex;
      justify-content: space-between;
    }

    .stat-item {
      flex: 1;
    }

    .stat-label {
      display: block;
      font-size: 10px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--editorial-accent);
      margin-bottom: 5px;
    }

    .stat-value {
      font-size: 18px;
      font-weight: 700;
      color: var(--editorial-dark);
    }

    @media (max-width: 991px) {
      .editorial-img-container { padding-right: 0; margin-bottom: 50px; }
      .editorial-content { padding-left: 0; }
      .editorial-content h3 { font-size: 26px; }
      .editorial-highlight { flex-direction: column; gap: 20px; }
    }


    /* Index.html*/


        /* --- Navigation --- */
    .header-nav {
      position: fixed;
      top: 0;
      width: 100%;
      padding: 25px 50px;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #fff;
    }

    .brand {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 1.4rem;
      letter-spacing: -1px;
    }

    /* --- Card Container Layout --- */
    .deck-wrapper {
      padding: 120px 0 100px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10vh; /* Space between cards for scrolling effect */
    }

    .feature-card {
      width: 90%;
      max-width: 1100px;
      min-height: 500px;
      background: var(--card-bg);
      border: 1px solid var(--glass-border);
      border-radius: 40px;
      overflow: hidden;
      display: flex;
      position: sticky;
      top: 120px; /* Cards stack on top of each other */
      box-shadow: 0 40px 100px rgba(0,0,0,0.5);
      transition: transform 0.4s ease, opacity 0.4s ease;
    }

    /* Visual depth effect on scroll */
    .feature-card:nth-child(1) { z-index: 1; }
    .feature-card:nth-child(2) { z-index: 2; }
    .feature-card:nth-child(3) { z-index: 3; }
    .feature-card:nth-child(4) { z-index: 4; }

    /* Card Split Layout */
    .card-visual {
      flex: 1;
      position: relative;
      background: #000;
    }

    .card-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.7;
    }

    .card-info {
      flex: 1;
      padding: 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    /* Typography */
    .page-num {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      color: var(--accent);
      margin-bottom: 15px;
      display: block;
      font-size: 1.2rem;
    }

    h2 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 800;
      font-size: 3rem;
      margin-bottom: 20px;
      line-height: 1.1;
    }

    p {
      font-size: 1.15rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.6;
      margin-bottom: 35px;
    }

    .tag-container {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .tag {
      background: rgba(255,255,255,0.05);
      border: 1px solid var(--glass-border);
      padding: 8px 18px;
      border-radius: 100px;
      font-size: 0.9rem;
      font-weight: 500;
    }

    /* CTA Section */
    .footer-cta {
      text-align: center;
      padding: 100px 20px;
    }

    /* --- Mobile --- */
    @media (max-width: 991px) {
      .header-nav { padding: 20px; }
      .feature-card {
        flex-direction: column;
        min-height: auto;
        top: 100px;
      }
      .card-visual { height: 250px; }
      .card-info { padding: 30px; }
      h2 { font-size: 2rem; }
      .deck-wrapper { gap: 5vh; }
    }
    



    
  #mb-solutions-grid-section .mb-sol-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 40px;
      padding: 0 24px;
    }

  
 #mb-solutions-grid-section .mb-sol-header h2 {
      font-weight: 800;
      font-size: 2.25rem;
      color: var(--mb-sol-dark);
      margin-bottom: 12px;
    }

    

    .mb-sol-grid-wrapper {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .mb-sol-card {
      position: relative;
      height: 320px;
      border-radius: var(--mb-sol-radius);
      overflow: hidden;
      background: var(--mb-sol-dark);
      border: 1px solid rgba(0, 0, 0, 0.05);
      transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
      cursor: pointer;
    }

    .mb-sol-img-box {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }

    .mb-sol-img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1s ease;
      opacity: 0.7;
    }

    .mb-sol-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, 
        rgba(15, 23, 42, 0) 0%, 
        rgba(15, 23, 42, 0.3) 30%, 
        rgba(15, 23, 42, 0.95) 100%);
      z-index: 1;
    }

    .mb-sol-body {
      position: relative;
      z-index: 2;
      height: 100%;
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      color: white;
    }

    .mb-sol-icon-box {
      width: 48px;
      height: 48px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px;
      backdrop-filter: blur(8px);
      transition: transform 0.3s ease;
    }

    .mb-sol-icon-box i {
      font-size: 1.4rem;
    }

    .mb-sol-badge {
      display: inline-block;
      padding: 4px 10px;
      border-radius: 2px;
      font-size: 0.65rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 8px;
     
      backdrop-filter: blur(4px);
    }

    .mb-sol-body h3 {
      font-weight: 700;
      font-size: 1.3rem;
      margin-bottom: 8px;
    }

    .mb-sol-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .mb-sol-list li {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      font-weight: 500;
      margin-bottom: 4px;
      color: rgba(255, 255, 255, 0.85);
    }

    /* Hover States */
    .mb-sol-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    }

    .mb-sol-card:hover .mb-sol-icon-box {
      transform: scale(1.1);
      background: rgba(255,255,255,0.2);
    }

    /* Unique Icon Colors per Theme */
    .mb-sol-theme-1 .mb-sol-icon-box i { color: var(--mb-sol-c1); }
    .mb-sol-theme-1 .mb-sol-list li i { color: var(--mb-sol-c1); }

    .mb-sol-theme-2 .mb-sol-icon-box i { color: var(--mb-sol-c2); }
    .mb-sol-theme-2 .mb-sol-list li i { color: var(--mb-sol-c2); }

    .mb-sol-theme-3 .mb-sol-icon-box i { color: var(--mb-sol-c3); }
    .mb-sol-theme-3 .mb-sol-list li i { color: var(--mb-sol-c3); }

    .mb-sol-theme-4 .mb-sol-icon-box i { color: var(--mb-sol-c4); }
    .mb-sol-theme-4 .mb-sol-list li i { color: var(--mb-sol-c4); }

    .mb-sol-theme-5 .mb-sol-icon-box i { color: var(--mb-sol-c5); }
    .mb-sol-theme-5 .mb-sol-list li i { color: var(--mb-sol-c5); }

    .mb-sol-theme-6 .mb-sol-icon-box i { color: var(--mb-sol-c6); }
    .mb-sol-theme-6 .mb-sol-list li i { color: var(--mb-sol-c6); }

    /* Modal Styling */
    .mb-sol-modal .modal-content {
      background: #1e293b;
      border-radius: 24px;
      border: 1px solid rgba(255,255,255,0.1);
      color: white;
      overflow: hidden;
    }

    .mb-sol-modal-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      opacity: 0.3;
      mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    }

    .mb-sol-modal-body {
      padding: 0 32px 32px;
      margin-top: -50px;
      position: relative;
    }

    .mb-sol-modal-icon {
      width: 64px;
      height: 64px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      backdrop-filter: blur(12px);
      font-size: 1.8rem;
    }

    @media (max-width: 1100px) {
      .mb-sol-grid-wrapper { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .mb-sol-grid-wrapper { grid-template-columns: 1fr; max-width: 480px; }
    }



        /* Section Scoping */
    #mb-capabilities-split {
      --cap-primary: #3b82f6;
      --cap-bg: #f1f3f5;
      --cap-text-dark: #1e293b;
      --cap-text-muted: #64748b;
      --cap-radius: 24px;
      
      font-family: 'Plus Jakarta Sans', sans-serif;
      background-color: var(--cap-bg);
      padding: 100px 0;
    }

    /* Badge & Heading Styling from Image */
    .mb-cap-badge-wrapper {
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
    }

    .mb-cap-badge {
      background-color: #fef3c7; /* Pale gold from image */
      color: #d97706;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 6px 16px;
      border-radius: 100px;
      display: flex;
      align-items: center;
      gap: 6px;
      text-transform: capitalize;
    }

    .mb-cap-title-area {
      text-align: center;
      margin-bottom: 60px;
    }

    .mb-cap-title-area h2 {
      font-weight: 800;
      font-size: 2.5rem;
      color: var(--cap-text-dark);
    }

    .mb-cap-title-area span {
      color: #f59e0b; /* Golden accent */
    }

    /* Main Container Box */
    .mb-cap-container {
      background: white;
      border-radius: var(--cap-radius);
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.03);
      border: 1px solid rgba(0,0,0,0.05);
    }

    /* Left Image Side */
    .mb-cap-image-side {
      position: relative;
      min-height: 400px;
      height: 100%;
    }

    .mb-cap-image-side img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Right Content Side */
    .mb-cap-content-side {
      padding: 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .mb-cap-icon-box {
      width: 56px;
      height: 56px;
      background: var(--cap-primary);
      color: white;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      margin-bottom: 24px;
      box-shadow: 0 8px 16px rgba(59, 130, 246, 0.2);
    }

    .mb-cap-content-side h3 {
      font-weight: 700;
      font-size: 1.85rem;
      color: var(--cap-text-dark);
      margin-bottom: 20px;
    }

    .mb-cap-content-side p {
      color: var(--cap-text-muted);
      line-height: 1.7;
      margin-bottom: 24px;
      font-size: 1.05rem;
    }

    /* Feature List Grid */
    .mb-cap-feature-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .mb-cap-feature-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--cap-text-dark);
    }

    .mb-cap-feature-item i {
      color: #f59e0b;
      font-size: 1.1rem;
    }

    @media (max-width: 991px) {
      .mb-cap-content-side { padding: 40px; }
      .mb-cap-title-area h2 { font-size: 2rem; }
    }

    @media (max-width: 768px) {
      .mb-cap-feature-list { grid-template-columns: 1fr; }
      .mb-cap-image-side { min-height: 300px; }
    }


    
    .section-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-header .badge {
      background: #fef3c7;
      color: #d97706;
      border: 1px solid #fcd34d;
      padding: 8px 16px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.75rem;
      text-transform: uppercase;
      margin-bottom: 15px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .section-header h2 {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--brand-primary);
    }

    .section-header h2 span {
      color: #f59e0b; /* Golden accent from your screenshot */
    }

    /* --- CAPABILITY SLAB --- */
    .capability-slab {
      background: var(--card-white);
      border-radius: 24px;
      overflow: hidden;
      border: 1.5px solid #e2e8f0;
      transition: var(--transition);
      cursor: pointer;
      max-width: 1100px;
      margin: 0 auto 30px;
      display: flex;
      flex-wrap: wrap;
    }

    /* Image Side */
    .slab-image-side {
      flex: 1 1 50%;
      min-height: 400px;
      overflow: hidden;
      position: relative;
    }

    .slab-image-side img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1s ease;
    }

    /* Content Side */
    .slab-content-side {
      flex: 1 1 50%;
      padding: 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      transition: var(--transition);
      background-color: var(--card-white);
    }
.slab-icon {
  position: absolute;
  bottom: 12px;
  left: 15px;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 5;
  color: #fff;
}

.icon-tv {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

/* Card 2 - In-Room Services */
.icon-service {
  background: linear-gradient(135deg, #10b981, #059669);
}

/* Card 3 - Cast & WiFi */
.icon-cast {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.feature-slab:hover .icon-tv {
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.feature-slab:hover .icon-service {
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
}

.feature-slab:hover .icon-cast {
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.5);
}

    /* Specific Icon Colors */
    .icon-blue { background: var(--brand-accent-blue); }
    .icon-green { background: var(--brand-accent-green); }

    .slab-content-side h3 {
      font-size: 2rem;
      font-weight: 800;
      color: var(--brand-primary);
      margin-bottom: 20px;
      transition: var(--transition);
    }

    .slab-content-side p {
      font-size: 1.05rem;
      line-height: 1.6;
      color: #64748b;
      margin-bottom: 30px;
      transition: var(--transition);
    }

    /* Features Grid */
    .feature-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px 20px;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.95rem;
      font-weight: 600;
      color: #475569;
      transition: var(--transition);
    }

    .feature-item i {
      color: #f59e0b; /* Orange checks from screenshot */
      font-size: 1.1rem;
    }

    /* --- HOVER EFFECTS (AS REQUESTED) --- */
    
    /* 1. Lift & Border Color Shift */
    .capability-slab:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.12);
      border-color: #cbd5e1;
    }

    /* 2. Right side background color change based on icon type */
    /* Blue Slab Hover */
    .slab-blue:hover .slab-content-side {
      background-color: #eff6ff; /* Very light blue background */
    }
    .slab-blue:hover h3 { color: var(--brand-accent-blue); }

    /* Green Slab Hover */
    .slab-green:hover .slab-content-side {
      background-color: #ecfdf5; /* Very light green background */
    }
    .slab-green:hover h3 { color: var(--brand-accent-green); }

    /* 3. Image Scale */
    .capability-slab:hover .slab-image-side img {
      transform: scale(1.1);
    }

    /* 4. Icon Animation */
    .capability-slab:hover .slab-icon {
      transform: scale(1.1) rotate(-5deg);
    }

    /* Responsive */
    @media (max-width: 991px) {
      .slab-image-side { flex: 1 1 100%; min-height: 300px; }
      .slab-content-side { flex: 1 1 100%; padding: 40px 30px; }
      .feature-grid { grid-template-columns: 1fr; }
    }



    /* Unique Namespace: mbs- (Moviebeam Split) */
    #mb-capabilities-split {
      --mbs-primary: #0a2540;
      --mbs-blue: #3b82f6; 
      --mbs-green: #10b981; 
      --mbs-purple: #8b5cf6;
      --mbs-rose: #f43f5e;
      --mbs-sky: #0ea5e9;
      --mbs-gold: #f59e0b;
      --mbs-bg: #f8fafc;
      --mbs-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      
      font-family: 'Plus Jakarta Sans', sans-serif;
      background-color: var(--mbs-bg);
      padding: 60px 0;
    }

    /* Section Header */
    .mbs-header {
      text-align: center;
      margin-bottom: 40px;
      margin-top: 1px;
    }

    .mbs-top-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 22px;
      background: rgba(245, 158, 11, 0.1);
      border: 1px solid rgba(245, 158, 11, 0.3);
      border-radius: 100px;
      color: var(--mbs-gold);
      font-weight: 700;
      font-size: 14px;
      margin-bottom: 25px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .mbs-header h2 {
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 800;
      color: var(--mbs-primary);
    }

    .mbs-header h2 span {
      color: var(--mbs-gold);
    }

    /* Slab Layout */
    .mbs-capability-slab {
      background: #ffffff;
      border-radius: 32px;
      overflow: hidden;
      border: 1px solid #e2e8f0;
      transition: var(--mbs-transition);
      cursor: pointer;
      max-width: 1140px;
      margin: 0 auto 30px;
      display: flex;
      flex-wrap: wrap;
      box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    }

    .mbs-capability-slab:nth-child(even) {
      flex-direction: row-reverse;
    }

    /* Image Side */
    .mbs-image-side {
      flex: 1 1 45%;
      min-height: 380px;
      overflow: hidden;
      position: relative;
    }

    .mbs-image-side img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1.2s ease;
    }

    /* Content Side */
    .mbs-content-side {
      flex: 1 1 55%;
      padding: 40px 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      transition: var(--mbs-transition);
      background-color: #ffffff;
    }

    /* Icon Styling */
    .mbs-card-icon {
      width: 64px;
      height: 64px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: white;
      margin-bottom: 25px;
      transition: var(--mbs-transition);
      box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
    }

    .mbs-bg-blue { background: var(--mbs-blue); }
    .mbs-bg-green { background: var(--mbs-green); }
    .mbs-bg-purple { background: var(--mbs-purple); }
    .mbs-bg-rose { background: var(--mbs-rose); }
    .mbs-bg-sky { background: var(--mbs-sky); }
    .mbs-bg-gold { background: var(--mbs-gold); }

    .mbs-content-side h3 {
      font-size: 2rem;
      font-weight: 800;
      color: var(--mbs-primary);
      margin-bottom: 15px;
      transition: var(--mbs-transition);
    }

    .mbs-content-side p {
      font-size: 1.05rem;
      line-height: 1.6;
      color: #64748b;
      margin-bottom: 25px;
    }

    /* Feature Grid */
    .mbs-feature-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px 24px;
    }

    .mbs-feature-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.95rem;
      font-weight: 600;
      color: #475569;
      transition: var(--mbs-transition);
    }

    .mbs-tick-circle {
      width: 24px;
      height: 24px;
      background: rgba(245, 158, 11, 0.12);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: var(--mbs-transition);
    }

    .mbs-feature-item i {
      color: var(--mbs-gold);
      font-size: 0.9rem;
      -webkit-text-stroke: 0.5px;
    }

    /* Feature Hover */
    .mbs-feature-item:hover .mbs-tick-circle {
      background: var(--mbs-gold);
      transform: scale(1.1);
    }
    .mbs-feature-item:hover i { color: white; }
    .mbs-feature-item:hover { color: var(--mbs-primary); }

    /* Global Slab Hover Effect */
    .mbs-capability-slab:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 60px -12px rgba(10, 37, 64, 0.12);
      border-color: #cbd5e1;
    }
    .mbs-capability-slab:hover .mbs-image-side img { transform: scale(1.1); }
    .mbs-capability-slab:hover .mbs-card-icon { transform: scale(1.1) rotate(-5deg); }

    /* Individual Color Shifts on Hover */
    .mbs-slab-blue:hover .mbs-content-side { background-color: #f0f7ff; }
    .mbs-slab-blue:hover h3 { color: var(--mbs-blue); }

    .mbs-slab-green:hover .mbs-content-side { background-color: #f0fdf4; }
    .mbs-slab-green:hover h3 { color: var(--mbs-green); }

    .mbs-slab-purple:hover .mbs-content-side { background-color: #f5f3ff; }
    .mbs-slab-purple:hover h3 { color: var(--mbs-purple); }

    .mbs-slab-rose:hover .mbs-content-side { background-color: #fff1f2; }
    .mbs-slab-rose:hover h3 { color: var(--mbs-rose); }

    .mbs-slab-sky:hover .mbs-content-side { background-color: #f0f9ff; }
    .mbs-slab-sky:hover h3 { color: var(--mbs-sky); }

    .mbs-slab-gold:hover .mbs-content-side { background-color: #fffbeb; }
    .mbs-slab-gold:hover h3 { color: var(--mbs-gold); }

    @media (max-width: 991px) {
      .mbs-image-side { flex: 1 1 100%; min-height: 280px; }
      .mbs-content-side { flex: 1 1 100%; padding: 35px 25px; }
      .mbs-feature-grid { grid-template-columns: 1fr; }
      .mbs-capability-slab:nth-child(even) { flex-direction: column; }
    }




    
    #mb-solutions-grid-section {
      padding: 80px 0;
      background-color: var(--sol-bg);
      font-family: var(--sol-font);
      overflow: hidden;
    }

    .mb-sol-header {
      max-width: 800px;
      margin: 0 auto 50px auto;
      text-align: center;
      padding: 0 20px;
    }

    .mb-sol-header h2 {
      font-weight: 800;
      font-size: 2.5rem;
      color: #111827;
      margin-bottom: 15px;
    }

    /* --- GRID WRAPPER --- */
    .mb-sol-grid-wrapper {
      max-width: 1300px; /* Increased width for web */
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
    }

    /* --- CARD STYLING --- */
    .mb-sol-card {
      position: relative;
      height: 400px; /* Shorter height for web */
      border-radius: 24px;
      overflow: hidden;
      background: var(--sol-card-dark);
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(0,0,0,0.05);
    }

    .mb-sol-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    }

    .mb-sol-img-box {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    .mb-sol-img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.5;
      transition: transform 0.6s ease;
    }

    .mb-sol-card:hover .mb-sol-img-box img {
      transform: scale(1.1);
    }

    .mb-sol-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 10%, rgba(0,0,0,0.95) 90%);
      z-index: 1;
    }

    .mb-sol-body {
      position: relative;
      z-index: 2;
      height: 100%;
      padding: 25px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      color: white;
    }

    .mb-sol-icon-box {
      width: 48px;
      height: 48px;
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(10px);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 15px;
      color: var(--sol-primary);
      border: 1px solid rgba(255,255,255,0.1);
    }

    .mb-sol-body h3 {
      font-weight: 700;
      font-size: 1.4rem;
      margin-bottom: 12px;
    }

    .mb-sol-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .mb-sol-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.9rem;
      margin-bottom: 6px;
      color: rgba(255,255,255,0.85);
    }

    .mb-sol-list li i {
      color: var(--sol-primary);
      font-size: 12px;
    }

    /* --- MOBILE RESPONSIVE --- */
    @media (max-width: 991px) {
      #mb-solutions-grid-section { padding: 40px 0; }
      
      .mb-sol-grid-wrapper {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        padding: 0 20px;
        gap: 15px;
      }

      .mb-sol-grid-wrapper::-webkit-scrollbar { display: none; }

      .mb-sol-card {
        flex: 0 0 82%;
        height: 340px; /* Decreased height for mobile */
        scroll-snap-align: center;
      }
    }

    /* --- MODAL STYLING --- */
    .mb-sol-modal .modal-content {
      background: #1e293b;
      border: none;
      border-radius: 24px;
      overflow: hidden;
      color: white;
    }

    .mb-sol-modal-img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .mb-sol-modal-body {
      padding: 30px;
    }

    .mb-sol-modal-icon {
      font-size: 40px;
      color: var(--sol-primary);
      margin-bottom: 15px;
    }

    .mb-sol-modal-body h2 {
      color: white;
      font-weight: 700;
    }

    .mb-sol-modal-body p {
      color: #94a3b8;
      line-height: 1.6;
    }

    /* Navigation Controls */
    .mb-sol-controls {
      display: none;
      justify-content: center;
      align-items: center;
      gap: 15px;
      margin-top: 25px;
    }

    @media (max-width: 991px) { .mb-sol-controls { display: flex; } }

    .mb-sol-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid #eee;
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .mb-sol-dot {
      width: 6px;
      height: 6px;
      background: #ddd;
      border-radius: 50%;
      transition: 0.3s;
    }

    .mb-sol-dot.active {
      width: 18px;
      border-radius: 10px;
      background: var(--sol-primary);
    }



    #pb-solutions-hub {
      padding: 55px 0;
      background-color: #eaf0f5;
      font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    }

    .pb-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .pb-section-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .pb-section-header h2 {
      font-weight: 800;
      font-size: 2.3rem;
      color: var(--bg-dark);
      margin-bottom: 10px;
    }

    /* Desktop Grid */
    .pb-solutions-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
    }

    /* Card Styling */
    .pb-solution-card {
      position: relative;
      height: 420px;
      border-radius: 24px;
      overflow: hidden;
      background: var(--bg-dark);
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      border: 1px solid rgba(255,255,255,0.05);
    }

    .pb-solution-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    }

    .pb-solution-card img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.5;
      transition: transform 0.6s ease;
    }

    .pb-solution-card:hover img {
      transform: scale(1.15);
      opacity: 0.35;
    }

    .pb-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(15,23,42,1) 15%, rgba(15,23,42,0.4) 50%, transparent 100%);
      z-index: 1;
    }

    .pb-card-body {
      position: relative;
      z-index: 2;
      height: 100%;
      padding: 30px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      color: white;
    }

    .pb-icon-circle {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 15px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }

    .pb-solution-card h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 12px;
      letter-spacing: -0.02em;
    }

    .pb-tick-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .pb-tick-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.9rem;
      margin-bottom: 6px;
      color: rgba(255,255,255,0.85);
    }

    /* Gradient Themes */
    .t-blue { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
    .t-purple { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
    .t-green { background: linear-gradient(135deg, #10b981, #047857); }
    .t-orange { background: linear-gradient(135deg, #f59e0b, #d97706); }
    .t-pink { background: linear-gradient(135deg, #f43f5e, #be123c); }
    .t-teal { background: linear-gradient(135deg, #06b6d4, #0e7490); }

    /* Mobile Scroll & Animated Arrow */
    @media (max-width: 991px) {
      .pb-solutions-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 25px;
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
        scrollbar-width: none;
      }
      .pb-solutions-grid::-webkit-scrollbar { display: none; }
      
      .pb-solution-card {
        flex: 0 0 80%;
        scroll-snap-align: center;
      }

      .pb-scroll-indicator {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        margin-top: 10px;
        color: #64748b;
      }
      .pb-scroll-indicator i {
        font-size: 1.5rem;
        animation: slideRight 1.8s infinite ease-in-out;
      }
      .pb-scroll-indicator span {
        font-size: 0.7rem;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 1.5px;
      }
    }

    @media (min-width: 992px) {
      .pb-scroll-indicator { display: none; }
    }

    @keyframes slideRight {
      0% { transform: translateX(-15px); opacity: 0; }
      50% { transform: translateX(0); opacity: 1; }
      100% { transform: translateX(15px); opacity: 0; }
    }

    /* Wide Slim Modal Styling */
    .modal-content {
      background-color: var(--bg-dark);
      color: white;
      border-radius: 28px;
      border: 1px solid rgba(179, 23, 23, 0.1);
      overflow: hidden;
    }

    .modal-body { padding: 0; }

    @media (min-width: 992px) {
      .modal-dialog { max-width: 1000px; }
      .modal-flex { display: flex; min-height: 450px; }
      .modal-img-side { width: 45%; }
      .modal-content-side { width: 55%; padding: 60px; }
    }

    @media (max-width: 991px) {
      .modal-img-side { height: 250px; }
      .modal-content-side { padding: 30px; }
    }

    .modal-img-side img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .modal-content-side h2 {
      font-weight: 800;
      font-size: 2.2rem;
      margin-bottom: 20px;
    }

    .modal-content-side p {
      color: #94a3b8;
      line-height: 1.7;
      font-size: 1.1rem;
      margin-bottom: 30px;
    }

    .btn-close-white {
      position: absolute;
      top: 20px;
      right: 20px;
      z-index: 10;
      background-color: rgba(255,255,255,0.1);
      border-radius: 50%;
      padding: 10px;
    }




    
    /* Modal - Self Contained Style */
    .modal-content {
      border-radius: 28px;
      overflow: hidden;
      border: none;
    }

    .modal-flex-container {
      display: flex;
      min-height: 450px;
    }

    .modal-img-col {
      width: 40%;
      background: #000;
    }

    .modal-img-col img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .modal-info-col {
      width: 60%;
      padding: 50px;
      background: #fff;
      position: relative;
    }

    .modal-info-col .btn-close {
      position: absolute;
      top: 25px;
      right: 25px;
    }

    .modal-info-col h2 {
      font-weight: 700;
      margin-bottom: 20px;
      font-family: var(--heading-font);
    }

    .modal-features-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
    }

    .modal-features-list li {
      padding: 12px 0;
      border-bottom: 1px solid #f5f5f5;
      display: flex;
      align-items: center;
      gap: 15px;
      font-weight: 400;
    }

    @media (max-width: 991px) {
      .mbs-capability-slab { flex-direction: column; }
      .mbs-image-side, .mbs-content-side { width: 100%; }
      .modal-flex-container { flex-direction: column; }
      .modal-img-col, .modal-info-col { width: 100%; }
    }

.modal-points{
  margin-top: 20px;
  padding-left: 0;
  list-style: none;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
}

.modal-points li{
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 1.4;
}

.modal-points li i{
  color: #4da3ff;
  font-size: 16px;
  flex-shrink: 0;
}

/* MOBILE */
@media (max-width: 576px){
  .modal-points{
    grid-template-columns: 1fr;
  }
}


/* CRM PAGE*/
  .crm-modern-section {
      padding: 40px 0;
    }

    /* THE CARD CONTAINER */
    .crm-split-card {
      display: flex;
      background: var(--card-bg2);
      border-radius: 32px;
      overflow: hidden;
      min-height: 480px;
      width: 100%;
      position: relative;
      border: 1px solid rgba(0, 0, 0, 0.05);
      transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
    }

    /* HOVER EFFECT */
    .crm-split-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.08);
      border-color: rgba(0, 0, 0, 0.1);
    }

    .crm-text-col {
      flex: 1.1;
      padding: 50px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      z-index: 2;
      transition: background-color var(--transition-speed) ease;
    }

    .crm-image-col {
      flex: 1;
      overflow: hidden;
      position: relative;
    }

    .crm-image-col img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .crm-split-card:hover .crm-image-col img {
      transform: scale(1.08);
    }

    /* ICON BOXES */
    .crm-icon-box {
      width: 60px;
      height: 60px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 25px;
      transition: all var(--transition-speed) ease;
    }

    .crm-icon-box i {
      font-size: 28px;
      color: #fff;
    }

    /* THEME LOGIC: Persistent Check Colors */
    
    /* BLUE THEME */
    .theme-blue .crm-icon-box { background-color: var(--color-blue); }
    .theme-blue .crm-check-badge { background-color: var(--color-blue); color: #fff; }
    .theme-blue:hover .crm-text-col { background-color: #f0f7ff; }
    
    /* GREEN THEME */
    .theme-green .crm-icon-box { background-color: var(--color-green); }
    .theme-green .crm-check-badge { background-color: var(--color-green); color: #fff; }
    .theme-green:hover .crm-text-col { background-color: #f0fdf4; }

    /* PURPLE THEME */
    .theme-purple .crm-icon-box { background-color: var(--color-purple); }
    .theme-purple .crm-check-badge { background-color: var(--color-purple); color: #fff; }
    .theme-purple:hover .crm-text-col { background-color: #f5f3ff; }

    .crm-split-card:hover .crm-icon-box {
      transform: scale(1.1) rotate(-3deg);
    }

    .crm-text-col h3 {
      font-family: "Montserrat", sans-serif;
      font-weight: 700;
      font-size: 32px;
      margin-bottom: 18px;
    }

    .crm-text-col p {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* FEATURE GRID & PERSISTENT BADGES */
    .crm-feature-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 30px;
    }

    .crm-feature-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 500;
      font-size: 14px;
    }

    .crm-check-badge {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      flex-shrink: 0;
      /* Persistent shadows to make them pop */
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    /* Layout Alternation */
    .crm-split-card.reverse {
      flex-direction: row-reverse;
    }

    @media (max-width: 991px) {
  /* For normal cards: content is first in HTML, so we reverse it to put image on top */
  .crm-split-card {
    flex-direction: column-reverse; 
  }

  /* For reverse cards: image is already "first" in the flex-flow, so column puts it on top */
  .crm-split-card.reverse {
    flex-direction: column;
  }

  .crm-image-col {
    height: 280px;
    width: 100%; /* Ensure it spans full width */
  }

  .crm-text-col {
    padding: 40px 30px;
    width: 100%; /* Ensure it spans full width */
  }

  .crm-feature-grid {
    grid-template-columns: 1fr;
  }
}
 
@media (max-width: 991px) {
  /* Standard cards: text is first in HTML, so we reverse the column to put image on top */
  .crm-split-card {
    flex-direction: column-reverse;
  }
 
  .crm-split-card.reverse {
    flex-direction: column-reverse;
  }

  .crm-image-col {
    height: 280px;
    width: 100%;
  }

  .crm-text-col {
    padding: 40px 30px;
    width: 100%;
  }

  .crm-feature-grid {
    grid-template-columns: 1fr;
  }
}

    /*end*/

.hms-main-container {
    padding: 80px 0;
    background-color: var(--hms-bg);
    font-family: 'Inter', sans-serif; /* Recommended clean font */
}

/* Badge Styling from image_e08432.png */
.hms-badge-container {
    margin-bottom: 25px;
}

#hms-unique-pill-badge.hms-pill-style {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background-color: var(--hms-gold-bg);
    border: 1px solid var(--hms-gold-border);
    border-radius: 50px;
    color: var(--hms-gold-border);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Typography */
.hms-primary-heading {
    color: var(--hms-slate);
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.hms-description-text {
    color: var(--hms-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

/* Card Styling */
.hms-feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.hms-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: var(--hms-emerald);
}

.hms-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(13, 148, 136, 0.1);
    color: var(--hms-emerald);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
}

.hms-feature-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--hms-slate);
    margin-bottom: 15px;
}

/* Status Dot with Animation */
.hms-status-indicator {
    font-size: 0.85rem;
    color: var(--hms-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hms-status-dot {
    height: 10px;
    width: 10px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
    animation: hms-pulse 2s infinite;
}

@keyframes hms-pulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}




/*   New Home About*/

 
.at-section-wrapper {
  padding: 80px 0;
  background-color: #ffffff;
  /* Default Font: Roboto */
  font-family: "Roboto", system-ui, -apple-system, sans-serif;
}

/* Header Styling */
.at-main-header {
  /* Heading Font: Montserrat */
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--at-heading-dark);
  margin-bottom: 15px;
}

.at-header-line {
  width: 60px;
  height: 4px;
  background-color: var(--at-primary-teal);
  margin: 0 auto;
  border-radius: 2px;
}

/* Content Styling */
.at-image-frame {
  padding: 10px;
}

.at-image-frame img {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
 
}

.at-image-frame img:hover {
  transform: scale(1.02);
}

.at-sub-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--at-heading-dark);
  line-height: 1.3;
  margin-bottom: 20px;
}

.at-text-lead {
  font-size: 17px;
  color: var(--at-heading-dark);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 20px;
}

.at-text-body {
  font-size: 15px;
  color: var(--at-body-gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.at-feature-divider {
  width: 100%;
  height: 1px;
  background-color: var(--at-border-soft);
  margin: 25px 0;
}

/* Stats Row */
.at-stats-row {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.at-stat-item {
  display: flex;
  flex-direction: column;
}

.at-stat-number {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--at-primary-teal);
}

.at-stat-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--at-body-gray);
  font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .at-section-wrapper {
    padding: 60px 0;
  }
  .at-main-header {
    font-size: 32px;
  }
  .at-sub-heading {
    font-size: 24px;
  }
  .at-stats-row {
    gap: 20px;
  }
}



















/* --- Root Variables --- */
:root {
  /* Font Variables from Design System */
  --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: "Montserrat", sans-serif;
  --nav-font: "Rubik", sans-serif;


}

/* --- Section Layout --- */
.fx-section {
  padding: 80px 0;
  background-color: var(--fx-bg);
  font-family: var(--default-font);
}

.fx-section-title {
  font-family: var(--heading-font);
  font-size: 38px;
  font-weight: 700;
  color: var(--fx-dark);
  margin-bottom: 10px;
}

.fx-section-subtitle {
  font-family: var(--default-font);
  color: var(--fx-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Card Architecture --- */
.fx-card {
  background: var(--fx-white);
  border-radius: 20px;
  overflow: visible; /* Crucial: allows badge to sit above the image border */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
}

.fx-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--fx-border);
}

/* --- Image Container --- */
.fx-card-top {
  position: relative;
  height: 220px;
  overflow: hidden; /* Keeps image zoom contained */
  border-radius: 20px 20px 0 0;
}

.fx-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.fx-card:hover .fx-image {
  transform: scale(1.1);
}

/* --- Content & Badge Positioning --- */
.fx-card-content {
  position: relative;
  padding: 45px 30px 30px; /* Top padding creates space for the overlapping badge */
  flex-grow: 1;
}

.fx-icon-badge {
  position: absolute;
  top: -30px; /* Pulls badge halfway up over the image area */
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--fx-white);
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* --- Typography --- */
.fx-item-title {
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 700;
  color: var(--fx-dark);
  margin-bottom: 12px;
}

.fx-item-desc {
  font-family: var(--default-font);
  font-size: 15px;
  color: var(--fx-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.fx-card-action {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--fx-border);
}

.fx-link {
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

/* --- Unique Color Logic & Hover Effects --- */

/* Card 1: OTT (Teal) */
.fx-ott .fx-icon-badge { background-color: var(--color-ott); }
.fx-ott .fx-link { color: var(--color-ott); }
.fx-ott:hover .fx-icon-badge { 
  background-color: var(--fx-white); 
  color: var(--color-ott); 
}

/* Card 2: Service (Blue) */
.fx-service .fx-icon-badge { background-color: var(--color-service); }
.fx-service .fx-link { color: var(--color-service); }
.fx-service:hover .fx-icon-badge { 
  background-color: var(--fx-white); 
  color: var(--color-service); 
}

/* Card 3: UI (Purple) */
.fx-ui .fx-icon-badge { background-color: var(--color-ui); }
.fx-ui .fx-link { color: var(--color-ui); }
.fx-ui:hover .fx-icon-badge { 
  background-color: var(--fx-white); 
  color: var(--color-ui); 
}

/* Common Badge Hover state */
.fx-card:hover .fx-icon-badge {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

/* --- Responsive Media Queries --- */
@media (max-width: 991px) {
  .fx-section-title { font-size: 32px; }
  .fx-card-top { height: 200px; }
  .fx-card-content { padding: 40px 20px 25px; }
  .fx-icon-badge { right: 20px; width: 50px; height: 50px; font-size: 20px; }
}











:root {

}

.fx-section {
  padding: 80px 0;
  background-color: #f8fafc;
  font-family: var(--default-font); /* Roboto */
}

.fx-section-title {
  font-family: var(--heading-font); /* Montserrat */
  font-size: 38px;
  font-weight: 700;
  color: var(--fx-dark);
  margin-bottom: 10px;
}

.fx-section-subtitle {
  color: var(--fx-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Card Design */
.fx-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--fx-shadow);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fx-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Top Image Section */
.fx-card-top {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.fx-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.fx-card:hover .fx-image {
  transform: scale(1.1);
}

/* Overlapping Icon Badge */
.fx-icon-badge {
  position: absolute;
  bottom: -25px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--fx-primary);
  color: #fff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 8px 15px rgba(13, 148, 136, 0.3);
  z-index: 2;
  transition: transform 0.3s ease;
}

.fx-card:hover .fx-icon-badge {
  transform: rotate(-10deg);
}

/* Text Content Area */
.fx-card-content {
  padding: 40px 30px 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.fx-item-title {
  font-family: var(--heading-font); /* Montserrat */
  font-size: 22px;
  font-weight: 700;
  color: var(--fx-dark);
  margin-bottom: 12px;
}

.fx-item-desc {
  font-family: var(--default-font); /* Roboto */
  font-size: 15px;
  color: var(--fx-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Action Link */
.fx-card-action {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #f1f5f9;
}

.fx-link {
  font-family: var(--nav-font); /* Rubik */
  font-size: 14px;
  font-weight: 600;
  color: var(--fx-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.fx-link i {
  transition: transform 0.3s ease;
}

.fx-card:hover .fx-link i {
  transform: translateX(5px);
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .fx-section-title { font-size: 30px; }
  .fx-card-top { height: 200px; }
}






/* ================================================= */
/* EXTENDED ABOUT SECTION */
/* ================================================= */

.athx-about-extension-section {
  padding: 20px 0 55px;
  background: #f8fafc;
  overflow: hidden;
}

/* ================================================= */
/* IMAGE SIDE */
/* ================================================= */

.athx-image-wrapper {
  height: 100%;
  min-height: 520px;
  max-height: 520px;

  border-radius: 26px;
  overflow: hidden;

  box-shadow: 0 18px 45px rgba(0,0,0,0.10);
}

.athx-about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ================================================= */
/* CONTENT BOX */
/* ================================================= */

.athx-content-box {
  background: #ffffff;
  border-radius: 26px;
  padding: 34px 36px;

  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05);

  height: 100%;

  min-height: 520px;
  max-height: 520px;

  display: flex;
  flex-direction: column;

  justify-content: flex-start;   /* CHANGED */
}

/* ================================================= */
/* TYPOGRAPHY */
/* ================================================= */

.athx-main-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;

  color: #0f172a;

  margin-bottom: 18px;

  font-family: 'Manrope', sans-serif;

  max-width: 420px;   /* ADDED */
}

.athx-lead-text {
  font-size: 16px;
  line-height: 1.7;
  color: #000;
  font-weight: 600;

  margin-bottom: 16px;

  max-width: 95%;   /* ADDED */
}

.athx-description-text {
  font-size: 14.5px;
  line-height: 1.8;
  color: #475569;

  margin-bottom: 0;

  max-width: 98%;   /* ADDED */
}
/* ================================================= */
/* DIVIDER */
/* ================================================= */

.athx-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #dbe4ee, transparent);
  margin: 18px 0;
}

.athx-divider-space {
  margin-top: 20px;
}

/* ================================================= */
/* FEATURE CARDS */
/* ================================================= */

.athx-feature-card {
  display: flex;
  align-items: center;
  gap: 12px;

  background: #ffffff;

  border-radius: 16px;

  padding: 12px 14px;

  border: 1px solid #eef2f7;

  transition: all 0.3s ease;

  min-height: 68px;
}

.athx-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.athx-feature-card span {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.4;
  color: #1e293b;
}

/* ================================================= */
/* ICON BOX */
/* ================================================= */

.athx-icon-box {
  width: 42px;
  height: 42px;
  min-width: 42px;

  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  font-size: 16px;

  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* ================================================= */
/* UNIQUE ICON COLORS */
/* ================================================= */

.athx-card-purple .athx-icon-box {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.athx-card-blue .athx-icon-box {
  background: linear-gradient(135deg, #0284c7, #38bdf8);
}

.athx-card-green .athx-icon-box {
  background: linear-gradient(135deg, #16a34a, #4ade80);
}

.athx-card-orange .athx-icon-box {
  background: linear-gradient(135deg, #ea580c, #fb923c);
}

.athx-card-red .athx-icon-box {
  background: linear-gradient(135deg, #dc2626, #f87171);
}

.athx-card-yellow .athx-icon-box {
  background: linear-gradient(135deg, #ca8a04, #facc15);
}

/* ================================================= */
/* RESPONSIVE */
/* ================================================= */

@media (max-width: 991px) {

  .athx-image-wrapper,
  .athx-content-box {
    min-height: auto;
    max-height: unset;
  }

  .athx-image-wrapper {
    height: 380px;
  }

}

@media (max-width: 767px) {

  .athx-about-extension-section {
    padding: 10px 0 45px;
  }

  .athx-content-box {
    padding: 24px 20px;
  }

  .athx-main-title {
    font-size: 28px;
  }

  .athx-feature-card {
    min-height: auto;
  }

}

/* ==========================================
   ATITHYA HERO BANNER
========================================== */

#atithya-hero-wrapper {
  margin: 0;
  padding: 0;
  overflow: hidden;
  width: 100%;
}

#atithya-hero-wrapper .atithya-hero-carousel,
#atithya-hero-wrapper .carousel-inner,
#atithya-hero-wrapper .carousel-item {
  height: calc(100vh - 10px);
}

#atithya-hero-wrapper .atithya-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Navigation Arrows */
#atithya-hero-wrapper .carousel-control-prev,
#atithya-hero-wrapper .carousel-control-next {
  width: 6%;
}

/* Indicators */
#atithya-hero-wrapper .carousel-indicators {
  margin-bottom: 20px;
}

/* ==========================
   Large Tablets
========================== */
@media (max-width: 992px) {
  #atithya-hero-wrapper .atithya-hero-carousel,
  #atithya-hero-wrapper .carousel-inner,
  #atithya-hero-wrapper .carousel-item {
    height: 70vh;
  }
}

/* ==========================
   Tablets
========================== */
@media (max-width: 768px) {
  #atithya-hero-wrapper .atithya-hero-carousel,
  #atithya-hero-wrapper .carousel-inner,
  #atithya-hero-wrapper .carousel-item {
    height: 60vh;
  }
}

/* ==========================
   Mobile
========================== */
@media (max-width: 576px) {

  #atithya-hero-wrapper {
    margin: 0;
    padding: 0;
  }

  #atithya-hero-wrapper .atithya-hero-carousel,
  #atithya-hero-wrapper .carousel-inner,
  #atithya-hero-wrapper .carousel-item {
    height: 42vh;
    min-height: 0 !important;
  }

  #atithya-hero-wrapper .atithya-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  #atithya-hero-wrapper .carousel-control-prev,
  #atithya-hero-wrapper .carousel-control-next {
    width: 12%;
  }

  #atithya-hero-wrapper .carousel-indicators {
    margin-bottom: 8px;
  }
}

/* ==========================
   Small Mobile Devices
========================== */
@media (max-width: 400px) {

  #atithya-hero-wrapper .atithya-hero-carousel,
  #atithya-hero-wrapper .carousel-inner,
  #atithya-hero-wrapper .carousel-item {
    height: 35vh;
  }

  #atithya-hero-wrapper .carousel-indicators {
    margin-bottom: 5px;
  }
}





/* ===================================
   WHY CHOOSE US
=================================== */

.atithya-why-section {
  padding: 90px 0;
  background: #f8fafc;
}

.atithya-why-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.atithya-subtitle {
  display: inline-block;
  background: rgba(0, 102, 255, 0.08);
  color: #0066ff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.atithya-why-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 15px;
}

.atithya-why-header p {
  color: #6b7280;
  font-size: 17px;
  line-height: 1.7;
}

.atithya-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.atithya-why-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px 30px;
  text-align: center;
  transition: all 0.35s ease;
  border: 1px solid #eef2f7;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.atithya-why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
   
  
  );
}

.atithya-why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.why-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 22px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    #0066ff,
    #00b4ff
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon i {
  color: #fff;
  font-size: 32px;
}

.atithya-why-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 15px;
}

.atithya-why-card p {
  color: #6b7280;
  line-height: 1.8;
  margin: 0;
}

/* Tablet */
@media (max-width: 991px) {
  .atithya-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {

  .atithya-why-section {
    padding: 70px 0;
  }

  .atithya-why-header h2 {
    font-size: 32px;
  }

  .atithya-why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .atithya-why-card {
    padding: 28px 24px;
  }
}



/* ======================================
   WHY CHOOSE US
====================================== */

.atithya-why-section {
  padding: 90px 0;
  background: #f8fafc;
}

.atithya-why-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 55px;
}

.atithya-subtitle {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(26, 115, 232, 0.08);
  color: #1a73e8;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.atithya-why-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 15px;
}

.atithya-why-header p {
  color: #6b7280;
  font-size: 17px;
  line-height: 1.7;
}

.atithya-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.atithya-why-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.35s ease;
  border: 1px solid #edf2f7;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.atithya-why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.why-icon {
  width: 65px;
  height: 65px;
  border-radius: 18px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon i {
  color: #fff;
  font-size: 28px;
}

.atithya-why-card h4 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111827;
}

.atithya-why-card p {
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
  font-size: 15px;
}

/* =========================
   CARD COLORS
========================= */

.card-1 .why-icon {
  background: linear-gradient(135deg,#2563eb,#3b82f6);
}

.card-2 .why-icon {
  background: linear-gradient(135deg,#ec4899,#f472b6);
}

.card-3 .why-icon {
  background: linear-gradient(135deg,#10b981,#34d399);
}

.card-4 .why-icon {
  background: linear-gradient(135deg,#f59e0b,#fbbf24);
}

.card-5 .why-icon {
  background: linear-gradient(135deg,#8b5cf6,#a78bfa);
}

.card-6 .why-icon {
  background: linear-gradient(135deg,#ef4444,#f87171);
}

/* Top Border Accent */

.card-1 {
  border-top: 4px solid #2563eb;
}

.card-2 {
  border-top: 4px solid #ec4899;
}

.card-3 {
  border-top: 4px solid #10b981;
}

.card-4 {
  border-top: 4px solid #f59e0b;
}

.card-5 {
  border-top: 4px solid #8b5cf6;
}

.card-6 {
  border-top: 4px solid #ef4444;
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {
  .atithya-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .atithya-why-section {
    padding: 70px 0;
  }

  .atithya-why-header h2 {
    font-size: 32px;
  }

  .atithya-why-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .atithya-why-card {
    min-height: auto;
    padding: 24px 20px;
  }

  .why-icon {
    width: 60px;
    height: 60px;
  }

  .why-icon i {
    font-size: 24px;
  }
}