:root {
  --default-font: 'Be Vietnam Pro', sans-serif;
  --heading-font: 'Be Vietnam Pro', sans-serif;
  --nav-font: 'Be Vietnam Pro', sans-serif;
  --body-font-weight: 400;
}



/* 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: #F8F9FB; /* Background color for the entire website, including individual sections */
  --default-color: #0a0a0a; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0B3558; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0058D3; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #0058D3; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0d83fd; /* 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: #f3f9ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0058D3;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0058D3;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}



/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  padding: 0;
  transition: all 0.5s;
  z-index: 997;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}

.header .header-container {
  border-radius: 0;
  padding: 5px 25px;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Scrolled state styles */
.scrolled .header {
  background-color: #ffffff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.scrolled .header .logo h1 {
  color: #2d405f;
}

.scrolled .navmenu ul li a,
.scrolled .navmenu ul li a:focus {
  color: #2d405f;
}

.scrolled .navmenu ul li:hover > a,
.scrolled .navmenu .active,
.scrolled .navmenu .active:focus {
  color: var(--accent-color);
}

.scrolled .mobile-nav-toggle {
  color: #2d405f;
}

/* Logo styles */
.header .logo {
  line-height: 1;
  padding-left: 5px;
  display: flex;
  align-items: center;
}

.header .logo img {
  max-height: 34px;
  margin-right: 0px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 500;
  color: var(--default-color);
  transition: color 0.3s;
}

/* Button styles */
.header .btn-getstarted,
.header .btn-getstarted:focus {
  border: none;
  cursor: pointer;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
}


.header .bbtn-getstarted,
.header .bbtn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 12px 20px 8px 20px;
  margin: 0 0 0 0px;
  border-radius: 7px;
  transition: 0.3s;
  border: none;
  cursor: pointer;
  font-family: var(--nav-font);
}

.header .bbtn-getstarted:hover,
.header .bbtn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}




/* Desktop Navigation */
@media (min-width: 1210px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--default-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
  }

  .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);
  }

  /* Dropdown menu */
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
  }

  .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: 1210px) {
  .mobile-nav-toggle {
    color: var(--default-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    display: block;
  }

  .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;
    text-decoration: none;
  }

  .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: #2d405f;
    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;
  }
  
  /* Scrolled state for mobile */
  .scrolled .mobile-nav-toggle {
    color: #2d405f;
  }
  
  .scrolled.mobile-nav-active .mobile-nav-toggle {
    color: #2d405f;
  }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .header {
    padding-top: 0;
  }

  .header .header-container {
    margin-left: 0;
    margin-right: 0;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 -10px 0 0;
    padding: 6px 15px;
    margin-top: 5px;


  }

  .navmenu {
    order: 3;
  }
}
  .ccustom-section {
    padding: 0px 40px;
    padding-top: 20px;
    background-color: #ffffff;
    border-radius: 20px;
    border-top: 3px solid rgb(7, 7, 77);
    margin-left: -405px;
    padding-bottom: 20px;
  }

 
  /* Mobile view adjustments */
  @media (max-width: 768px) {
   
    .ccustom-section {
      padding: 0px 0px;
      background-color: #ffffff00;
      border-radius: 20px;
      border-top: 3px solid rgba(255, 255, 255, 0);
      margin-left: 0px;
      margin-top: -42px;
    }
  }


  .login-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #0a1ca5;
    font-size: 16px;
    margin-right: 8px;
    font-family: sans-serif;
  }

  .login-btn i {
    color: #007bff; /* Bootstrap blue */
    font-size: 20px;
    margin-right: 8px;
  }

  .login-btn:hover {
    text-decoration: underline;
  }

  /* Hide button on screens smaller than 500px */
  @media (max-width: 499px) {
    .login-btn {
      display: none;
    }
  }

  .custom-section {
    padding: 0px 40px;
    padding-top: 20px;
    background-color: #ffffff;
    border-radius: 20px;
    border-top: 3px  solid rgb(7, 7, 77);
    margin-left: -282px;
    padding-bottom: 15px;

  }

  .custom-container {
    max-width: 1000px;
    min-width: 1200px;
    margin: auto;
    
    display: flex;
    justify-content: space-between;
    gap: 30px;
  }

  .custom-column {
    width: 30%;
  }

  .custom-heading {
    font-weight: 600;
    background-color: #f3f4f6;
    color: #374151;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
    margin-left: -5px;
  }

  .custom-heading.custom-active {
    background-color: #e5e7eb;
  }

  .custom-item {
    margin-bottom: 5px;
  }

  .custom-title {
    display: inline-block;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    font-size: 15px;
    margin-left: -20px;
  }

  .custom-title:hover {
    text-decoration: underline;
  }

  .custom-item p {
    color: #6b7280;
    font-size: 13px;
    margin: -3px 0 0;

  }

  .custom-see-all {
    color: #6b7280;
    font-size: 14px;
    text-decoration: none;
  }

  .custom-see-all:hover {
    text-decoration: underline;
  }
  .custom-column img {
  max-width: 300px;
  height: auto;
  border-radius: 10px; /* optional rounded corners */
  display: block;
}

