

: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: black;
  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: #2d405f;
    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%;
  }
  }

  body.mobile-nav-active .mobile-nav-toggle {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 99999;
}

/*--------------------------------------------------------------
# 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-image: 
    radial-gradient(ellipse at 20% 50%, rgba(0, 128, 226, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 210, 116, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 60% 90%, rgba(0, 154, 190, 0.09) 0%, transparent 50%),
    linear-gradient(160deg, #eef4ff 0%, #f5f9ff 40%, #edfcf6 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 200px;
  margin-bottom: 0px;
  width: 100%;
} 

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 15% 85%, rgba(0, 128, 226, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(0, 209, 116, 0.07) 0%, transparent 40%);
  animation: bgShift 8s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}



.hero-container {
  max-width: 1300px;
  position: relative;
  z-index: 1;
}

@keyframes bgShift {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.05); }
}

.hero-container h2 {
  font-size: 54px;
  font-weight: 700;
  color: #0B3558;
  line-height: 1.50;
}

.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;
}


.hero-container p {
  font-size: 18px;
  color : #4a4a4a;
  line-height: 1.6;
  font-weight: 800px;
}

@media (max-width: 768px) {
  .hero-container h2 {
    font-size: 2.5rem;
  }

  .hero-container p {
    font-size: 1.25px;
  }
}



@media (max-width: 480px) {
  .hero-container h2 {
        font-size: 26px;
        font-weight: 700;
  }

  .hero-container p {
    font-size: 15px;
    font-weight: 500;

  }
  .hero-section {
  
  padding-top: 130px;

}


.hero-image img {
   width: 250px;
   height: 350px;
 
}

.lap-p{
  display:none;
}

}



.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px; 
}

.hero-image img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  display: block;
  transform-origin: center;
}


/* Image with 3D effects */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.hero-image img {
  width: 100%;
  max-width: 1100px;
  height: auto;
  display: block;
  transform-origin: center center;
  will-change: transform;
}

.perspective-container {
  perspective: 1300px;
  perspective-origin: 50% 30%;
  max-width: 1250px;
  margin: -20px auto 0;

}

/* main animated layer */
.animated-3d {
  transform-style: preserve-3d;
  backface-visibility: hidden;
  border-radius: 27px;
  will-change: transform, opacity, filter, box-shadow;
  transition:
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1s ease,
    opacity 1s ease,
    box-shadow 1s ease;
}

/* initial state */
.animated-3d.is-pre {
  filter: saturate(0.92) contrast(0.96) blur(0.6px);
  opacity: 1;
  
}

/* final visible state */
.animated-3d.is-fully-visible {
  transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg) scale(1);
  filter: saturate(1) contrast(1) blur(0);
  opacity: 1;
}


.animated-3d.is-fully-visible img {
  animation: heroFloat 5s ease-in-out infinite;
}

@keyframes heroFloat {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

.warning-line{
  margin-left: 87px;
  margin-top: 20px;
}

/* smoother on smaller screens */
@media (max-width: 768px) {
  .perspective-container {
    margin-top: -30px;
  }



  .animated-3d.is-fully-visible img {
    animation: heroFloatMobile 5s ease-in-out infinite;
  }

  @keyframes heroFloatMobile {
    0% {
      transform: translate3d(0, 0, 0);
    }
    50% {
      transform: translate3d(0, -5px, 0);
    }
    100% {
      transform: translate3d(0, 0, 0);
    }
  }
}


/* 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-image img {
    scale:1.25;
    padding: 10px 10px;
 
}
.warning-line{
  margin-left: 7px;
  margin-top: 20px;
}
}

/* new hero section css */
/* ── Hero Section Base ── */
.hero-section {
  position: relative;
  overflow: hidden;
  background: #f0f6ff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 135px;
  margin-bottom: 0;
  width: 100%;
}

.hero-container {
  max-width: 1300px;
  position: relative;
  z-index: 2;
}

/* ── Aurora Blobs ── */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.b1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(0,128,226,0.35), rgba(0,128,226,0.04));
  top: -160px; left: -100px;
  animation: drift1 14s ease-in-out infinite;
}
.b2 {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(0,209,116,0.30), rgba(0,209,116,0.04));
  bottom: -120px; right: -80px;
  animation: drift2 17s ease-in-out infinite;
}
.b3 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(0,154,190,0.28), rgba(0,154,190,0.04));
  top: 40%; left: 55%;
  animation: drift3 12s ease-in-out infinite;
}
.b4 {
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(6,121,243,0.22), rgba(6,121,243,0.03));
  bottom: 10%; left: 10%;
  animation: drift4 19s ease-in-out infinite;
}
.b5 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,178,158,0.25), transparent);
  top: 20%; right: 8%;
  animation: drift5 10s ease-in-out infinite;
}

@keyframes drift1 {
  0%   { transform: translate(0px, 0px) scale(1); }
  33%  { transform: translate(60px, 40px) scale(1.08); }
  66%  { transform: translate(20px, 80px) scale(0.96); }
  100% { transform: translate(0px, 0px) scale(1); }
}
@keyframes drift2 {
  0%   { transform: translate(0px, 0px) scale(1); }
  40%  { transform: translate(-50px, -30px) scale(1.10); }
  70%  { transform: translate(-20px, -60px) scale(0.94); }
  100% { transform: translate(0px, 0px) scale(1); }
}
@keyframes drift3 {
  0%,100% { transform: translate(0, 0) scale(1); }
  50%     { transform: translate(-40px, 30px) scale(1.12); }
}
@keyframes drift4 {
  0%,100% { transform: translate(0, 0) scale(1); }
  50%     { transform: translate(30px, -20px) scale(1.06); }
}
@keyframes drift5 {
  0%,100% { transform: translate(0, 0) scale(1); }
  50%     { transform: translate(-20px, 25px) scale(1.14); }
}

