

: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: rgb(0, 0, 0);
    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: rgb(0, 0, 0);
    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: 16px;
    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: 11px;
    margin: -4px 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: #022a3d;
  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(180deg, #a59e551d, #f3fafe);
  padding: 50px 20px;
  width: 100%;
  color: rgb(0, 0, 0);
  padding-top: 200px;
}

.hero-container {
  max-width: 1250px;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  max-width: 800px;
  text-align: left;
}

.hero-text h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  color: rgb(0, 0, 0);
  margin-bottom: 20px;
}



.hero-text h1 span {
    background: linear-gradient(90deg, #4300f5, #00c1ff);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientAnimation 6s ease-in-out infinite;
}
  

@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn {
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Primary Button */
.btn-primary {
  background-color: #007bff;
  color: white;
  border: 2px solid #007bff;
}

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

/* Outline Button */
.btn-outline {
  background-color: white;
  color: #0a1c33;
  border: 2px solid #0a1c33;
}

.btn-outline:hover {
  background-color: #0a1c33;
  color: white;
}

.trial-text {
  color: #a0aec0;
  font-weight: 500;
  margin-top: 10px;
}

.hero-image {
  flex: 1;
  text-align: center;
  max-width: 820px;
  margin-top: -100px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* ====================== */
/* ✅ RESPONSIVE STYLES ✅ */
/* ====================== */

@media (max-width: 1024px) {
  .hero-section {
    padding: 150px 20px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-image {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .hero-text,
  .hero-image {
    max-width: 100%;
  }

  .hero-text h1 {
    
    font-size: 28px;
    text-align: center;
  }

  .hero-text p {
    font-size: 16px;
    text-align: center;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 0% 10%;
  }

  .hero-image {
    margin-top: 0px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 160px 16px;
  }

  .hero-text h1 {
    font-size: 24px;
    text-align: center;
  }

  .hero-text p {
    font-size: 15px;
    text-align: center;
  }

  .trial-text {
    font-size: 14px;
  }
  
  .hero-image {
    margin-top: 0px;
    margin-bottom: -150px;
  }
  
  
}


/*--------------------------------------------------------------
# Hero Section end
--------------------------------------------------------------*/



  .features-section {
  background: linear-gradient(90deg, #f8f8fb 0%, #e6f8ff 100%);
    margin-top: -100px;
    
  }
  
  .feature-box {
    padding: 20px;
  }
  
  .icon-wrapper {
    display: inline-flex;
    background-color: #f2f5ff;
    padding: 10px;
    border-radius: 10px;

  }

   .testimonial-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: white;
    padding-right: 0px;
    padding-left: 0px;
    
  }

  .testimonial-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
  }

  .testimonial-card {
    background: #f8f9fb;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    height: 100%;
  }

  .quote-icon {
    background: #5f7de9;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
  }

  .stars {
    color: #ffb400;
    font-size: 18px;
  }

  .testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: #f8f9fb;
    border-radius: 50%;
    top: auto;
    bottom: 0;
    transform: translateY(50%);
    color: #000;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
  }

  .swiper-button-prev {
    left: 0;
  }

  .swiper-button-next {
    left: 60px;
  }

  @media (max-width: 767px) {
    .testimonial-title {
      text-align: center;
      margin-left: 0px;

      
    }
    .swiper-button-prev,
    .swiper-button-next {
      position: absolute;
      bottom: -40px;
      left: 50%;
      transform: translateX(-50%);
      margin-left: -25px;
    }
    .swiper-button-next {
      margin-left: 25px;
    }
  }


  
/* ------------------------------------------------------------------------- */



    .slider-section{
      display: none;
    }
/* ------------------------------------------------------------------------- */



  .feature-card {
    padding: 30px;
    max-width: 800px;
    border-radius: 20px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
  }

  .feature-card:hover {
    background-color: white;
    border-radius: 20px;
    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 */
.integration-section {
  padding: 60px 10px 80px;
  display: flex;
  justify-content: center;
}

/* Card Container */
.integration-card {
  background-color: #003054;
  border-radius: 28px;
  max-width: 1300px;
  width: 100%;
  color: white;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
  padding: 0px 0px;
}

/* Flex Layout */
.integration-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Images */
.integration-image {
  flex: 0 1 25%;
  display: flex;
}

.integration-left {
  justify-content: flex-start;
}

.integration-right {
  justify-content: flex-end;
}

.integration-image img {
  max-width: 270px;
  height: auto;
  object-fit: contain;
  border-radius: 30px;
}

/* Center Content */
.integration-content {
  flex: 0 1 50%;
  text-align: center;
  padding: 0 20px;
}

.integration-content h3 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: white;
}

/* List Box */
.integration-list-box {
  display: flex;
  justify-content: center;
  gap: 60px;
  background-color: #00294a;
  padding: 20px 30px;
  border-radius: 16px;
  max-width: 530px;
  margin: 0 auto;
  flex-wrap: wrap;
  border: solid 1px rgba(255, 255, 255, 0.386);

}

.integration-list-box ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 0;
  font-size: 1.2rem;
  color: white;
  text-align: left;
}

.integration-list-box li {
  margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .integration-content h3 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .integration-row {
    flex-direction: column;
    text-align: center;
  }

  .integration-image {
    display: none; /* Hide images on small devices */
  }

  .integration-content {
    flex: auto;
    width: 100%;
    order: -1;
    margin-bottom: 30px;
  }

  .integration-content h3 {
    font-size: 2rem;
    margin-top: 50px;
    margin-bottom: 30px;
  }

  .integration-list-box {
    gap: 40px;
    padding: 20px 20px;
    margin-bottom: 30px;
  }

  .integration-list-box ul {
    font-size: 1.1rem;
    
  }
}

@media (max-width: 480px) {
  .integration-content h3 {
    font-size: 1.75rem;
  }

  .integration-list-box {
    gap: 20px;
    padding: 20px;
  }
}
  
/*--------cta------------------------------------------------------ */

/* Section Padding */
.x1a2b3c {
  padding: 30px 10px;
  display: flex;
  justify-content: center;
}

/* Card Styling */
.x4d5e6f {
  background-image: url('https://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: 2.2rem;
  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);
}

  .jdbkdfjv-title {
    font-size: 50px;
    font-weight: 700;
    color: #0c1e39;
  }

  .jdbkdfjv-highlight {
    color: #1b4eff;
  }

  .jdbkdfjv-subtitle {
    font-size: 18px;
    color: #3e4b5b;
  }

  .jdbkdfjv-card {
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .jdbkdfjv-card-blue {
    background-color: #dbe8ff;
  }

  .jdbkdfjv-card-light-blue {
    background-color: #eef8fc;
  }

  .jdbkdfjv-card-pink {
    background-color: #faefff;
  }

  .jdbkdfjv-number {
    font-size: 3rem;
    font-weight: 900;
    color: #3f3f3f;
    margin-bottom: 0.5rem;
  }

  .jdbkdfjv-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0c1e39;
    margin-bottom: 1rem;
  }

  .jdbkdfjv-card-text {
    font-size: 1rem;
    color: #2c3e50;
    line-height: 1.6;
  }

  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .jdbkdfjv-title {
      font-size: 2rem;
    }

    .jdbkdfjv-number {
      font-size: 2.5rem;
    }

    .jdbkdfjv-card-title {
      font-size: 1.15rem;
    }

    .jdbkdfjv-card-text {
      font-size: 0.95rem;
    }
  }

  @media (max-width: 768px) {
    .jdbkdfjv-title {
      font-size: 1.75rem;
    }

    .jdbkdfjv-subtitle {
      font-size: 1rem;
    }

    .jdbkdfjv-number {
      font-size: 2rem;
    }

    .jdbkdfjv-card-title {
      font-size: 1.1rem;
    }

    .jdbkdfjv-card-text {
      font-size: 0.9rem;
    }
  }

  @media (max-width: 576px) {
    .jdbkdfjv-title {
      font-size: 1.5rem;
    }

    .jdbkdfjv-subtitle {
      font-size: 0.95rem;
    }

    .jdbkdfjv-number {
      font-size: 1.75rem;
    }

    .jdbkdfjv-card {
      padding: 1.5rem;
    }

    .jdbkdfjv-card-title {
      font-size: 1rem;
    }

    .jdbkdfjv-card-text {
      font-size: 0.85rem;
    }
  }
  
  
  
  
  
  .img-fluid {
    max-width: 60%;
    height: auto;
}