/* Hide image on mobile view */
@media (max-width: 768px) {
  .custom-column img {
    display: none;
  }
  .custom-section {
    padding: 0px 0px;
    background-color: #ffffff00;
    border-radius: 20px;
    border-top: 3px  solid rgba(255, 255, 255, 0);
    margin-left: 0px;
    margin-top: -42px;
  }
  .custom-title {
    margin-top: -25px;
  }
}

  @media (max-width: 910px) {
    .custom-container {
      flex-direction: column;
    }

    .custom-column {
      width: 100%;
    }

    .custom-item p {
      color: #6b7280;
    }
    .custom-item {
    margin-bottom: 5px;
    padding: 10px;
    max-width: 25%;
  }
  }

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background-color: #002E5B;
  color: #d1d5db;
  font-size: 16px;
  padding-top: 50px;
  position: relative;
  padding-bottom: 80px;
  
}

.footer .footer-top {
  padding-bottom: 40px;
}

.footer .footer-about .logo {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.footer .footer-about .logo img {
  max-height: 35px;
  margin-right: 10px;
}

.footer .footer-about .logo span {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
}

.footer .footer-about .logo span:last-child {
  color: #3fa9f5;
}

.footer .footer-about p {
  color: #d1d5db;
  line-height: 1.6;
  max-width: 360px;
}

.footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 18px;
  color: #ffffff;
  border-radius: 4px;
  margin-right: 12px;
  background-color: transparent;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #3fa9f5;
}

.footer h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #8895a2;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  margin-bottom: 12px;
}

.footer .footer-links ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.footer .footer-links ul li a:hover {
  color: #3fa9f5;
}

.footer .copyright {
  background-color: #011d2b7e;
  color: #ffffff;
  padding: 24px 10px;
  margin-top: 40px;
  border-radius: 12px;
}

.footer .copyright .copyright-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 16px;
}

.footer .copyright p {
  margin: 0;
}

.footer .copyright a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  margin-left: 15px;
}

.footer .copyright a:hover {
  color: #3fa9f5;
}


/*--------------------------------------------------------------
# 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 {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 170px 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%);
}



/*--------------------------------------------------------------
# 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: 60px;
  position: relative;
  margin-top: -30px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  color: rgb(11, 53, 88);
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# sidebar Section start
--------------------------------------------------------------*/


/* Hero Section */


.hero-section {
 background: linear-gradient(90deg, #EAFBFE 0%, #fcf7e9ab 100%);

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 200px;
  margin-bottom: 0px;
  width: 100%;
}

.hero-container {
  max-width: 1300px;
}

.hero-container h2 {
  font-size: 52px;
  font-weight: 700;
  color: #0B3558;
  line-height: 1.2;
}

.hero-container h2 span {
  background: linear-gradient(90deg, #0080E2, #0679f3, #009ABE, #00B29E, #00D174);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientAnimation 5s infinite ease-in-out;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-container p {
  font-size: 1.125rem;
  color: #4a4a4a;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-container h2 {
    font-size: 2.5rem;
  }

  .hero-container p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-container h2 {
    font-size: 28px;
  }

  .hero-container p {
    font-size: 0.9rem;
  }
  .hero-section {
  
  padding-top: 130px;

}
}

.hero-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  margin-top: -50px;
}

.responsive-heading {
  color: rgb(146, 145, 145);
  font-size: 1.1rem; /* Fixed size for desktop */
  font-weight: 400;
  text-align: center;
  margin-bottom: 10px;
}