/* ── Dot Grid Overlay ── */
.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(11,53,88,0.09) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* ── Shimmer Sweep ── */
.sweep {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255,255,255,0.45) 50%,
    transparent 65%
  );
  background-size: 250% 100%;
  animation: sweep 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes sweep {
  0%   { background-position: 200% 0; }
  100% { background-position: -100% 0; }
}

/* ── Badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #0679f3;
  background: rgba(6,121,243,0.09);
  border: 1px solid rgba(6,121,243,0.22);
  border-radius: 99px;
  padding: 5px 14px;
  margin-bottom: 22px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00D174;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.5; transform: scale(1.5); }
}

/* ── Headings ── */
.hero-container h2 {
  font-size: 54px;
  font-weight: 700;
  color: #0B3558;
  line-height: 1.50;
}
.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;
  background-clip: text;
  animation: gradientAnimation 5s infinite ease-in-out;
}
@keyframes gradientAnimation {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}

/* ── Description ── */
.hero-container p {
  font-size: 18px;
  color: #4a4a4a;
  line-height: 1.6;
  font-weight: 500;
}

/* ── Trust Row ── */
.trust-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #6b7a8d;
  font-weight: 600;
}
.trust-icon {
  width: 16px; height: 16px;
  background: #00D174;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}
.trust-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #c5d0dc;
}

/* ── Hero Image ── */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  position: relative;
}

.perspective-container {
  perspective: 1300px;
  perspective-origin: 50% 30%;
  max-width: 1100px;
  width: 100%;
  margin-top: -20px;
  position: relative;
}

/* Glow ring behind image */
.img-glow {
  position: absolute;
  inset: -20px;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(0,128,226,0.20),
    rgba(0,209,116,0.15),
    rgba(0,154,190,0.12)
  );
  filter: blur(24px);
  animation: glowPulse 4s ease-in-out infinite;
  z-index: 0;
}
@keyframes glowPulse {
  0%,100% { opacity: 0.7; transform: scale(1); }
  50%     { opacity: 1;   transform: scale(1.03); }
}

/* Browser chrome card */
.img-card {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.90);
  box-shadow:
    0 2px 0 rgba(255,255,255,0.95) inset,
    0 20px 60px rgba(11,53,88,0.13),
    0 4px 16px rgba(0,128,226,0.10);
  animation: heroFloat 5s ease-in-out infinite;
}
@keyframes heroFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}

.img-bar {
  background: rgba(255,255,255,0.97);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(11,53,88,0.07);
}
.dot-r { width:10px; height:10px; border-radius:50%; background:#ff6058; }
.dot-y { width:10px; height:10px; border-radius:50%; background:#ffbd2e; }
.dot-g { width:10px; height:10px; border-radius:50%; background:#28ca41; }

.url-bar {
  flex: 1;
  background: rgba(11,53,88,0.05);
  border-radius: 6px;
  height: 22px;
  margin: 0 10px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 11px;
  color: #8899aa;
  font-family: monospace;
}

.img-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── 3D animate on scroll (keep your existing JS) ── */
.animated-3d {
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform, opacity;
  transition:
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1s ease;
}
.animated-3d.is-pre {
  opacity: 0.96;
}
.animated-3d.is-fully-visible {
  transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg) scale(1);
  opacity: 1;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-section { padding-top: 130px; }
  .hero-container h2 { font-size: 2rem; }
  .hero-container p { font-size: 15px; }
  .perspective-container { margin-top: 0; }
  .lap-p { display: none; }
}

@media (max-width: 480px) {
  .hero-container h2 { font-size: 26px; }
  .hero-container p { font-size: 15px; font-weight: 500; }
  .b1, .b2 { filter: blur(50px); opacity: 0.4; }
  .b3, .b4, .b5 { display: none; }
}

/*--------------------------------------------------------------
# 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;
  }
}

  
/* ------------------------------------------------------------------------- */

    .slider-section{
      display: none;
    }
/* ------------------------------------------------------------------------- */
/* ============================= */
/* SECTION */
/* ============================= */
.ms-problem-section-1 {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0b1d4a, #020c2b);
}

.ms-container-1 {
  max-width: 1290px;
  margin: auto;
}

/* ============================= */
/* GRID */
/* ============================= */
.ms-grid-1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* ============================= */
/* CARD */
/* ============================= */
.ms-card-1 {
  position: relative;
  border-radius: 22px;
  padding: 30px;
  color: #ffffff;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;

  /* Clean look (no bg) */
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);

  /* Smooth animation */
  transition: 
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s ease,
    background 0.4s ease,
    border-color 0.3s ease;

  will-change: transform;
}


/* Optional glow effect */
.ms-card-1::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: radial-gradient(circle at top, rgba(0,170,255,0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.ms-card-1:hover::after {
  opacity: 1;
}

/* ============================= */
/* NUMBER */
/* ============================= */
.ms-number-1{
  font-size: 18px;
  opacity: 0.6;
  margin-bottom: 15px;
  display: block;
}

/* ============================= */
/* TEXT */
/* ============================= */
.ms-card-1 h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
  color: white;
}

.ms-card-1 p {
  font-size: 16px;
  color: #f0f3ff;
  line-height: 1.6;
}

.ms-card-1.active-1 {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(0, 170, 255, 0.4);

  box-shadow: 
    0 20px 50px rgba(0, 106, 255, 0.25);
}

/* Glow overlay */
.ms-card-1.active-1::after {
  opacity: 1;
}


.section-header-1 {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom:57px;
  color: white;
}

.section-header-1 h2{
 font-weight: 700;
 font-size: 40px;
}

.section-header-1 p {
    text-align: center;
    margin: 14px 31px 64px 13px;
    font-size: 20px;
    font-weight: 200;
}

/* ============================= */
/* TABLET */
/* ============================= */
@media (max-width: 1024px) {
  .ms-grid-1 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width: 600px) {
  .ms-grid-1 {
    grid-template-columns: 1fr;
  }

  .ms-card-1 {
    padding: 25px;
    min-height: auto;
  }

  .ms-card-1 h3 {
    font-size: 18px;
  }

  .ms-card-1 p {
    font-size: 13px;
  }
}

/* four-card-section */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* SECTION */
.feature-section {
  padding: 80px 20px;
  background: #f9f9fb;
}

/* CONTAINER GRID */
.iv-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}


.section-header {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 30px;
}

.section-header h2{
 font-weight: 700;
}

.section-header p {
    text-align: center;
    margin: 14px 31px 64px 70px;
    font-size: 20px;
    font-weight: 200;
}

@media (max-width: 400px) {
  .section-header p {
    text-align: center;
    margin: 14px 31px 64px 31px;
    font-size: 19px;
    font-weight: 200;
    line-height: 1.55;
}

   .section-header h2{
   font-weight:500 !important; 
   color: #0a2540;
   font-size: 28px;

   }
   .section-header-1 h2{
 font-weight: 500 !important;
      
        font-size: 28px;
}
}


/* =========================
   four-CARDS
========================= */


/* SECTION */
.feature-section {
  padding: 80px 20px;
  background: #f9f9fb;
}

/* CONTAINER GRID */
.four-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}


