@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Questrial", sans-serif;
  --nav-font: "Open Sans", sans-serif;
}

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

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(83, 93, 107, 0.875);
  /* The default color of the main navmenu links */
  --nav-hover-color: #0b1e38;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #535d6b;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #5c99ee;
  /* 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: #f8fbff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --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);
  overflow-x: hidden;
}

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

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

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

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {

  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 5px;
  }

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

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

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

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

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

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: 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);
    text-transform: capitalize;
  }

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

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

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

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

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

/* Mobile Navigation */
@media (max-width: 1199.98px) {
   .header .logo {
    order: 1;
  }
  .header .navmenu {
    order: 3;
  }
  .header .btn-appointment{
    order: 2;
    margin: 0 10px 0 0;
  }
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

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

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

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

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

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

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

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

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

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: 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;
  }
}

/* Megamenu 2 - Desktop */
@media (min-width: 1200px) {
  .navmenu .megamenu-2 {
    position: static;
    /* Hide Mobile Megamenu in Desktop */
    /* Tab Navigation */
    /* Tab Content */
  }

  .navmenu .megamenu-2 .mobile-megamenu {
    display: none;
  }

  .navmenu .megamenu-2 .desktop-megamenu {
    background-color: var(--nav-dropdown-background-color);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    border-radius: 6px;
    z-index: 99;
    padding: 0;
    display: flex;
    max-height: 80vh;
    overflow: hidden;
  }

  .navmenu .megamenu-2:hover>.desktop-megamenu {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .megamenu-2 .tab-navigation {
    width: 250px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 25px 0;
    flex-shrink: 0;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs {
    border: none;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item {
    width: 100%;
    padding-left: 10px;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    border: none;
    width: 100%;
    background: transparent;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    border-radius: 0;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
    padding-left: 30px;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link.active {
    background-color: var(--surface-color);
    border-left-color: var(--accent-color);
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link.active i {
    color: var(--accent-color);
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link.active span {
    color: var(--accent-color);
    font-weight: 600;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link i {
    font-size: 20px;
    transition: 0.3s;
    flex-shrink: 0;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link span {
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
  }

  .navmenu .megamenu-2 .tab-content {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
    /* Content Grid Layout */
    /* Featured Banner */
    /* Resources Layout */
  }

  .navmenu .megamenu-2 .tab-content .content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
    align-items: start;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section h4 {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    transform: translateX(8px);
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link:hover i {
    color: var(--accent-color);
    transform: scale(1.1);
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link i {
    color: color-mix(in srgb, var(--nav-dropdown-color), transparent 20%);
    font-size: 18px;
    transition: all 0.3s;
    min-width: 18px;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link div {
    flex: 1;
    min-width: 0;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link div span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
    line-height: 1.3;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link div small {
    color: color-mix(in srgb, var(--nav-dropdown-color), transparent 40%);
    font-size: 12px;
    line-height: 1.3;
    display: block;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner {
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info {
    flex: 1;
    min-width: 0;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info h5 {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info p {
    color: var(--nav-dropdown-color);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn:hover {
    color: color-mix(in srgb, var(--accent-color), black 15%);
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn:hover i {
    transform: translateX(4px);
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn i {
    transition: 0.3s;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: start;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category {
    background-color: var(--surface-color);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.3s;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    border-color: var(--accent-color);
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category i {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 15px;
    display: block;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category h5 {
    color: var(--heading-color);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category p {
    color: var(--nav-dropdown-color);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link {
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link:hover {
    color: color-mix(in srgb, var(--accent-color), black 15%);
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link:hover i {
    transform: translateX(3px);
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link i {
    transition: 0.3s;
  }
}

/* Megamenu 2 - Mobile */
@media (max-width: 1199px) {
  /* Hide Desktop Megamenu in Mobile */
  .navmenu .megamenu-2 .desktop-megamenu {
    display: none;
  }

  .navmenu .megamenu-2 .mobile-megamenu {
    position: static;
    display: none;
    z-index: 99;
    padding: 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;
    border-radius: 6px;
    overflow: hidden;
  }

  .navmenu .megamenu-2 .mobile-megamenu li {
    position: relative;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .megamenu-2 .mobile-megamenu li:last-child {
    border-bottom: none;
  }

  .navmenu .megamenu-2 .mobile-megamenu li a {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--nav-dropdown-color);
    font-size: 15px;
    transition: 0.3s;
    font-weight: 500;
  }

  .navmenu .megamenu-2 .mobile-megamenu li a:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .navmenu .megamenu-2 .mobile-megamenu li ul {
    padding: 0;
    background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  }

  .navmenu .megamenu-2 .mobile-megamenu li ul li a {
    padding-left: 35px;
    font-size: 14px;
    font-weight: 400;
  }

  .navmenu .megamenu-2 .mobile-megamenu.dropdown-active {
    display: block;
  }
}

/* Extended Dropdown 2 - Desktop */
@media (min-width: 1200px) {
  .extended-dropdown-2 ul {
    min-width: 380px;
    padding: 12px;
    border-radius: 14px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
    background-color: color-mix(in srgb, var(--nav-dropdown-background-color), transparent 5%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .extended-dropdown-2 ul li {
    min-width: auto;
    border-bottom: none;
  }

  .extended-dropdown-2 ul li:not(:last-child) {
    margin-bottom: 6px;
  }

  .extended-dropdown-2 ul a {
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: var(--nav-dropdown-color);
    transition: all 0.25s ease;
    border-radius: 10px;
    background-color: transparent;
    position: relative;
  }

  .extended-dropdown-2 ul a .menu-item-content {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
  }

  .extended-dropdown-2 ul a .menu-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .extended-dropdown-2 ul a .menu-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #7644ff 80%));
    opacity: 0.15;
    z-index: -1;
    transition: all 0.3s ease;
  }

  .extended-dropdown-2 ul a .menu-icon i {
    font-size: 18px;
    color: var(--accent-color);
    margin: 0;
    transition: all 0.3s ease;
  }

  .extended-dropdown-2 ul a .menu-text {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .extended-dropdown-2 ul a .menu-text .menu-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 3px;
    color: var(--nav-dropdown-color);
    transition: color 0.3s ease;
  }

  .extended-dropdown-2 ul a .menu-text .menu-description {
    font-size: 13px;
    color: color-mix(in srgb, var(--nav-dropdown-color), transparent 40%);
    font-weight: 400;
    transition: color 0.3s ease;
  }

  .extended-dropdown-2 ul a .menu-badge {
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    margin-left: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  .extended-dropdown-2 ul a .menu-badge.hot {
    background-color: color-mix(in srgb, #ff5722, transparent 85%);
    color: #ff5722;
  }

  .extended-dropdown-2 ul a .menu-badge.updates {
    background-color: color-mix(in srgb, #4caf50, transparent 85%);
    color: #4caf50;
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
  }

  .extended-dropdown-2 ul a:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .extended-dropdown-2 ul a:hover .menu-icon {
    transform: translateY(-2px);
  }

  .extended-dropdown-2 ul a:hover .menu-icon::before {
    opacity: 0, 3;
    box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
  }

  .extended-dropdown-2 ul a:hover .menu-icon i {
    color: color-mix(in srgb, var(--accent-color), #000000 10%);
  }

  .extended-dropdown-2 ul a:hover .menu-text .menu-title {
    color: var(--nav-dropdown-hover-color);
  }

  .extended-dropdown-2 ul a:hover .menu-text .menu-description {
    color: color-mix(in srgb, var(--nav-dropdown-hover-color), transparent 30%);
  }

  .extended-dropdown-2 ul a:hover .menu-badge {
    transform: scale(1.05);
  }

  .extended-dropdown-2 ul a:hover .menu-badge:not(.hot):not(.updates) {
    background-color: color-mix(in srgb, var(--accent-color), transparent 75%);
  }

  .extended-dropdown-2 ul a:hover .menu-badge.hot {
    background-color: color-mix(in srgb, #ff5722, transparent 75%);
  }

  .extended-dropdown-2 ul a:hover .menu-badge.updates {
    background-color: color-mix(in srgb, #4caf50, transparent 75%);
  }
}

/* Extended Dropdown 2 - Mobile */
@media (max-width: 1199px) {
  .extended-dropdown-2 ul {
    background-color: var(--nav-mobile-background-color);
    border-radius: 10px;
    padding: 10px;
  }

  .extended-dropdown-2 ul li:not(:last-child) {
    margin-bottom: 5px;
  }

  .extended-dropdown-2 ul a {
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .extended-dropdown-2 ul a .menu-item-content {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .extended-dropdown-2 ul a .menu-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }

  .extended-dropdown-2 ul a .menu-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #7644ff 80%));
    opacity: 0.15;
    z-index: -1;
  }

  .extended-dropdown-2 ul a .menu-icon i {
    font-size: 16px;
    color: var(--accent-color);
    margin: 0;
  }

  .extended-dropdown-2 ul a .menu-text {
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .extended-dropdown-2 ul a .menu-text .menu-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
  }

  .extended-dropdown-2 ul a .menu-text .menu-description {
    font-size: 12px;
    color: color-mix(in srgb, var(--nav-dropdown-color), transparent 40%);
  }

  .extended-dropdown-2 ul a .menu-badge {
    padding: 3px 8px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    margin-left: 10px;
    flex-shrink: 0;
  }

  .extended-dropdown-2 ul a .menu-badge.hot {
    background-color: color-mix(in srgb, #ff5722, transparent 85%);
    color: #ff5722;
  }

  .extended-dropdown-2 ul a .menu-badge.updates {
    background-color: color-mix(in srgb, #4caf50, transparent 85%);
    color: #4caf50;
    min-width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
  }

  .extended-dropdown-2 ul a:hover,
  .extended-dropdown-2 ul a:active {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .extended-dropdown-2 ul a:hover .menu-text .menu-title,
  .extended-dropdown-2 ul a:active .menu-text .menu-title {
    color: var(--nav-dropdown-hover-color);
  }

  .extended-dropdown-2 ul .active {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .extended-dropdown-2 ul .active .menu-title {
    color: var(--nav-dropdown-hover-color);
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: var(--background-color);
  font-size: 14px;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer-lower .footer-links ul a {
  color: var(--default-color);
  /* distinct from the upper footer */
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  transition: 0.3s;
}

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

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

.footer-lower .footer-links ul a i {
  color: var(--accent-color);
  /* Accent chevrons instead of white */
}

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

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

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

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

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

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

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

.footer .footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {


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

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

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

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

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

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

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

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

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

/*--------------------------------------------------------------
# Scroll Book Meeting Button
--------------------------------------------------------------*/
.scroll-book-btn {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 0;
  bottom: 85px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 996;
  transition: all 0.4s;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

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

.scroll-book-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.scroll-book-btn i {
  font-size: 20px;
  line-height: 0;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Custom Hero Section
--------------------------------------------------------------*/
.hero-custom {
  padding: 80px 0 60px 0;
  background-color: #ffffff;
}

.hero-container {
  max-width: 1320px;
}

.hero-left-box {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: radial-gradient(circle at 10% 20%, rgba(200, 200, 200, 0.05) 0%, transparent 20%), radial-gradient(circle at 90% 80%, rgba(200, 200, 200, 0.05) 0%, transparent 20%);
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 24px;
  align-self: flex-start;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.hero-title {
  font-size: 50px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 18px;
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 95%;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 40px;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-actions {
    flex-direction: row;
    align-items: flex-end;
  }
  .hero-actions .phone-block {
    flex: 1;
  }
}

.office-label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--heading-color);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
  padding-left: 2px;
  text-align: center;
}

.btn-appointment {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-appointment:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
}
@media (max-width: 767.98px) {
  .phone-block
  {width: 100%}
}
.btn-schedule {
  color: var(--accent-color);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-schedule i {
  font-size: 18px;
}

.btn-schedule:hover {
  color: color-mix(in srgb, var(--accent-color), black 15%);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-avatars {
  display: flex;
  align-items: center;
}

.trust-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #f7f9f8;
  margin-left: -12px;
  object-fit: cover;
}

.trust-avatars img:first-child {
  margin-left: 0;
}

.avatar-more {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f7f9f8;
  margin-left: -12px;
  z-index: 1;
}

.trust-text {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

/* Right Box */
.hero-right-box {
  background-color: var(--accent-color);
  border-radius: 30px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-services-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 440px;
  z-index: 2;
}

.hero-fade-container {
  position: absolute;
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* Align cards to the right */
  z-index: 2;
  bottom: 0;
  right: 40px;
}

.fade-card {
  position: absolute;
  width: 100%;
  max-width: 440px;
  right: 0;
  /* Anchor to the right edge */
  opacity: 0;
  animation: fadeSequential 24s infinite;
}

.fade-card:nth-child(1) {
  animation-delay: 0s;
}

.fade-card:nth-child(2) {
  animation-delay: 4s;
}

.fade-card:nth-child(3) {
  animation-delay: 8s;
}

.fade-card:nth-child(4) {
  animation-delay: 12s;
}

.fade-card:nth-child(5) {
  animation-delay: 16s;
}

.fade-card:nth-child(6) {
  animation-delay: 20s;
}

@keyframes fadeSequential {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  4% {
    opacity: 1;
    transform: translateY(0);
  }

  16% {
    opacity: 1;
    transform: translateY(0);
  }

  20% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.hero-service-card {
  background: var(--accent-color);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.hero-service-card a
{ display: flex;
  align-items: center;
  gap: 16px;}

.hero-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.hero-service-card i {
  background-color: #fff;
  color: var(--accent-color);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 22px;
  flex-shrink: 0;
}

.hero-service-card span {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
}

.hero-main-img {
  max-width: 90%;
  z-index: 1;
  position: relative;
  margin-bottom: -10px;
}

.badge-24h {
  position: absolute;
  top: 40px;
  right: 40px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  padding: 15px 25px;
  border-radius: 12px;
  text-align: center;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.badge-24h .badge-number {
  font-size: 24px;
  font-weight: 800;
  color: #111;
  line-height: 1;
  margin-bottom: 4px;
}

.badge-24h .badge-text {
  font-size: 13px;
  color: #333;
  font-weight: 500;
  line-height: 1.2;
}

.badge-doctors {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.badge-doc-info {
  text-align: left;
}

.badge-doc-num {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  line-height: 1;
}

.badge-doc-text {
  font-size: 12px;
  color: #555;
  font-weight: 500;
}

.badge-doc-avatars {
  display: flex;
}

.badge-doc-avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  object-fit: cover;
}

.badge-doc-avatars img:first-child {
  margin-left: 0;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 40px;
  }

  .hero-left-box {
    padding: 40px 30px;
  }

  .hero-right-box {
    min-height: 500px;
  }
}

@media (max-width: 767px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .badge-24h {
    top: 20px;
    right: 20px;
    padding: 10px 15px;
  }

  .badge-doctors {
    left: 10px;
    padding: 10px 15px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-section {
  background-color: var(--surface-color);
  overflow: hidden;
}

.about-image-wrapper {
  padding-right: 30px;
  padding-bottom: 30px;
}

.about-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}

.experience-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--accent-color);
  color: #fff;
  padding: 30px 40px;
  border-radius: 20px 0 20px 0;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
}

.experience-badge .exp-number {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.experience-badge .exp-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-label {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  padding: 6px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50px;
  margin-bottom: 20px;
}

.about-title {
  font-size: 38px;
  color: var(--heading-color);
  line-height: 1.3;
}

.about-text {
  color: #555;
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .about-image-wrapper {
    padding-right: 0;
    padding-bottom: 0;
    margin-bottom: 30px;
  }

  .experience-badge {
    bottom: -20px;
    right: 20px;
    border-radius: 15px;
    padding: 20px 30px;
  }

  .content.ps-lg-5 {
    padding-left: calc(var(--bs-gutter-x) * .5) !important;
  }
}

/*--------------------------------------------------------------
# Videos Section
--------------------------------------------------------------*/
.videos {
  background-color: var(--surface-color);
}

.video-presentation-card {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  /* Off-white background as seen in the mockup */
  border-radius: 20px;
  padding: 15px;
  /* Creates the thick white border effect around the image */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-presentation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.video-img-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: visible;
  /* Need overflow visible so the play button can stick out slightly */
}

.video-img-wrapper img {
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.video-presentation-card:hover .video-img-wrapper img {
  transform: scale(1.02);
}

.play-button-overlay {
  position: absolute;
  bottom: -25px;
  /* Shift it slightly off the bottom edge */
  left: 20px;
  width: 80px;
  height: 80px;
  background-color: var(--accent-color);
  /* The bright cyan color from the attachment */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  z-index: 5;
}

.play-button-overlay i {
  font-size: 38px;
  color: #fff;
  margin-left: 5px;
  /* Visually center the play triangle shape */
}

.video-presentation-card:hover .play-button-overlay {
  transform: scale(1.1);
  background-color: var(--accent-color);
}

.video-title {
  color: #000;
  font-weight: 700;
  font-size: 20px;
  padding-left: 5px;
  transition: color 0.3s ease;
  padding-top: 15px;
}

/*--------------------------------------------------------------
# Premium Services Section
--------------------------------------------------------------*/
.services-premium {
  background-color: var(--accent-color);
  /* Abstract diagonal lines pattern over the accent color background */
  background-image:
    repeating-linear-gradient(135deg,
      rgba(255, 255, 255, 0.04) 0px,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 40px),
    repeating-linear-gradient(45deg,
      rgba(255, 255, 255, 0.04) 0px,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 60px);
  margin: 0px 10px;
  border-radius: 25px;
}

.services-heading {
  color: #fff;
  font-size: 42px;
  font-weight: 900;
}

.services-subheading {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.accent-text {
  color: #f7cd6a;
  /* Theme gold/yellow accent */
}

.service-premium-card {
  padding: 40px;
  border-radius: 12px;
  background-color: #ffffff;
  /* Default bg */
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.service-premium-card:hover {
  transform: translateY(-5px);
}

/* Card Variations using Theme Colors */
.service-premium-card.bg-surface-alt {
  background-color: color-mix(in srgb, var(--heading-color) 4%, var(--surface-color));
  /* Very light slate */
}

.service-premium-card.bg-accent-light {
  background-color: color-mix(in srgb, var(--accent-color) 6%, var(--surface-color));
  /* Very light blue */
}

.service-premium-card.bg-dark-theme {
  background-color: color-mix(in srgb, var(--heading-color) 85%, black);
  /* Extra Dark slate */
}

.service-premium-card.bg-accent-theme {
  background-color: var(--accent-color);
  /* Deep Blue */
}

.service-premium-card.bg-dark-theme-alt {
  background-color: var(--heading-color);
  /* Slate dark */
}

/* Typography Inside Cards */
.service-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.service-text {
  font-size: 16px;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.6;
}

.service-link {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s ease;
}

.service-link:hover {
  opacity: 0.8;
}



/* Bootstrap Icons styling */
.service-icon-geometric {
  width: 60px;
  height: 60px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.service-icon-geometric i {
  font-size: 48px;
  line-height: 1;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Philosophy Section
--------------------------------------------------------------*/
.philosophy {
  background-color: var(--surface-color);
}

.philosophy-subtitle {
  color: var(--accent-color);
  letter-spacing: 2px;
  font-size: 14px;
}

.philosophy-title {
  color: var(--heading-color);
}

.philosophy-divider {
  width: 60px;
  height: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
#testimonials {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  background-size: 26px 26px;
  padding: 60px 0px;
  position: relative;
  overflow: hidden;
  padding-bottom: 110px;
}

/* Section header */
.testi-header {
  margin-bottom: 52px;
}

.testi-header .section-eyebrow {
  color: var(--heading-color);
}

/* Large two-line title */
.testi-main-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--accent-color);
  line-height: 1.15;
  margin-bottom: 18px;
  font-weight: 900;
}

/* Second line in gold */
.testi-title-accent {
  color: var(--gold-dark);
}

/* Subtitle paragraph */
.testi-subtitle {
  font-size: 0.97rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* 2-column equal-height grid */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
}

/* 3rd card centred beneath the two */
.testi-card-center {
  grid-column: 1 / -1;
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 767px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }

  .testi-card-center {
    max-width: 100%;
  }
}

.testimonial-slide {
  display: none;
  animation: fadeSlide 0.45s ease;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

/* ── Card ── */
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  border-left: 5px solid var(--accent-color);
  padding: 48px 52px 40px;
  max-width: 100%;
  position: relative;
  box-shadow: 0 8px 40px rgba(10, 42, 110, .10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(10, 42, 110, .14);
}

/* Watermark large quote icon (the .testi-quote-bg element) */
.testi-quote-bg {
  position: absolute;
  bottom: -10px;
  right: 32px;
  font-size: 11rem;
  line-height: 1;
  color: var(--navy);
  opacity: 0.04;
  font-family: Georgia, serif;
  pointer-events: none;
  user-select: none;
}

/* Stars */
.testimonial-stars {
  color: #FBBC05;
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  display: flex;
  gap: 2px;
}

/* Quote text */
.testimonial-quote {

  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  border: none;
  padding: 0;
}

/* Author row */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

/* Avatar */
.testimonial-avatar-initials {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 0 0 4px rgba(184, 147, 74, .18);
}

.testimonial-avatar-initials img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* Author name */
.testimonial-name {
  font-weight: 700;
  color: var(--accent-color);
  font-size: 0.97rem;
  margin-bottom: 3px;
}

/* Author title */
.testimonial-title {
  font-size: 0.78rem;
  color: var(--heading-color);
  line-height: 1.4;
}

/* Controls */
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

/* Nav arrow buttons */
.testi-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testi-arrow:hover {
  background: var(--navy);
  color: var(--gold);
}

/* Dots on light background */
.testi-dot {
  background: var(--gray-200) !important;
}

.testi-dot.active {
  background: var(--navy) !important;
}

/*--------------------------------------------------------------
# Logo Carousel Section
--------------------------------------------------------------*/
#logo-carousel-main {
  background-color: var(--surface-color);
}

#logo-carousel-voluntary {
  padding-top: 50px;
  padding-bottom: 50px;
}

.shape-divider-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 10;
}

.shape-divider-top svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 56px;
}

.gold-bar {
  display: block;
  height: 4px;
  background-color: var(--accent-color);
  width: 80px;
  border-radius: 2px;
}

.logo-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 15px;
}

.logo-slider-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  width: 100%;
  padding: 15px 0;
}

.logo-slider-viewport::-webkit-scrollbar {
  display: none;
}

.logo-slider-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  padding: 0 10px;
}

.logo-slide-item {
  scroll-snap-align: center;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 180px;
  height: 100px;
}



.p-c-logos img {
  padding: 15px 0px;
  height: 160px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.medical-logos img {
  height: 100px;
  max-width: 180px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  padding: 0px 12px;
  transition: all 0.3s ease;
}

.medical-logos .logo-slide-item:hover img {
  filter: grayscale(0%) opacity(1);
}

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

.logo-slider-arrow {
  background: #fff;
  border: 1px solid #eaeaea;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: var(--accent-color);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  z-index: 10;
  transition: all 0.3s ease;
}

.logo-slider-arrow:hover {
  background: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
}

.logo-slider-prev {
  left: -20px;
}

.logo-slider-next {
  right: -20px;
}

@media (max-width: 768px) {
  .logo-slider-arrow {
    display: none;
    /* Hide arrows on mobile to prefer native swiping */
  }

  .logo-slider-wrap {
    padding: 0;
  }
}

/* ─── SHAPE DIVIDERS ─────────────────────────────────────────── */
.shape-divider-top {
  overflow: visible;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

.shape-divider-top svg {
  position: absolute;
  top: -56px;
  left: 0;
  width: 100%;
  height: 56px;
  display: block;
}


.breadcrumb-hero{
position:relative;
padding:90px 0;
overflow:hidden;
background: linear-gradient(to bottom, rgba(0,0,0,0.85), rgba(40,58,144,0.4)),
    url('../images/stockphotoscom-2186806.jpg');

background-size: cover;
background-position: 60% 20%;
background-repeat: no-repeat;
color:#fff;
padding-top: 120px;
}

/* CONTENT */

.breadcrumb-content{
text-align:center;
position:relative;
z-index:2;
}

.breadcrumb-content h1{
font-size:42px;
font-weight:700;
margin-bottom:10px;
color:#fff;
}

.breadcrumb-nav{
font-size:15px;
}

.breadcrumb-nav a{
color:#fff;
text-decoration:none;
opacity:.9;
}

.breadcrumb-nav span{
margin:0 6px;
opacity:.8;
}

/* WAVES */

.wave{
position:absolute;
left:0;
width:100%;
height:120px;
background:rgba(255,255,255,0.08);
border-radius:50% 50% 0 0;
}

.wave1{
bottom:-40px;
transform:scaleX(1.4);
}

.wave2{
bottom:-80px;
background:rgba(255,255,255,0.15);
transform:scaleX(1.8);
}



/* SECTION */

.ceo-section{
position:relative;
padding:50px 0;
background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
overflow:hidden;
margin: 20px 20px;
border-radius: 15px;
border: 1px solid var(--accent-color);
}

/* ABSTRACT SHAPES */





/* IMAGE */

.ceo-img{
position:relative;
z-index:2;
}

.ceo-img:before{
content:"";
position:absolute;
width:100%;
height:100%;
border:4px solid var(--accent-color);
top:20px;
left:20px;
border-radius:14px;
z-index:-1;
}

.ceo-img img{
width:100%;
border-radius:14px;
box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

/* CONTENT */

.ceo-content{
position:relative;
z-index:2;
}

.ceo-content h2{
font-size:36px;
margin-bottom:6px;
}

.ceo-role{
color:var(--accent-color);
font-weight:600;
margin-bottom:22px;
}

.ceo-content p{
color:#444;
margin-bottom:16px;
line-height:1.8;
}
ul.ceo li
{margin-bottom: 15px}
/* RESPONSIVE */

@media(max-width:992px){

.ceo-img{
margin-bottom:40px;
}

}


/* FLOATING BAR */

.floating-contact{
position:fixed;
right:2%;
top:40%;
transform:translateY(-50%);
z-index:999;
display:flex;
flex-direction:column;
gap:15px;
display: none;
}

/* ICON BUTTON */

.contact-btn{
width:45px;
height:45px;
background:#1877f2;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:18px;
border-radius:50%;
text-decoration:none;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
transition:0.3s;
border: 2px solid #1877f2;
}

.contact-btn:hover{
transform:scale(1.1);
color: #fff;
}

/* TOOLTIP */

.contact-item{
position:relative;
}

.contact-tooltip{
position:absolute;
right:70px;
top:50%;
transform:translateY(-50%) scale(0.9);
background:#fff;
padding:12px 16px;
border-radius:8px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
white-space:nowrap;
font-size:14px;
opacity:0;
pointer-events:none;
transition:0.3s;
}

.contact-tooltip strong{
color:var(--accent-color);
}

/* SHOW ON HOVER */

.contact-item:hover .contact-tooltip{
opacity:1;
transform:translateY(-50%) scale(1);
}
@media(max-width:767.98px){
  .floating-contact
  {display: none;}
}

/* SECTION */

.investment-section{
padding:80px 0;
display:flex;
justify-content:center;
padding-bottom: 40px;
}

/* GRID CONTAINER */

.investment-grid{
display:grid;
grid-template-columns:1fr 1fr;
max-width:1200px;
width:100%;
border-radius:18px;
overflow:hidden;
}

/* LEFT CONTENT */

.investment-content{
background-color: color-mix(in srgb, var(--accent-color), transparent 90%);

padding:70px;
display:flex;
flex-direction:column;
justify-content:center;
}

.investment-content h2{
font-size:42px;
line-height:1.3;
margin-bottom:25px;
font-weight: 600;
color: var(--accent-color);
border-left: 13px solid var(--accent-color);
padding-left: 30px;
}

.investment-content p{
font-size:20px;
line-height:1.6;
font-weight: 600;
margin-bottom:35px;
}

/* BUTTON */

.investment-btn{
display:inline-flex;
align-items:center;
gap:10px;
background:#e6d079;
color:#000;
padding:16px 28px;
border-radius:10px;
font-weight:600;
text-decoration:none;
width:max-content;
transition:0.3s;
}

.investment-btn:hover{
transform:translateY(-3px);
}

/* IMAGE SIDE */

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

/* MOBILE */

@media (max-width:767.98px){

.investment-grid{
grid-template-columns:1fr;
}

.investment-content{
padding:50px 30px;
}

.investment-content h2{
font-size:30px;
}

.investment-content p{
font-size:18px;
}

}
/* SECTION */




/* GRID */

.process-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
position:relative;
padding-top:60px;
}

/* CONNECTOR LINE */




/* ITEM */

.process-item{
text-align:center;
position:relative;
z-index:2;
padding:20px;
background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
transition:.3s;
}

.process-item:hover{
transform:translateY(-5px);
box-shadow:0 15px 35px rgba(0,0,0,0.08);
}


/* ICON */

.process-icon{
width:45px;
height:45px;
margin:auto;
margin-top:-45px;
margin-bottom:15px;
background:var(--accent-color);
color:#fff;
display:flex;
align-items:center;
justify-content:center;
border-radius:6px;
font-size:20px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}


/* TEXT */

.process-item h3{
margin-bottom:8px;
font-size:28px;
color: var(--accent-color);
}

.process-item p{
font-size:14px;
line-height:1.6;
}


/* MOBILE */

@media (max-width:768px){

.process-grid{
grid-template-columns:1fr;
padding-top:0;
}

.process-grid:before{
display:none;
}

.process-icon{
margin-top:0;
}

}


h2.page-tittle 
{font-size: 2rem; font-weight: 800}
h2.page-tittle span
{color: var(--accent-color);}




/*--------------------------------------------------------------
# Benefits Services Section
--------------------------------------------------------------*/


.services-container {
  max-width: 1200px;
  margin: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
  border-top: 4px solid var(--accent-color);
  transition: .3s;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 22px;
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
}

.service-card p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 15px;
}

.service-card ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.service-card li {
  margin-bottom: 10px;
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.5;
}

.services-highlight {
  margin-top: 60px;
  display: flex;
  gap: 25px;
  align-items: center;
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
  border-left: 6px solid var(--accent-color);
}

.services-highlight i {
  font-size: 48px;
  color: var(--accent-color);
}

.services-highlight p {
  margin: 0;
  line-height: 1.8;
  font-size: 17px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .services-highlight {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
}

@media (max-width: 600px) {
  .services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}

/* --- HR Compliance Page Styles --- */
.hr-resource-section {
  padding: 60px 0;
}

.hr-resource-section h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.hr-resource-section p {
  max-width: 100%;
  text-align: left;
  padding-bottom: 30px;
  line-height: 1.8;
}

.hr-resource-section img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.hr-resource-section .zywave-cloud-img {
  margin-bottom: 20px;
}
/* --- Outsourced HR Premium Design --- */
.outsourced-hr-premium {
  --premium-gradient: linear-gradient(135deg, #0328ab 0%, #001a70 100%);
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(255, 255, 255, 0.1);
}



.outsourced-hr-premium .approach-section {
  background: #fdfdfd;
  padding: 80px 0;
}

.outsourced-hr-premium .approach-section p {
  font-size: 20px;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  font-weight: 300;
}

.outsourced-hr-premium .service-detail-card {
  padding: 50px 40px;
  border-radius: 20px;
  background: #fff;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0,0,0,0.05);
  height: 100%;
}

.outsourced-hr-premium .service-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(3, 40, 171, 0.1) !important;
}

.outsourced-hr-premium .service-detail-card h2 {
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 26px;
}

.outsourced-hr-premium .service-detail-card p {
  font-size: 16px;
  line-height: 1.7;
}

.outsourced-hr-premium .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.outsourced-hr-premium .service-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 24px;
  padding: 45px 35px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.outsourced-hr-premium .service-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.outsourced-hr-premium .service-icon {
  width: 65px;
  height: 65px;
  background: #f0f4ff;
  color: var(--accent-color);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  font-size: 28px;
  transition: all 0.3s ease;
}

.outsourced-hr-premium .service-card:hover .service-icon {
  background: var(--accent-color);
  color: #fff;
  transform: scale(1.1);
}

.outsourced-hr-premium .service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
}

.outsourced-hr-premium .service-card ul {
  padding: 0;
  margin: 0;
  width: 100%;
}

.outsourced-hr-premium .service-card ul li {
  list-style: none;
  font-size: 15px;
  color: #555;
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
  display: flex;
  align-items: center;
}

.outsourced-hr-premium .service-card ul li:last-child {
  border-bottom: none;
}

.outsourced-hr-premium .service-card ul li::before {
  content: "→";
  color: var(--accent-color);
  font-weight: bold;
  margin-right: 12px;
  transition: transform 0.3s ease;
}

.outsourced-hr-premium .service-card:hover ul li::before {
  transform: translateX(3px);
}

/* Animations */
.outsourced-hr-premium .animate-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.outsourced-hr-premium .animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MAIN SECTION */
.about-area{
    
}

/* CONTENT SPACING */
.about-area .content{
    margin-bottom:60px;
}

/* MAIN HEADINGS */
.about-area h2{
    font-size:32px;
    font-weight:700;
    color:var(--accent-color);
    margin-bottom:20px;
    border-left:5px solid var(--accent-color);
    padding-left:15px;
}

/* SUB HEADINGS */
.about-area h3{
    font-size:20px;
    font-weight:600;
    margin-top:25px;
    margin-bottom:10px;
}

/* PARAGRAPHS */
.about-area p{
    font-size:16px;
    line-height:1.8;
    margin-bottom:15px;
}

/* LIST STYLE */
.about-area ul{
    padding-left:0;
}

.about-area ul.ceo{
    list-style:none;
}

/* LIST ITEMS */
.about-area ul.ceo li{
    position:relative;
    padding-left:28px;
    margin-bottom:10px;
    font-size:15px;
    line-height:1.6;
    color:#444;
}

/* CUSTOM ICON BULLET */
.about-area ul.ceo li:before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:var(--accent-color);
    font-weight:bold;
}

/* COLUMN CARD STYLE */
.about-area .col-md-4,
.about-area .col-md-6{
    background:#f8f9fb;
    padding:25px;
    border-radius:8px;
    border:1px solid #eee;
    margin-top:20px;
}

/* HR LINE */
.about-area hr{
    border:none;
    height:1px;
    background:#e6e6e6;
    margin:60px 0;
}

/* LINKS */
.about-area a{
    color:var(--accent-color);
    font-weight:500;
}

/* NUMBER LIST PARAGRAPH */
.about-area p[style*="margin-left"]{
    background:#f8f9fb;
    padding:12px 15px;
    border-left:3px solid var(--accent-color);
    border-radius:4px;
}

/* MOBILE RESPONSIVE */
@media (max-width:768px){

.about-area h2{
    font-size:26px;
}

.about-area h3{
    font-size:18px;
}

.about-area .col-md-4,
.about-area .col-md-6{
    margin-bottom:20px;
}

}

/* --- Retirement Planning Page Styles --- */
.key-takeaways {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: inset 0 0 10px rgba(0,0,0,0.02);
}

.key-takeaways h5 {
  font-size: 16px;
  color: var(--accent-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.key-takeaways h5 i {
  color: var(--accent-color);
  margin-right: 10px;
}

.key-takeaways .ceo li {
  font-size: 14px;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.benefits-services .services-grid
{grid-template-columns: repeat(3, 1fr);}

@media (max-width: 991px) {
  .benefits-services .services-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* --- Premium Content Styles --- */
.service-card-premium {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
  transition: transform .3s ease;
  height: 100%;
}

.service-card-premium:hover {
  transform: translateY(-5px);
}

.service-card-premium.accent-left {
  border-left: 5px solid var(--accent-color);
}

.service-card-premium .ma-icon {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.feature-box-premium {
  display: flex;
  padding: 24px;
  height: 100%;
  background: #f9f9f9;
  border-radius: 12px;
  border-left: 5px solid var(--accent-color);
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.feature-box-icon {
  flex-shrink: 0;
  margin-right: 1rem;
}

.feature-box-icon i {
  font-size: 30px;
  color: var(--accent-color);
}

.feature-box-content h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.highlight-box-premium {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 30px;
  border-left: 5px solid var(--accent-color);
  border-radius: 0 10px 10px 0;
}

.section-title-premium {
  color: var(--heading-color);
  font-size: 36px;
}

.gold-bar-premium {
  margin: 15px auto;
  width: 80px;
  height: 3px;
  background: var(--accent-color);
  display: block;
}

/* --- PEO Evaluations Page Styles --- */
.peo-hero-split {
  padding: 80px 0;
  background: #fdfdfd;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.peo-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.peo-img-wrapper img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
  object-fit: cover;
}


.peo-hero-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 25px;
}

.peo-hero-list li {
  font-weight: 500;
  display: flex;
  align-items: center;
  color: var(--heading-color);
  font-size: 15px;
}

.peo-hero-list li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 10px;
}

.peo-co-employment-note {
  background: #fff;
  padding: 20px;
  border-left: 5px solid var(--accent-color);
  border-radius: 0 10px 10px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.text-accent {
  color: var(--accent-color);
}

.peo-benefit-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.peo-benefit-card:hover {
  border-bottom-color: var(--accent-color);
  transform: translateY(-5px);
}

.peo-benefit-card i {
  font-size: 32px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.question-card {
  background: #fdfdfd;
  padding: 25px;
  border-left: 4px solid var(--accent-color);
  border-radius: 0 12px 12px 0;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}

.question-card:hover {
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.question-card h5 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 18px;
}


/* --- Resources Page Styles --- */
.resource-intro {
  padding: 80px 0 20px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

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

@media (max-width: 575px) {
  .resource-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.resource-item {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.resource-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border-color: var(--accent-color);
}

.resource-icon {
  width: 60px;
  height: 60px;
  background: rgba(3, 40, 171, 0.1);
  color: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-right: 25px;
  flex-shrink: 0;
}

.resource-info h5 {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
}

.legal-partnership-box {
  background: #000c1f;
  color: #fff;
  padding: 60px;
  border-radius: 25px;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}

.legal-partnership-box::before {
  content: '';
  position: absolute;
  top: 0; right: 0; width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(3, 40, 171, 0.08));
}

.legal-partnership-box h3 {
  color: var(--accent-color);
  font-weight: 800;
  margin-bottom: 20px;
}

.legal-partnership-box p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  max-width: 800px;
}

/* --- Tools Page Styles --- */
.tools-intro {
  padding: 80px 0 20px;
}

.hr-compliance-box {
  background: #fff;
  padding: 50px;
  border-radius: 25px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 20px 50px rgba(0,0,0,0.04);
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hr-compliance-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 6px; height: 100%;
  background: var(--accent-color);
}

.hr-compliance-box h2 {
  color: var(--accent-color);
  font-weight: 800;
  margin-bottom: 25px;
}

.hr-compliance-box p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}

.market-updates-section {
  background: #f8fbff;
  border-radius: 30px;
  padding: 70px;
  margin-top: 50px;
  border: 1px solid rgba(0,0,0,0.02);
}

.market-updates-section h3 {
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.informed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

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

@media (max-width: 575px) {
  .informed-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.informed-item {
  background: #fff;
  padding: 25px 30px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.informed-item:hover {
  transform: translateY(-5px) translateX(5px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(3, 40, 171, 0.1);
}

.informed-item i {
  color: var(--accent-color);
  font-size: 24px;
  margin-right: 20px;
  background: rgba(3, 40, 171, 0.1);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.informed-item span {
  font-weight: 700;
  font-size: 16px;
  color: var(--heading-color);
}

/* --- Contact Page Styles --- */
.contact-section {
  padding: 80px 0;
}

.contact-form-wrapper {
  background: #fff;
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.05);
}

.contact-form-wrapper h3 {
  font-weight: 800;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.contact-info-wrapper {
  padding-left: 40px;
}

@media (max-width: 991px) {
  .contact-info-wrapper {
    padding-left: 0;
    margin-top: 60px;
  }
}

.info-item {
  margin-bottom: 45px;
  display: flex;
  align-items: flex-start;
}

.info-icon {
  width: 55px;
  height: 55px;
  background: rgba(3, 40, 171, 0.1);
  color: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-right: 25px;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.info-content p, .info-content a {
  margin-bottom: 0;
  color: #666;
  line-height: 1.7;
  font-size: 16px;
  text-decoration: none;
}

.info-content a:hover {
  color: var(--accent-color);
}

.form-floating > .form-control {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-control {
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fdfdfd;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 15px rgba(3, 40, 171, 0.08);
  background: #fff;
}

.btn-contact-submit {
  background: var(--accent-color);
  color: #fff;
  padding: 16px 45px;
  border-radius: 12px;
  font-weight: 700;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.btn-contact-submit:hover {
  background: #001b80;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(3, 40, 171, 0.25);
  color: #fff;
}

.book-meeting-card {
  background: var(--accent-color);
  color: #fff;
  padding: 30px;
  border-radius: 20px;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.book-meeting-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(3, 40, 171, 0.3);
}

.book-meeting-card h5 {
  color: #fff; margin-bottom: 0; font-weight: 700;
}

.book-meeting-card .btn-book {
  background: #fff;
  color: var(--accent-color);
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

/* Bento Grid Styling for P&C Section */
.bento-section {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 100px 0;
  margin-top: 100px;
}

.bento-section::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 50%; height: 50%;
  background: radial-gradient(circle, rgba(3, 40, 171, 0.5) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}
.bento-section::after {
  content: '';
  position: absolute;
  bottom: -20%; right: -10%;
  width: 50%; height: 50%;
  background: radial-gradient(circle, rgba(247, 205, 106, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

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

.bento-card {
  position: relative;
  background:#fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  backdrop-filter: blur(20px);
  overflow: hidden;
  z-index: 2;
}

.bento-card:hover {
  transform: translateY(-8px);
  background: #fff;
}

.bento-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  margin-bottom: 24px;
  box-shadow: 0 8px 16px rgba(3, 40, 171, 0.3);
}
.bento-icon-gold {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  margin-bottom: 24px;
  box-shadow: 0 8px 16px rgba(3, 40, 171, 0.3);
}

.bento-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.bento-text {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 30px;
  flex-grow: 1;
}

.bento-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
  width: fit-content;
}

.bento-link:hover {
  color: var(--accent-color);
}
.bento-link i {
  transition: transform 0.3s ease;
}
.bento-link:hover i {
  transform: translateX(5px);
}

.bento-card-large {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.bento-card-large .bento-content {
  flex: 1;
  padding-right: 40px;
}
.bento-card-large .bento-graphic {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  font-size: 160px;
  color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: rotate(-10deg);
  transition: all 0.5s ease;
}
.bento-card-large:hover .bento-graphic {
  opacity: 1;
  color: rgba(3, 40, 171, 0.15);
  transform: rotate(0deg) scale(1.1);
}

@media (max-width: 991px) {
  .bento-card-large {
    flex-direction: column;
    align-items: flex-start;
  }
  .bento-card-large .bento-content {
    padding-right: 0;
  }
  .bento-card-large .bento-graphic {
    display: none;
  }
}
@media (max-width: 513.98px) {
  .header .logo img {
  max-height: 30px;
  margin-right: 8px;
}
.hero-fade-container
{right: 0px}
.main-slider-swipe img
{
  height: auto!important;
}
.hero-right-box {
    min-height: 400px!important;
  }
  .services-heading {
  color: #fff;
  font-size: 29px;
  font-weight: 900;
}
}
@media (min-width: 1400px) {
  .header .container-fluid
  {max-width: 1400px!important;}
  .header .logo img {
  max-height: 70px;
  margin-right: 8px;
}
.hero-custom .container-fluid
  {max-width: 1400px!important;}
  .hero-custom {
  padding: 107px 0 60px 0;
  background-color: #ffffff;
}
}