/* Smaller screens: reduce size for better fit */
@media (max-width: 768px) {
  .responsive-heading {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .responsive-heading {
    font-size: 0.8rem;
    text-align: center;
  }
}


/*--------------------------------------------------------------
# Hero Section end
--------------------------------------------------------------*/


.testimonial-section {
  padding: 10px;
  text-align: center;
  background-color: #002e5b;
  margin: 0px 0;
}

.testimonial-section h2 .highlight {
  background: linear-gradient(to right, #0738ebd6, #0659de);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonial-section p.lead {
  font-size: 18px;
  color: #ffffff;
  max-width: 700px;
  margin: 0 auto 60px;
}

.testimonial-box {
  position: relative;
  background-color: #002e5b;
  border-radius: 24px;
  padding: 110px 40px;
  max-width: 1350px;
  margin: auto;
  overflow: hidden;
}

.carousel-inner blockquote {
  font-size: 30px;
  color: #fff;
  font-weight: 400;
  max-width: 800px;
  margin: 20px auto 30px;
}

.reviewer-name {
  font-weight: 600;
  font-size: 18px;
  color: #fff;
}

.reviewer-role {
  font-size: 16px;
  color: #aaa;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: none;
}

.carousel-nav svg {
  background: #111;
  border-radius: 50%;
  padding: 12px;
  width: 44px;
  height: 44px;
}


@media (max-width: 768px) {

   .carousel-nav {
    display: none !important;
  }

  .testimonial-box {
    padding: 50px 10px;
  }
  .carousel-inner .reviewer-name {
    font-weight: 600;
    font-size: 14px;
    margin-top: 10px;
    color: #ffffff;
  }

  .carousel-inner .reviewer-role {
    font-size: 16px;
    color: #888;
  }

  .carousel-inner blockquote {
    font-size: 18px;
  }
  .testimonial-section {
    background-color: #002e5b00;
    padding: 0px;
  }
}

  
/* ------------------------------------------------------------------------- */



    /* Removed root and body styles */
    .slider-section {
      text-align: center;
      padding: 80px 10px;
    }

    .slider-section h2 {
      font-size: 48px;
      margin-bottom: 16px;
      font-weight: 700;
    }

    .slider-section p {
      font-size: 0.85rem;
      margin-bottom: 16px;
      font-weight: 300;
    }

    .subtitle {
      font-size: 1.15rem;
      color: #4a5568;
      margin: 0 auto 60px;
      max-width: 680px;
      line-height: 1.5;
    }

    .slider-controls {
      position: relative;
      margin-bottom: 30px;
    }

    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px;
      height: 48px;
      background: #fff;
      border: none;
      border-radius: 50%;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
      cursor: pointer;
      transition: transform 0.3s, box-shadow 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
    }

    .slider-btn:hover {
      background: #f1f5f9;
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
      transform: translateY(-50%) scale(1.05);
    }

    .slider-btn svg {
      width: 24px;
      height: 24px;
    }

    .prev-btn {
      left: 10px;
      margin-top: 230px;
    }

    .next-btn {
      right: 10px;
      margin-top: 230px;
    }

    .card-slider {
      display: flex;
      gap: 24px;
      overflow-x: auto;
      padding: 20px 0;
      scroll-behavior: smooth;
      scrollbar-width: none;
    }

    .card-slider::-webkit-scrollbar {
      display: none;
    }

    .card {
      min-width: 310px;
      height: 360px;
      border-radius: 24px;
      padding: 28px;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform 0.3s, box-shadow 0.3s;
      box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.1);
      position: relative;
      color: white;
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.15);
    }

    .card-content h3 {
      font-size: 1.6rem;
      margin-bottom: 16px;
      font-weight: 600;
    }

    .card-content p {
      font-size: 1.05rem;
      font-weight: 300;
      opacity: 0.9;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 255, 255, 0.15);
      padding: 10px 16px;
      border-radius: 12px;
      font-size: 0.92rem;
      backdrop-filter: blur(4px);
    }

    .badge img {
      width: 22px;
      height: 22px;
      filter: brightness(0) invert(1);
    }

    .get-started-btn {
      background-color: transparent;
      color: white;
      border: 2px solid white;
      padding: 10px 24px;
      border-radius: 9999px;
      font-weight: 500;
      font-size: 16px;
      cursor: pointer;
      transition: background-color 0.3s, color 0.3s;
    }

    .get-started-btn:hover {
      background-color: white;
      color: #1f2937;
    }

    .card-inner {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: space-between;
      height: 100%;
    }

    .label {
      color: white;
      font-size: 1.5rem;
      margin-bottom: 8px;
    }

    .logooo {
      margin-top: 20px;    
      width: 150px;
      max-height: 100px;
      margin-bottom: 24px;
    }

    .features {
      list-style: none;
      padding: 0;
      margin: 0 0 24px;
      color: white;
      font-size: 1rem;
      text-align: left;
    }

    .features li {
      margin-bottom: 12px;
      position: relative;
      padding-left: 24px;
    }

    .features li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: white;
      font-weight: bold;
    }

    .purple { background: linear-gradient(45deg, #6b2d84, #8a40ad); }
    .blue-light { background: linear-gradient(45deg, #7d9eff, #a2b8ff); }
    .blue { background: linear-gradient(45deg, #5c73ff, #798fff); }
    .cyan { background: linear-gradient(45deg, #20bacb, #35d2e5); }
    .red { background: linear-gradient(45deg, #ff4d6d, #ff6680); }
    .dark-blue { background: linear-gradient(45deg, #18125a, #2a2185); }
    .light-purple { background: linear-gradient(45deg, #9aaeff, #b6c4ff); }
    .green { background: linear-gradient(45deg, #00b247, #00d15e); }

    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 20px;
    }

    .dot {
      width: 12px;
      height: 12px;
      background-color: #d1d5db;
      border-radius: 50%;
      transition: background-color 0.3s;
      cursor: pointer;
    }

    .dot.active {
      background-color: #2563eb;
    }

    @media (max-width: 768px) {
      .slider-section { padding: 60px 15px; }
      .slider-section h2 { font-size: 2.1rem; }
      .card { min-width: 85%; height: 360px; padding: 24px; }
      .card-content h3 { font-size: 1.4rem; }
      .slider-btn { display: none; }
    }

    @media (max-width: 480px) {
      .badge span { display: none; }
      .badge { padding: 8px; }
    }
/* ------------------------------------------------------------------------- */



  .feature-card {
    padding: 30px;
    max-width: 800px;
    border-radius: 20px;
    transition: all 0.3s ease;
    background-color: #f8f9fa00;
  }

  .feature-card:hover {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .feature-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
  }

  .feature-header img.icon {
    width: 42px;
    height: 42px;
  }

  .feature-header h3 {
    color: #1e2b4a;
    margin: 0;
    margin-top: -10px;
    font-size: 20px;
  }

  .feature-card p {
    margin-top: -10px;
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    margin-left: 42px;
  }

  .feature-card .btn {
    display: inline-block;
    background-color: #183867;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-left: 42px;
    border: 2px solid transparent;
  }

  .feature-card .btn:hover {
    background-color: white;
    color: #183867;
    border: 2px solid #183867;
  }

/*--------intigration------------------------------------------------------ */
/* Section Wrapper */
.xx001 {
  background-color: white;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  padding-bottom: 80px;
}

/* Inner Container */
.xx002 {
  background-color: #003054;
  border-radius: 28px;
  padding: 0px 0px;
  max-width: 1300px;
  width: 100%;
  color: white;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
}

/* Flex Row */
.xx003 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Image Containers */
.xx009 {
  flex: 0 1 25%;
  display: flex;
}

.xx-left-img {
  justify-content: flex-start;
  
}

.xx-right-img {
  justify-content: flex-end;
}

/* Center Content */
.xx004 {
  flex: 0 1 50%;
  text-align: center;
  padding: 0 20px;
}

.xx005 {
  font-size: 2.9rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: rgb(255, 255, 255);
}

.xx006 {
  font-size: 0.95rem;
  margin: 0 0 30px 0;
  line-height: 1.5;
}

.xx007,
.xx008 {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0 10px;
}

.xx008 {
  background-color: white;
  color: #003054;
  border: 2px solid white;
}

.xx008:hover {
  background-color: transparent;
  color: white;
}

.xx007 {
  background-color: #243ff0;
  color: white;
  border: 2px solid #243ff0;
}

.xx007:hover {
  background-color: transparent;
  border-color: white;
  color: white;
}

/* Image Styling */
.xx010 {
  max-width: 270px;
  height: auto;
  object-fit: contain;
  border-radius: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .xx005 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .xx003 {
    flex-direction: column;
    text-align: center;
  }

  .xx009 {
    display: none; /* ✅ Hides both left and right images on mobile */
  }

  .xx004 {
    flex: auto;
    width: 100%;
    order: -1;
    margin-bottom: 30px;
  }

  .xx005 {
    font-size: 2rem;
  }

  .xx006 {
    font-size: 1.1rem;
  }

  .xx007,
  .xx008 {
    display: block;
    margin: 10px auto;
    max-width: 250px;
  }
  .xx002 {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .xx002 {
    padding: 40px 20px;
  }
  
  .xx005 {
    font-size: 1.75rem;
  }
}
  
/*--------cta------------------------------------------------------ */

/* Section Padding */
.x1a2b3c {
  padding: 30px 10px;
  display: flex;
  justify-content: center;
}

/* Card Styling */
.x4d5e6f {
  background-image: url('https://www.mattersuite.com/assets/img/main-assets/blue-background-image-cta.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 28px;
  color: white;
  padding:40px;
  max-width: 1300px;
  width: 100%;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
}


/* Flex Row */
.x7g8h9i {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

/* Left Content */
.xa1b2c3 {
  flex: 1 1 100%;
  max-width: 100%;
  padding: 0 20px;
}

.xd4e5f6 {
  font-size: 48px;
  font-weight: 700;
  margin-top: 0;
  color: white;
}

.xg7h8i9 {
  font-size: 1.25rem;
  margin-top: 20px;
  color: white;
}

.xj1k2l3,
.xm4n5o6 {
  display: inline-block;
  margin-top: 30px;
  margin-right: 15px;
  padding: 10px 24px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.xm4n5o6 {
  background-color: white;
  color: black;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.xm4n5o6:hover {
  background-color: transparent;
  color: white;
  border: 1px solid white;
  transform: translateY(-2px);
}

.xj1k2l3 {
  background-color: rgb(36, 63, 240);
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.xj1k2l3:hover {
  background-color: transparent;
  color: white;
  border: 1px solid white;
  transform: translateY(-2px);
}

/* Right Image */
.xp7q8r9 {
  flex: 1 1 100%;
  max-width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
  height: auto;
  margin-top: 30px;
}

.xs1t2u3 {
  width: auto;
  max-width: 700px;
  height: auto;
  object-fit: contain;
  margin: 0 -41px -40px 0;
  border-radius: 0;
}

/* Responsive for tablets & below */
@media (min-width: 768px) {
  .xa1b2c3,
  .xp7q8r9 {
    flex: 1 1 50%;
    max-width: 50%;
    margin-top: 0;
  }

  .xa1b2c3 {
    padding-left: 30px;
    padding-right: 20px;
  }

  .xp7q8r9 {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .xd4e5f6 {
    font-size: 1.5rem;
    text-align: center;
  }

  .xg7h8i9 {
    font-size: 1.1rem;
    text-align: center;
  }

  .xa1b2c3 {
    text-align: center;
  }

  .xj1k2l3,
  .xm4n5o6 {
    width: 100%;
    margin-right: 0;
    margin-bottom: -10px;
  }

  .xp7q8r9 {
    justify-content: center;
  }

  .xs1t2u3 {
    max-width: 100%;
    margin: 20px 0 0 0;
    transform: scale(1.05);
  }
}
/* Hide image on mobile */
@media (max-width: 767px) {
  .xs1t2u3 {
    display: none;
  }
  .x4d5e6f {
  padding:20px;}
}












/* 
# Faq Section
--------------------------------------------------------------*/ 
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.faq .faq-arrow {
  color: var(--accent-color);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

  .hgxd2-advantage-section {
      background-color: #f9fbff;
    }

    .hgxd2-icon {
      max-width: 100%;
      max-height: 260px;
      transition: transform 0.3s ease;
    }

    .hgxd2-icon:hover {
      transform: scale(1.1);
    }

    

    .btn-primary {
      background-color: #0061ff;
      border-color: #0061ff;
    }

    .btn-primary:hover {
      background-color: #0051e0;
      border-color: #0051e0;
    }

    @media (max-width: 576px) {
      .hgxd2-icon {
        max-height: 330px;
      }

      .hgxd2-advantage-card {
        padding: 1.5rem;
      }
    }

        .ms-title {
      font-size: 48px;
      font-weight: 700;
      text-align: center;
    }

    .ms-highlight {
      color: #2563eb;
    }

    .ms-card {
      background-color: #f4f7fe;
      border: 1px solid #e0e6ed;
      transition: box-shadow 0.3s ease;
      text-align: left;
    }

    .ms-card:hover {
      box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    }

    .ms-card-heading {
      font-size: 1.25rem;
      color: #1f2937;
    }

    .ms-card-text {
      font-size: 0.95rem;
      color: #4b5563;
    }

    .ms-section img {
      object-fit: cover;
    }

    .ms-card img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ms-card img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}
@media (max-width: 1024px) {
  .ms-title {
      font-size: 2.3rem;
      font-weight: 700;
      text-align: center;
    }
 
}

  .bg-dark-blue {
  background-color: #002e5b;
}

.testimonial-card {
  background-color: #003865;
  color: white;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

hr {
  opacity: 0.15;
}

.text-primary {
  color: #007bff !important; /* Adjust if needed */
}