.four-feature-card {
    background: linear-gradient(
    to top,
    #afebf7 0%,
    #e6f6ff 100%
  );
  padding: 30px 30px;
  border-radius: 18px;
  border: 1px solid #e6e6eb;
  transition: all 0.3s ease;
  position: relative;
  backdrop-filter: blur(10px);
}

/* ICON (UPDATED NAME) */
.four-feature-card .iv-icon {
  font-size: 20px;
  color: #6c3bff;
  margin-bottom: 65px;
  line-height: 26px;
}

/* TITLE */
.four-feature-card h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #111;
}

/* TEXT */
.four-feature-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* HOVER GLOW EFFECT */
.four-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 12px 30px rgba(0, 0, 0, 0.08),
    0 0 0 2px rgba(0, 113, 242, 0.2),
    0 0 20px rgba(0, 113, 242, 0.25);
  border-color: #0071f2;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 992px) {
  .four-container {
    grid-template-columns: repeat(2, 1fr);
  }


}

/* Mobile */
@media (max-width: 576px) {
  .four-container {
    grid-template-columns: 1fr;
  }

  

  .four-feature-card {
    text-align: center;
  }
}
/* two-section-new-ui
 */

.ms-feature-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ffffff, #cfdbff);
}

/* CONTAINER */
.ms-feature-container {
  max-width: 1226px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* TEXT */
.ms-feature-text {
  flex: 1;
  color: #fff;
}

.ms-feature-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.ms-feature-text p {
  font-size: 16px;
  color: #040d34;
  line-height: 1.6;
  margin-bottom: 30px;
  margin-right: 7px;
  /* padding-right: 39px; */
}


/* BUTTON */
.ms-btn {
  background: linear-gradient(90deg, #2d0e9f, #00aaff);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.ms-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 170, 255, 0.3);
}

/* IMAGE */
.ms-feature-image {
  flex: 1;
  text-align: right;
}

.ms-feature-image img {
  width: 77%;
  max-width: 603px;
  border-radius: 16px;
  scale: 1.22;
}



/* RESPONSIVE */
@media (max-width: 992px) {
  .ms-feature-container {
    flex-direction: column;
    text-align: center;
  }

  .ms-feature-image {
    text-align: center;
  }

  .ms-feature-text h2 {
    font-size: 28px;
    font-weight: 500;
  }

  .ms-feature-text p {
    font-size: 16px;
  }
}
/*-----two-section-ui-----*/
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HERO SECTION */
.ms-hero-sec {
  padding: 55px 85px;
  background-color: #f8f9fb ;
  /* display: flex; */
  align-items: center;
}

/* CONTAINER */
.ms-hero-container {
  max-width: 1300px;
  margin: auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

/* LEFT */
.ms-hero-left {
  flex: 1;
}

/* BADGE */
.ms-hero-badge {
  display: inline-block;
  background:#d2ddff;
  color: #051235;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 25px;
}

/* HEADING */
.ms-hero-heading {
  font-size: 43px;
  line-height: 1.0;
  font-weight: 500;
  margin-bottom: 25px;
  color: black;
}

/* TEXT */
.ms-hero-text {
  font-size: 16px;
  color: #30373c;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 520px;
}

/* BUTTON */
.ms-hero-btn {
  display: inline-block;
  padding: 10px 12px;
  background: linear-gradient(135deg, #246fd9, #5982ec);
  color: #fff;
  border-radius: 14px;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
}

.ms-hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(168, 85, 247, 0.4);
  color: #fff;
}

/* RIGHT */
.ms-hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

/* ARC */
.ms-hero-arc {
  width: 100%;
  max-width: 520px;
  position: relative;
}

.ms-hero-arc img {
  width: 130%;
  border-radius: 20px;
}



/* ======================
   RESPONSIVE
====================== */

@media (max-width: 992px) {
  .ms-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .ms-hero-heading {
    font-size: 42px;
  }

  .ms-hero-text {
    margin: auto;
    margin-bottom: 30px;
  }

  .ms-hero-arc img {
    width: 90%;
}
}

@media (max-width: 576px) {
  .ms-hero-sec {
    padding: 60px 20px;
  }

  .ms-hero-heading {
    font-size: 26px;
    line-height: 1.25;
  }

  .ms-hero-btn {
    width: 57%;
    display: inline-block;
    padding: 6px 9px;
    background: linear-gradient(135deg, #246fd9, #5982ec);
    color: #fff;
    border-radius: 7px;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
  }

   .ms-hero-arc img {
    width: 100px;
    height: 100px;
}

.ms-hero-container {
    max-width: 1300px;
    margin: auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

}
/* -------------------- */

  .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;
  }

/*new-nine-card-section */

.law-section {
  padding: 18px 0px 98px 0px;
}


/* Grid layout */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Tablet */
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* Card */
.card {
 
  border-radius: 14px;
  padding: 32px 28px 28px;
  position: relative;
  min-height: 230px;
  transition: all 0.25s ease;
  
}

.card-text{
  max-width: 300px;
}

/* Hover (subtle like original) */
.card:hover {
  transform: translateY(-4px);
}

/* Icon (top-right) */
.icon {
 width: 42px;
  height: 42px;
  border-radius: 10px;
  position: absolute;
  top: 24px;
  right: 24px;
  background: #fff; /* optional */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.icon img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

@media (max-width: 640px) {
  .icon {
    width: 36px;
    height: 36px;
    top: 16px;
    right: 16px;
  }

  .icon img {
    width: 18px;
    height: 18px;
  }
}

/* Icon colors */
.blue { background: #2f80ed; }
.purple { background: #9b51e0; }
.orange { background: #f2994a; }
.red { background: #ff5c5c; }
.green { background: #27ae60; }
.teal { background: #2d9cdb; }

/* Title */
.card h3 {
  font-size: 20px;
  margin-bottom: 50px;
  color: #1c2b3a;
  padding-right: 60px; /* space for icon */
}

/* Text */
.card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #5f6f81;
  padding-bottom: 2.5em;
}

/* Link */
.card a {
  font-size: 14px;
  font-weight: 500;
  color: #5f6f81;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  position: relative;
  transition: all 0.3s ease;
}

.card a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1.5px;
  background: currentColor;
  transition: width 0.3s ease;
}

.card a:hover::after {
  width: 30%;
}


/* Link hover */
.card a:hover {
  color: #000;
}

.card {
    background: white;
  border-radius: 14px;
  padding: 32px 28px 28px;
  position: relative;
  min-height: 230px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  outline: none;
  box-shadow: 
   0 4px 10px rgba(10, 25, 80, 0.15),
  0 10px 20px rgba(10, 25, 80, 0.12);

 
}

/* Smooth transition for inner elements */
.card h3,
.card p,
.card a {
  transition: all 0.3s ease;
}

/* HOVER STATE */
.card:hover {
  background: #023e7d;
  transform: translateY(-6px);
}

/* Text changes */
.card:hover h3 {
  color: #ffffff;
}

.card:hover p {
  color: #cbd5e1;
}

.card:hover a {
  color: #ffffff;
}

/* Arrow animation (optional) */
.card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.card:hover a {
  gap: 10px; /* arrow moves slightly */
}

/* Icon glow effect */
.card .icon {
  transition: all 0.3s ease;
}

.card:hover .icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.card.active {
  background: #023e7d;
}

.card.active h3,
.card.active p,
.card.active a {
  color: #fff;
}

@media (max-width: 640px) {

  .law-section {
    padding: 50px 0;
  }

  .card {
    padding: 22px 18px;
    border-radius: 12px;
  }

  .card h3 {
    font-size: 18px;
    padding-right: 50px;
  }

  .card p {
    font-size: 14px;
  }

  .icon {
    width: 36px;
    height: 36px;
    top: 16px;
    right: 16px;
  }
}

.nine-sec-head{
  padding-top: 55px;
  padding-bottom: 55px;
}


/* ------------------------------------------------------ */

/* changes-section */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: #f0f4ff;
    }

    /* ── OUTER SECTION ───────────────────────── */
    .clm-section {
      padding: 96px 24px 60px;
      background: #f3f9ff;
    }

    .clm-inner {
      max-width: 1104px;
      margin: 0 auto;
    }

    /* ── LABEL PILL ──────────────────────────── */
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: #e0e8ff;
      border: 1px solid #c5d3ff;
      color: #3b54d4;
      font-family: 'Sora', sans-serif;
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 100px;
      margin-bottom: 22px;
    }

    /* ── HEADING ─────────────────────────────── */
    .section-heading {
      font-family: 'Sora', sans-serif;
      font-size: clamp(26px, 3.8vw, 44px);
      font-weight: 800;
      color: #0e1a4c;
      line-height: 1.2;
      max-width: 660px;
      margin-bottom: 14px;
    }
    .section-heading span {
      color: #4361ee;
    }

    .section-sub {
      font-size: 16.5px;
      color: #5a6a9a;
      max-width: 500px;
      line-height: 1.65;
      margin-bottom: 52px;
    }

    /* ── OUTER CARD (Zoho-style container) ───── */
    .benefits-wrapper {
      background: #1e2a5e;
      border-radius: 24px;
      padding: 44px 36px;
    }

    /* ── GRID ────────────────────────────────── */
    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 26px;
    }

    /* ── EACH CARD ───────────────────────────── */
    .benefit-card {
      background: #dde6ff;
      border: 1px solid #c6d3f7;
      border-radius: 14px;
      padding: 22px 25px;
      display: flex;
      align-items: center;
      gap: 18px;
      transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
    }
    .benefit-card:hover {
      background: #ccd8ff;
      transform: translateY(-3px);
      box-shadow: 0 10px 32px rgba(30, 42, 94, 0.14);
    }

    /* ── ICON WRAPPER ────────────────────────── */
    .card-icon-wrap {
      width: 52px;
      height: 52px;
      flex-shrink: 0;
      border-radius: 12px;
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(67, 97, 238, 0.12);
      overflow: hidden;
    }
    /* When real images are used, they'll fill naturally */
    .card-icon-wrap img {
      width: 30px;
      height: 30px;
      object-fit: contain;
      display: block;
    }
    /* Fallback SVG placeholder style */
    .card-icon-wrap svg {
      width: 26px;
      height: 26px;
      flex-shrink: 0;
    }

    /* ── TEXT ────────────────────────────────── */
    .card-text {}
    .card-title {
      font-size: 16px;
      font-weight: 700;
      color: #0e1a4c;
      line-height: 1.4;
      margin-bottom: 5px;
    }
    .card-desc {

      color: #4a5a8a;
      line-height: 1.6;
          font-size: 15px;
   
    }

    /* ── RESPONSIVE ──────────────────────────── */
    @media (max-width: 680px) {
      .benefits-wrapper { padding: 28px 18px; }
      .benefits-grid { grid-template-columns: 1fr; }
      .clm-section { padding: 64px 18px 32px; }
    }
/* --------------------------- */

/*--------intigration------------------------------------------------------ */
/* Section Wrapper */
.integration-section {
  padding: 70px 10px 40px;
  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 30px 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 h2 {
  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 h2 {
    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 h2 {
    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 h2 {
    font-size: 1.4rem;
  }

  .integration-list-box {
    gap: 20px;
    padding: 20px;
    
  }
  .integration-list-box ul {
  
    font-size: 0.7rem;
}

.nine-sec-head{
  padding-top: 0px;
  padding-bottom: 35px;
}
}
/*--------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);
}

@media (max-width:480px) {
  .faq .faq-title {
   font-weight: 500 !important;
        color: #0a2540;
        font-size: 22.8px;
}
}

  .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;
    }
  }


  .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;
      }
    }


  .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 */
}

/* feature-section */
  /* Base Styles */
  .feature-toggle-section {
    line-height: 1.5;
    margin-top: 50px;
  }
  
  .container {
    box-sizing: border-box;
    padding: 0 15px;
  }

  /* Toggle Buttons */
  .toggle-button {
    background: #fff;
    border: 1px solid #ccc;
    padding: 13px 43px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #333;
    margin: 5px;
    white-space: nowrap;
  }

  .toggle-button:hover {
    background-color: #f0f0f0;
  }

  .toggle-button.active {
    background-color: #006aff;
    color: #fff;
    border-color: #006aff;
  }

  /* Feature Content Box */
  .feature-content-box {
    background: #ffffff00;
    padding: 40px;
  }

  /* Tab Layout */
  .tab-pane {
    display: none;
  }

  .tab-pane.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
  }

  .tab-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
  }

  .text-block {
    flex: 1 1 50%;
    max-width: 45%;
    order: 1;
  }
  .text-block {
  flex: 1 1 50%;
  padding-right: 40px;
}

.text-block h2 {
  margin-top: -10px;
  font-size: 54px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.text-block p {
  font-size: 28px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 24px;
}


.text-block-p{
  position: relative;
  font-size: 20px !important  ;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.0;
}



  .image-block {
    flex: 1 1 50%;
    max-width: 50%;
    order: 2;
    text-align: center;
  }

  /* Images */
  .tab-pane img {
    /* max-width: 100%;
    height: auto;
    margin-right: -149px;
    margin-top: -50px;
    margin-bottom: -40px;
    border-radius: 26px 0px 26px 0px; */
     max-width: 100%;
    height: auto;
    margin: auto;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1)
  }

  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive Adjustments */
  @media (max-width: 1000px) {
    .feature-content-box {
      padding: 25px;
      margin: -20px;

    }
    .tab-pane img {
    max-width: 100%;
    height: auto;
    margin: auto;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
    
    .tab-layout {
      flex-direction: column;
      gap: 30px;
    }
    
    .text-block, .image-block {
      flex: 1 1 100%;
      min-width: 100%;
    }
    
    .text-block {
      order: 2;
    }
    
    .image-block {
      order: 1;
    }
    
    .toggle-button-row {
      gap: 25px;
    }
    
    .toggle-button {
      padding: 8px 16px;
      font-size: 13px;
    }
  }


/* Reverse layout only for second section */
.reverse-layout .text-block {
  order: 2;
}

.reverse-layout .image-block {
  order: 1;
}

/* Mobile me normal hi rehne do */
@media (max-width: 1000px) {
  .reverse-layout .text-block {
    order: 2;
  }

  .reverse-layout .image-block {
    order: 1;
  }
}

  @media (max-width: 480px) {
    .feature-toggle-section {
      padding: 40px 15px;
    }
    
    
    .feature-content-box {
      padding: 20px;
      margin: -10px;
    }
  }

  @media (max-width: 1000px) {
  .text-block {
    flex: 1 1 100%;
    padding-right: 0;
  }

  .text-block h2 {
    margin-top: 0px;
    font-size: 24px;
  }

  .text-block p {
    font-size: 16px;
  }

  .text-block ul li {
    font-size: 15px;
  }
}

.btn-orange {
  background: linear-gradient(90deg, #2d0e9f, #00aaff); /* Gradient from purple to blue */
  color: #ffffff;
  font-weight: 500;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 170, 255, 0.3);
  text-decoration: none;
}

.btn-orange:hover {
  transform: translateY(-1px);
  background: #ffffff;
  color: #0044f0;
  border: 1px solid #0044f0;
}



  @media (max-width: 786px) {

  .ms-workflow-wrapper{
    display: none;
  }
  .ms-workflow-mobile-img img {
  width: 100%;
  max-width: 700px;
  height: auto;
}
}
@media (max-width: 1024px) {

  /* Hide complex diagram */
  .ms-workflow-wrapper {
    display: none;
  }

  /* Show image */
  .ms-workflow-mobile-img {
    display: block;
    margin-top: 20px;
  }
}
@media(min-width: 1020px){
  .ms-workflow-mobile-img {
    display: none;
  }
}
/* ends-here */

/* image-on-left-side */
  /* Base Styles */
  .feature-toggle-section {
    line-height: 1.5;
    margin-top: 50px;
  }
  
  .container {
    box-sizing: border-box;
    padding: 0 15px;
  }

  /* Toggle Buttons */
  .toggle-button {
    background: #fff;
    border: 1px solid #ccc;
    padding: 13px 43px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #333;
    margin: 5px;
    white-space: nowrap;
  }

  .toggle-button:hover {
    background-color: #f0f0f0;
  }

  .toggle-button.active {
    background-color: #006aff;
    color: #fff;
    border-color: #006aff;
  }

  /* Feature Content Box */
  .feature-content-box {
    background: #ffffff00;
    padding: 40px;
  }

  /* Tab Layout */
  .tab-pane {
    display: none;
  }

  .tab-pane.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
  }

  .tab-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
  }

  .text-block {
    flex: 1 1 50%;
    max-width: 45%;
    order: 1;
  }
  .text-block {
  flex: 1 1 50%;
  padding-right: 40px;
 
}

.text-block h2 {
  margin-top: -10px;
  font-size: 54px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.text-block p {
  font-size: 28px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 24px;
}


.text-block-p{
  position: relative;
  font-size: 20px !important  ;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.0;
}



  .image-block {
    flex: 1 1 50%;
    max-width: 50%;
    order: 2;
    text-align: center;
  }

  /* Images */
  .tab-pane img {
     max-width: 100%;
    height: auto;
    margin: auto;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1)
  }

  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive Adjustments */
  @media (max-width: 1000px) {
    .feature-content-box {
      padding: 25px;
      margin: -20px;

    }
    .tab-pane img {
    max-width: 100%;
    height: auto;
    margin: auto;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
    
    .tab-layout {
      flex-direction: column;
      gap: 30px;
    }
    
    .text-block, .image-block {
      flex: 1 1 100%;
      min-width: 100%;
    }
    
    .text-block {
      order: 2;
    }
    
    .image-block {
      order: 1;
    }
    
    .toggle-button-row {
      gap: 25px;
    }
    
    .toggle-button {
      padding: 8px 16px;
      font-size: 13px;
    }
  }

  @media (max-width: 480px) {
    .feature-toggle-section {
      padding: 40px 15px;
    }
    
    
    .feature-content-box {
      padding: 20px;
      margin: -10px;
    }
  }

  @media (max-width: 1000px) {
  .text-block {
    flex: 1 1 100%;
    padding-right: 0;
  }

  .text-block h2 {
    margin-top: 0px;
    font-size: 24px;
  }

  .text-block p {
    font-size: 16px;
  }

  .text-block ul li {
    font-size: 15px;
  }
}

.btn-orange {
  background: linear-gradient(90deg, #2d0e9f, #00aaff); /* Gradient from purple to blue */
  color: #ffffff;
  font-weight: 500;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 170, 255, 0.3);
  text-decoration: none;
}

.btn-orange:hover {
  transform: translateY(-1px);
  background: #ffffff;
  color: #0044f0;
  border: 1px solid #0044f0;
}



  @media (max-width: 786px) {

  .ms-workflow-wrapper{
    display: none;
  }
  .ms-workflow-mobile-img img {
  width: 100%;
  max-width: 700px;
  height: auto;
}
}
@media (max-width: 1024px) {

  /* Hide complex diagram */
  .ms-workflow-wrapper {
    display: none;
  }

  /* Show image */
  .ms-workflow-mobile-img {
    display: block;
    margin-top: 20px;
  }
}
@media(min-width: 1020px){
  .ms-workflow-mobile-img {
    display: none;
  }
}
/* ends-here */

/* left-side-image */

  .feature-toggle-section {
    line-height: 1.5;
    margin-top: 50px;
  }
  
  .container {
    box-sizing: border-box;
    padding: 0 15px;
  }

  /* Toggle Buttons */
  .toggle-button {
    background: #fff;
    border: 1px solid #ccc;
    padding: 13px 43px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #333;
    margin: 5px;
    white-space: nowrap;
  }

  .toggle-button:hover {
    background-color: #f0f0f0;
  }

  .toggle-button.active {
    background-color: #006aff;
    color: #fff;
    border-color: #006aff;
  }

  /* Feature Content Box */
  .feature-content-box {
    background: #ffffff00;
    padding: 40px;
  }

  /* Tab Layout */
  .tab-pane {
    display: none;
  }

  .tab-pane.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
  }

  .tab-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
  }

  .text-block {
    flex: 1 1 50%;
    max-width: 45%;
    order: 1;
  }
  .text-block {
  flex: 1 1 50%;
  padding-right: 40px;
}

.text-block h2 {
  margin-top: -10px;
  font-size: 54px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  text-align: start;
}

.text-block p {
  font-size: 28px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 24px;
  text-align: start;
}


.text-block-p{
  position: relative;
  font-size: 20px !important  ;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.0;
}



  .image-block {
    flex: 1 1 50%;
    max-width: 50%;
    order: 2;
    text-align: center;
  }

  /* Images */
  .tab-pane img {
         max-width: 100%;
    height: auto;
    margin: auto;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1)
  }

  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive Adjustments */
  @media (max-width: 1000px) {
    .feature-content-box {
      padding: 25px;
      margin: -20px;

    }
    .tab-pane img {
    max-width: 100%;
    height: auto;
    margin: auto;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
    
    .tab-layout {
      flex-direction: column;
      gap: 30px;
    }
    
    .text-block, .image-block {
      flex: 1 1 100%;
      min-width: 100%;
    }
    
    .text-block {
      order: 1;
    }
    
    .image-block {
      order: 2;
    }
    
    .toggle-button-row {
      gap: 25px;
    }
    
    .toggle-button {
      padding: 8px 16px;
      font-size: 13px;
    }
  }

  @media (max-width: 480px) {
    .feature-toggle-section {
      padding: 40px 15px;
    }
    
    
    .feature-content-box {
      padding: 20px;
      margin: -10px;
    }
  }

  @media (max-width: 1000px) {
  .text-block {
    flex: 1 1 100%;
    padding-right: 0;
  }

  .text-block h2 {
    margin-top: 0px;
    font-size: 24px;
  }

  .text-block p {
    font-size: 16px;
  }

  .text-block ul li {
    font-size: 15px;
  }
}

.btn-orange {
  background: linear-gradient(90deg, #2d0e9f, #00aaff); /* Gradient from purple to blue */
  color: #ffffff;
  font-weight: 500;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 170, 255, 0.3);
  text-decoration: none;
}

.btn-orange:hover {
  transform: translateY(-1px);
  background: #ffffff;
  color: #0044f0;
  border: 1px solid #0044f0;
}



  @media (max-width: 786px) {

  .ms-workflow-wrapper{
    display: none;
  }
  .ms-workflow-mobile-img img {
  width: 100%;
  max-width: 700px;
  height: auto;
}
}
@media (max-width: 1024px) {

  /* Hide complex diagram */
  .ms-workflow-wrapper {
    display: none;
  }

  /* Show image */
  .ms-workflow-mobile-img {
    display: block;
    margin-top: 20px;
  }
}
@media(min-width: 1020px){
  .ms-workflow-mobile-img {
    display: none;
  }
}
/* ends-here */

/* image-on-left-side */
  /* Base Styles */
  .feature-toggle-section {
    line-height: 1.5;
    margin-top: 50px;
  }
  
  .container {
    box-sizing: border-box;
    padding: 0 15px;
  }

  /* Toggle Buttons */
  .toggle-button {
    background: #fff;
    border: 1px solid #ccc;
    padding: 13px 43px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #333;
    margin: 5px;
    white-space: nowrap;
  }

  .toggle-button:hover {
    background-color: #f0f0f0;
  }

  .toggle-button.active {
    background-color: #006aff;
    color: #fff;
    border-color: #006aff;
  }

  /* Feature Content Box */
  .feature-content-box {
    background: #ffffff00;
    padding: 40px;
  }

  /* Tab Layout */
  .tab-pane {
    display: none;
  }

  .tab-pane.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
  }

  .tab-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
  }

  .text-block {
    flex: 1 1 50%;
    max-width: 45%;
    order: 1;
  }
  .text-block {
  flex: 1 1 50%;
  padding-right: 40px;
}

.text-block h2 {
  margin-top: -10px;
  font-size: 54px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.text-block p {
  font-size: 28px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 24px;
}


.text-block-p{
  position: relative;
  font-size: 20px !important  ;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.0;
}



  .image-block {
    flex: 1 1 50%;
    max-width: 50%;
    order: 2;
    text-align: center;
  }

  /* Images */
  .tab-pane img {
    /* max-width: 100%;
    height: auto;
    margin-right: -149px;
    margin-top: -50px;
    margin-bottom: -40px;
    border-radius: 26px 0px 26px 0px; */
         max-width: 100%;
    height: auto;
    margin: auto;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1)
  }

  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive Adjustments */
  @media (max-width: 1000px) {
    .feature-content-box {
      padding: 25px;
      margin: -20px;

    }
    .tab-pane img {
    max-width: 100%;
    height: auto;
    margin: auto;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
    
    .tab-layout {
      flex-direction: column;
      gap: 30px;
    }
    
    .text-block, .image-block {
      flex: 1 1 100%;
      min-width: 100%;
    }
    
    .text-block {
      order: 2;
    }
    
    .image-block {
      order: 1;
    }
    
    .toggle-button-row {
      gap: 25px;
    }
    
    .toggle-button {
      padding: 8px 16px;
      font-size: 13px;
    }
  }

  @media (max-width: 480px) {
    .feature-toggle-section {
      padding: 40px 15px;
    }
    
    
    .feature-content-box {
      padding: 20px;
      margin: -10px;
    }
  }

  @media (max-width: 1000px) {
  .text-block {
    flex: 1 1 100%;
    padding-right: 0;
  }

  .text-block h2 {
    margin-top: 0px;
    font-size: 24px;
  }

  .text-block p {
    font-size: 16px;
  }

  .text-block ul li {
    font-size: 15px;
  }
}

.btn-orange {
  background: linear-gradient(90deg, #2d0e9f, #00aaff); /* Gradient from purple to blue */
  color: #ffffff;
  font-weight: 500;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 170, 255, 0.3);
  text-decoration: none;
}

.btn-orange:hover {
  transform: translateY(-1px);
  background: #ffffff;
  color: #0044f0;
  border: 1px solid #0044f0;
}



  @media (max-width: 786px) {

  .ms-workflow-wrapper{
    display: none;
  }
  .ms-workflow-mobile-img img {
  width: 100%;
  max-width: 700px;
  height: auto;
}
}
@media (max-width: 1024px) {

  /* Hide complex diagram */
  .ms-workflow-wrapper {
    display: none;
  }

  /* Show image */
  .ms-workflow-mobile-img {
    display: block;
    margin-top: 20px;
  }
}
@media(min-width: 1020px){
  .ms-workflow-mobile-img {
    display: none;
  }
}
/* ends-here */

/* image-right-side */
/* Toggle Buttons */
  .toggle-button-1 {
    background: #fff;
    border: 1px solid #ccc;
    padding: 13px 37px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #333;
    margin: 5px;
    white-space: nowrap;
  }

  .toggle-button-1:hover {
    background-color: #f0f0f0;
  }

  .toggle-button-1.active-1 {
    background-color: #006aff;
    color: #fff;
    border-color: #006aff;
  }

   .tab-pane-1 {
    display: none;
  }

  .tab-pane-1.active-1 {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
  }

   .tab-pane-1 img{
    /* max-width: 100%;
    height: auto;
    margin-right: -149px;
    margin-top: -50px;
    margin-bottom: -40px;
    border-radius: 26px 0px 26px 0px; */
    max-width: 100%;
    height: auto;
    margin: auto;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1)
  }   

  @media (max-width: 1000px) {
  
    
    .toggle-button-1 {
      padding: 8px 16px;
      font-size: 13px;
    }
     .toggle-button-row-1 {
      gap: 25px;
    }
  }

  @media (max-width: 400px){
  .ms-feature-text p {
  font-size: 16px;
  color: #040d34;
  line-height: 1.6;
  margin-bottom: 30px;
  margin-right: 7px;

}
 .xd4e5f6 {
    font-size: 1.5rem;
    text-align: center;
    font-weight: 500;
  }
}

.text-block-1 {
  flex: 1 1 50%;
  max-width: 45%;
  order: 2;
  padding-right: 40px;
  text-align: right;
}

.text-block-1 h2 {
  margin-top: -10px;
  font-size: 54px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.text-block-1 p {
  font-size: 28px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 24px;
}

.text-block-p {
  position: relative;
  font-size: 20px !important;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.0;
}

@media (max-width: 1000px) {
  .text-block-1 {
    flex: 1 1 100%;
    padding-right: 0;
    order: 2;
    max-width: fit-content;
  }

  .text-block-1 h2 {
    margin-top: 0px;
    font-size: 24px;
  }

  .text-block-1 p {
    font-size: 16px;
  }

  .text-block-1 ul li {
    font-size: 15px;
  }
}


.ms-section {
  width: 100%;
 max-width: 1400px;
  overflow: hidden;
  background-color: transparent;
  margin: 0 auto;
  padding: 0px 0px;
}

.ms-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.ms-inner {
  position: relative;
  width: 1400px;
  height: 520px;
  transform-origin: top left;
}

.ms-inner {
  visibility: hidden;
  will-change: unset; 
}

.ms-outer {
  overflow: hidden; 
  min-height: 100px;
}

.ms-svg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ── CENTER CARD ── */
.ms-card {
  position: absolute;
  left: 488px;
  top: 108px;
  width: 424px;
  height: 212px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(193, 216, 255, 0.6);
  box-shadow:
    0 2px 4px rgba(50, 90, 180, 0.05),
    0 8px 32px rgba(50, 90, 180, 0.10),
    0 24px 64px rgba(50, 90, 180, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 26px 26px 0;
  overflow: visible; /* buttons can overflow bottom */
}

/* Title badge: own background + border-radius */
.ms-title-badge {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  width: 130%;
  background: #f4f8ff;
  border: 1px solid #d4e6ff;
  border-radius: 12px;
  padding: 11px 14px;
  box-shadow: 0 1px 8px rgba(59, 130, 246, 0.07);
}

.ms-title-badge span {
  font-size: 13.5px;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

/* Logo */
.ms-logo-wrap {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 50px;
  overflow: hidden;
  /* background: linear-gradient(135deg, #3b82f6, #06b6d4); */
  box-shadow: 0 4px 18px rgba(59, 130, 246, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 45px;
}
.ms-logo-img {
  width: 59%;
  height: 59%;
  object-fit: cover;
  display: block;
}
.ms-logo-fallback {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

/* CTA buttons – straddle card bottom boundary */
.ms-cta {
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  /* white strip masks the card border line behind the buttons */
  /* background: #ffffff; */
  padding: 0 8px;
}

.ms-btn {
  height: 38px;
  padding: 7px 20px;
  border-radius: 9px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .15s, transform .12s;
}
.ms-btn:hover  { opacity: .88; transform: translateY(-1px); }
.ms-btn:active { transform: translateY(0); }

.ms-btn-ghost {
  background: #ffffff;
  border: 1.5px solid #d0dcea;
  color: #374151;
}
.ms-btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border: none;
  color: #ffffff;
  box-shadow: 0 3px 12px rgba(59, 130, 246, 0.38);
}

/* ── HUB NODES ── */
.ms-hub {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1.5px solid #d4e6ff;
  border-radius: 999px;
  padding: 7px 14px 7px 8px;
  box-shadow: 0 2px 16px rgba(59, 130, 246, 0.15), 0 1px 4px rgba(0,0,0,0.05);
  white-space: nowrap;
}
.ms-hub-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ms-hub-lc { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.ms-hub-mm { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.ms-hub-text {
  font-size: 12.5px;
  font-weight: 600;
  color: #1e293b;
  letter-spacing: -0.01em;
}


.ms-section {
  background:
    radial-gradient(ellipse at top right,    #f2f7fe 0%, transparent 55%),
    radial-gradient(ellipse at bottom right, #f8f3fb 0%, transparent 55%),
    radial-gradient(ellipse at center,       #f7f2fb 0%, transparent 60%),
    radial-gradient(ellipse at bottom left,  #f8f3fa 0%, transparent 55%),
    radial-gradient(ellipse at top left,     #f7f3fb 0%, transparent 55%),
    #ffffff;
}
/* ── LEAF NODES ── */
.ms-leaf {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  background: #ffffff;
  border: 1px solid #e5edf7;
  border-radius: 9px;
  padding: 6px 9px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.055), 0 1px 2px rgba(0,0,0,0.03);
  white-space: nowrap;
  width: 170px;
  height: 36px;
}

.ms-leaf-txt {
  font-size: 11.5px;
  font-weight: 500;
  color: #4a5568;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ms-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Hide by default (mobile & tablet) */
.ms-section {
  display: none;
}

/* Show only on laptop/desktop (≥1024px) */
@media (min-width: 1024px) {
  .ms-section {
    display: block; /* or flex/grid based on your layout */
  }
}