 
        :root {
            --primary-color: #0b1c3c;
            --secondary-color: #0a2558;
            --accent-green: #2ecc71;
            --accent-green-hover: #27ae60;
            --text-light: #ffffff;
            --text-muted: #a0aec0;
            --card-bg: rgba(255, 255, 255, 0.03);
            --card-border: rgba(255, 255, 255, 0.15);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

      body, html {
  overflow-x: visible; /* or remove overflow: hidden if you have it here */
}
        /* General Header Reset */
.site-header {
  position: relative;
  width: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #081638; /* Deep dark blue container backdrop */
}

/* --- Top Utility Bar --- */
.top-bar {
  background-color: #081638;
  color: #ffffff;
  padding: 12px 20px;
  font-size: 0.85rem;
  width: 100%; 
}

.top-bar-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 25px;
  align-items: center;
}

.top-bar-left a, .top-bar-right a {
  color: #cbd5e1;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.top-bar-left a:hover, .top-bar-right a:hover {
  color: #ffffff;
}

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

/* --- Main Sticky Dark Navbar --- */
/* Base navbar styles */
.navbar {
  width: 100%;
  background-color: #021C56;
  transition: all 0.2s ease-in-out;
}

/* Switches to fixed positioning once scrolled past the top bar */
.navbar.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.navbar-container {
      max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

/* Nav Links Base */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #e2e8f0; /* Light clean text color for dark mode */
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links li a:hover, .nav-links li a.active {
  color: #4ade80; /* Bright green text highlight matching design buttons */
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
}

.dropdown .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #0f1f4b; /* Slightly lighter dark shade for dropdown card */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  list-style: none;
  padding: 10px 0;
  width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease-in-out;
  z-index: 999;
}

.dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li a {
  padding: 10px 20px;
  color: #cbd5e1;
  font-size: 0.9rem;
}

.submenu li a:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: #4ade80;
}

/* CTA Request a Demo Button */
.btn-demo {
  background-color: #22c55e; /* Bright green pill button from image */
  color: #ffffff !important;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-demo:hover {
  background-color: #16a34a;
  transform: translateY(-2px);
}

.mobile-demo-btn-item {
  display: none;
}

/* Hamburger & Close Buttons */
.menu-toggle, .sidebar-close-btn, .sidebar-header {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle {
  font-size: 1.5rem;
  color: #ffffff;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.sidebar-overlay.active {
  visibility: visible;
  opacity: 1;
}
/* --- Responsive & Mobile Sidebar Styles --- */
@media (max-width: 1024px) {
  .top-bar {
    display: none; /* Hide top bar on smaller viewports */
  }

  .desktop-demo-btn {
    display: none;
  }

  .mobile-demo-btn-item {
    display: block;
    margin-top: 15px;
  }

  .menu-toggle, .sidebar-header, .sidebar-close-btn {
    display: flex;
  }

  /* Slide-Out Drawer Sidebar */
   
  .nav-links {
    position: fixed;
    top: 0;
    left: -300px; /* Starts hidden off-screen to the left */
    width: 300px;
    height: 100vh;
    background-color: #081638; /* Maintains dark theme inside mobile drawer */
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.4); /* Shadow points to the right */
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1002;
    overflow-y: auto;
    gap: 20px;
  }

  .nav-links.active {
    left: 0;
  }

  .sidebar-header {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    margin-bottom: 10px;
  }

  .sidebar-title {
    font-weight: 700;
    font-size: 1.2rem;
    color: #ffffff;
  }

  .sidebar-close-btn {
    font-size: 1.4rem;
    color: #cbd5e1;
    background: none;
    border: none;
    cursor: pointer;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    width: 100%;
    padding: 8px 0;
    font-size: 1.05rem;
    color: #e2e8f0;
  }

  /* Smooth Arrow Rotation on Mobile Open */
  .dropdown i.fa-angle-down {
    transition: transform 0.3s ease;
  }

  .dropdown.open i.fa-angle-down {
    transform: rotate(180deg);
  }

  /* Polished Mobile Dropdown Submenu Interaction */
  .dropdown .submenu {
    position: static;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.35s ease, padding 0.35s ease;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    margin-top: 8px;
    width: 100%;
    border-left: 3px solid #22c55e; /* Green accent line for nesting hierarchy */
  }

  .dropdown.open .submenu {
    max-height: 300px;
    padding: 8px 0;
  }

  .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .submenu li a {
    padding: 10px 15px 10px 20px !important;
    font-size: 0.9rem !important;
    color: #94a3b8 !important;
  }

  .submenu li a:hover {
    color: #4ade80 !important;
    background-color: rgba(255, 255, 255, 0.05);
  }
}
        /* Reusable Section Wrapper to prevent CSS repetition */
        .page-section {
            padding: 80px 5%;
            position: relative;
        }

        /* Hero Section Specifics */
       
.hero-section {
     padding: 30px 5% !important;
    background:
       
        url('../images/Slider.svg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
        .hero-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 40px;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 42px;
            line-height: 1.2;
            font-weight: 700;
            margin-bottom: 20px;
            color:#fff;
        }

        .hero-content h1 span {
            color: #20BAFD;
        }

        .hero-content p {
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 30px;
            max-width: 550px;
        }

        /* Stats Cards Row */
        .stats-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-top: 40px;
        }

        .stat-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            padding: 20px 15px;
            border-radius: 12px;
            backdrop-filter: blur(5px);
        }

        .stat-card h3 {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }

        .stat-card p {
            font-size: 12px;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.4;
        }

        /* Graphic Preview Mockup */
        .hero-graphics {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
        }

        .phone-mockup-main {
            width: 280px;
            background: #1a1a1a;
            border-radius: 40px;
            border: 8px solid #333;
            box-shadow: 0 25px 50px rgba(0,0,0,0.5);
            overflow: hidden;
            position: relative;
            z-index: 2;
        }

        .phone-mockup-secondary {
            position: absolute;
            left: 10px;
            width: 240px;
            background: #1a1a1a;
            border-radius: 35px;
            border: 6px solid #333;
            opacity: 0.6;
            transform: scale(0.9);
            z-index: 1;
        }

        .screen-content {
            background: #f8f9fa;
            color: #333;
            padding: 20px 15px;
            min-height: 480px;
        }

        .google-rating-badge {
            position: absolute;
            bottom: -20px;
            right: 10px;
            background: #0d2347;
            border: 1px solid var(--card-border);
            padding: 12px 18px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            z-index: 5;
            text-align: center;
        }

        .google-rating-badge img {
            height: 24px;
            margin-bottom: 4px;
        }

        .rating-stars {
            color: #f1c40f;
            font-size: 14px;
            margin-bottom: 2px;
        }

        .rating-text {
            font-size: 11px;
            color: var(--text-light);
            font-weight: 600;
        }

        /* Generic Modular Section Framework */
        .section-header {
            text-align: center;
           
            margin: 0 auto 50px auto;
        }

        .section-header h2 {
            font-size: 32px;
            margin-bottom: 15px;
        }

        .section-header p {
           
            font-size: 15px;
        }

        /* Responsive Design & Left Sidebar Navigation */
        @media (max-width: 992px) {
            

            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 80px 0 0 0;
            }
            .hero-content p {
                margin: 0 auto 30px auto;
            }
            .stats-row {
                max-width: 600px;
                margin: 40px auto 0 auto;
            }
            .hero-graphics {
                margin-top: 10px;
            }
        }
@media (max-width: 768px) {
  .hide-on-mobile {
    display: none !important;
  }
}
        @media (min-width: 993px) {
            .mobile-demo-btn-item {
                display: none; /* Hidden on desktop screens */
            }
        }

        @media (max-width: 576px) {
            .stats-row {
                grid-template-columns: 1fr;
            }
            .hero-content h1 {
                font-size: 32px;
            }
        } 


.mts-overview-section {
    position: relative;
    padding: 50px 20px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #0f172a;
    overflow: hidden;
  }

  /* Decorative background blur shapes */
  .mts-overview-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
    pointer-events: none;
  }

  .mts-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
  }

  .mts-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 72px auto;
  }

  .mts-badge-wrapper {
    display: inline-block;
    margin-bottom: 20px;
  }

  .mts-badge {
       display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #03A9F4;
    background: rgb(3 169 244 / 6%);
    border: 1px solid #03A9F4;
    border-radius: 50px;
  }

  .mts-badge-dot {
    width: 6px;
    height: 6px;
    background-color: #03A9F4;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(37, 99, 235, 0.6);
  }

  .mts-title {
    font-size: clamp(32px, 4.5vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    color: #090d16;
  }

  .mts-subtitle {
    font-size: 18px;
    line-height: 1.65;
    color: #475569;
    margin: 0;
  }

  .mts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
  }

  .mts-card {
position: relative;
    background: #ffffff;
    padding: 10px 15px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -2px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* Subtle inner gradient hover glow */
  .mts-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(37, 99, 235, 0.03), transparent 40%);
    pointer-events: none;
  }

  .mts-card:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 20px 35px -10px rgba(37, 99, 235, 0.1), 0 10px 15px -5px rgba(0, 0, 0, 0.04);
  }

  .mts-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    height: 54px;
    background:#0a2558;
    color: #fff;
    border-radius: 14px;
    transition: all 0.3s ease;
  }

  .mts-card:hover .mts-icon-wrapper {
    background:  #2bd673;
    color: #ffffff;
    transform: scale(1.05);
    
  }

  .mts-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0a2558;
    margin: 0;
    flex-grow: 1;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
  }

  .mts-card:hover h3 {
    color: #2bd673;
  }

  .mts-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #94a3b8;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mts-card:hover .mts-arrow {
    opacity: 1;
    transform: translateX(0);
    color: #2bd673;
  }

  @media (max-width: 768px) {
    .mts-overview-section {
      padding: 80px 16px;
    }
    .mts-grid {
      grid-template-columns: 1fr;
    }
  }
  /* Section Base */
.mts-fits-section {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1e293b;
  text-align: center;
}

.mts-fits-section .mts-fits-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Title */
.mts-fits-section .mts-fits-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 60px;
  line-height: 1.25;
}

/* Grid Layout */
.mts-fits-section .mts-fits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

/* Card Component */
.mts-fits-section .mts-fits-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mts-fits-section .mts-fits-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

/* Icon Sub-element */
.mts-fits-section .mts-fits-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mts-fits-section .mts-fits-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Typography Sub-elements */
.mts-fits-section .mts-fits-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 16px;
  line-height: 1.4;
}

.mts-fits-section .mts-fits-card-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
  .mts-fits-section .mts-fits-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .mts-fits-section .mts-fits-title {
    font-size: 1.75rem;
    margin-bottom: 40px;
  }
}
             /* <Features Grid> */

            .features-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
                max-width: 1200px;
                margin: 0 auto;
            }
            .features-grid-2 {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
                max-width: 1200px;
                margin: 0 auto;
            }
             .features-grid-3 {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
                max-width: 1200px;
                margin: 0 auto;
            }

            .feature-card {
                background: #ffffff;
                border-radius: 16px;
                padding: 35px 30px;
                color: #0b1c3c;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                transition: var(--transition);
                display: flex;
                flex-direction: column;
                align-items: flex-start;
            }

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

            .feature-icon {
                width: 50px;
                height: 50px;
                background-color: #2bd673;
                border-radius: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #ffffff;
                font-size: 20px;
                margin-bottom: 22px;
            }

            .feature-card h3 {
                font-size: 20px;
                font-weight: 700;
                margin-bottom: 12px;
                color: #0a2558;
            }

            .feature-card p {
                font-size: 13.5px;
                color: #555555;
                line-height: 1.6;
                margin: 0;
            }

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

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


            /* Value Proposition 4-Column Layout */

               
            .value-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 24px;
                max-width: 1300px;
                margin: 0 auto;
            }

            .value-card {
                background: #ffffff;
                border: 1px solid #e2e8f0;
                border-radius: 20px;
                padding: 35px 25px;
                color: #0b1c3c;
                box-shadow: 0 10px 30px rgba(0,0,0,0.04);
                transition: var(--transition);
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                text-align: left;
            }

            /* Highlighted Card Style matching the second card in the reference */
            .value-card.highlighted {
                background-color: #0a2558;
                border-color: #0a2558;
                color: #ffffff;
                box-shadow: 0 15px 35px rgba(10,37,88,0.2);
            }

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

            .value-icon {
                width: 60px;
                height: 60px;
                background-color: #f1f5f9;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #0a2558;
                font-size: 22px;
                margin-bottom: 22px;
            }

            .value-card.highlighted .value-icon {
                background-color: rgba(255, 255, 255, 0.1);
                color: #ffffff;
            }

            .value-card h3 {
                font-size: 20px;
                font-weight: 700;
                margin-bottom: 15px;
                color: #0a2558;
                line-height: 1.3;
            }

            .value-card.highlighted h3 {
                color: #ffffff;
            }

            .value-card p {
                font-size: 13.5px;
                color: #555555;
                line-height: 1.6;
                margin: 0;
            }

            .value-card.highlighted p {
                color: #e2e8f0;
            }

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

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

             /* Comparison Table Section */
          
            .comparison-container {
                max-width: 1200px;
                margin: 0 auto;
                background: #ffffff;
                border: 1px solid #e2e8f0;
                border-radius: 20px;
                overflow: hidden;
                box-shadow: 0 15px 35px rgba(0,0,0,0.05);
            }

            .comparison-table {
                width: 100%;
                border-collapse: collapse;
                text-align: left;
            }

            .comparison-table th, 
            .comparison-table td {
                padding: 22px 30px;
                font-size: 14.5px;
            }

            .comparison-table th {
                font-size: 20px;
                font-weight: 700;
                color: #ffffff;
                border: none;
            }

            .comparison-table th.col-need {
                background-color: #0a2558;
                width: 30%;
                border-top-left-radius: 20px;
            }

            .comparison-table th.col-vendor {
                background-color: #2bd673;
                width: 35%;
            }

            .comparison-table th.col-mts {
                background-color: #2bd673;
                width: 35%;
                border-top-right-radius: 20px;
            }

            .comparison-table tr {
                border-bottom: 1px solid #e2e8f0;
                transition: var(--transition);
            }

            .comparison-table tr:last-child {
                border-bottom: none;
            }

            .comparison-table tr:hover {
                background-color: #f8fafc;
            }

            .comparison-table td.row-title {
                font-weight: 700;
                color: #0a2558;
                background-color: #fafbfc;
            }

            .comparison-table td.vendor-col {
                color: #475569;
            }

            .comparison-table td.mts-col {
                color: #0f172a;
                font-weight: 500;
                background-color: rgba(43, 214, 115, 0.03);
            }

            .comparison-action {
                text-align: center;
                margin-top: 40px;
            }

            @media (max-width: 992px) {
                .comparison-container {
                    overflow-x: auto;
                }
                .comparison-table {
                    min-width: 750px;
                }
            } 


             /* Partner Logos Auto-Sliding Section */

        
            .logo-slider-container {
                position: relative;
                max-width: 1300px;
                margin: 40px auto 0 auto;
                overflow: hidden;
                display: flex;
                mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
                -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            }

            .logo-track {
                display: flex;
                gap: 15px;
                width: max-content;
                animation: scrollLogos 30s linear infinite;
            }

            .logo-track:hover {
                animation-play-state: paused;
            }

            .partner-card {
               background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    width: 155px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    flex-shrink: 0;
            }

            .partner-card:hover {
                border-color: #cbd5e1;
                transform: translateY(-3px);
                box-shadow: 0 8px 20px rgba(0,0,0,0.06);
            }

            .partner-card img, .partner-card span {
                max-width: 100%;
                max-height: 100%;
                object-fit: contain;
                font-weight: 700;
                font-size: 16px;
                color: #0a2558;
            }

            @keyframes scrollLogos {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-50% - 12px));
                }
            }

            @media (max-width: 768px) {
                .partner-card {
                    width: 160px;
                    height: 80px;
                }
            } 
            /* Testimonial/Features Carousel Section with Bottom Controllers */

       
            .carousel-outer-wrapper {
                max-width: 1300px;
                margin: 0 auto;
                position: relative;
                overflow: hidden;
                padding: 20px 0 40px 0;
            }

            .carousel-track {
                display: flex;
                gap: 30px;
                transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
                will-change: transform;
            }

            .carousel-card {
                background: #ffffff;
                color: #0b1c3c;
                border-radius: 20px;
                padding: 45px 35px;
                flex: 0 0 calc(33.333% - 20px);
                min-width: 320px;
                box-shadow: 0 15px 35px rgba(0,0,0,0.2);
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                transition: var(--transition);
            }

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

            .carousel-icon {
                font-size: 42px;
                color: #0a2558;
                margin-bottom: 25px;
            }

            .carousel-card h3 {
                font-size: 24px;
                font-weight: 700;
                color: #0a2558;
                margin-bottom: 15px;
                line-height: 1.3;
            }

            .carousel-card p {
                font-size: 14.5px;
                color: #555555;
                line-height: 1.6;
                margin: 0;
            }

            /* Bottom Controllers / Dots */
            .carousel-dots {
                display: flex;
                justify-content: center;
                gap: 12px;
                margin-top: 35px;
            }

            .carousel-dot {
                width: 35px;
                height: 6px;
                background-color: rgba(255, 255, 255, 0.25);
                border-radius: 4px;
                border: none;
                cursor: pointer;
                transition: var(--transition);
            }

            .carousel-dot.active {
                background-color: #2bd673;
                width: 50px;
            }

            @media (max-width: 1024px) {
                .carousel-card {
                    flex: 0 0 calc(50% - 15px);
                }
            }

            @media (max-width: 768px) {
                .carousel-card {
                    flex: 0 0 100%;
                }
            } 

            /* Trusted Partners Auto-Sliding Section */
              
            .trusted-slider-container {
                position: relative;
                max-width: 1300px;
                margin: 40px auto 0 auto;
                overflow: hidden;
                display: flex;
                mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
                -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            }

            .trusted-track {
                display: flex;
                gap: 30px;
                width: max-content;
                animation: scrollTrusted 30s linear infinite;
            }

            .trusted-track:hover {
                animation-play-state: paused;
            }

            .trusted-card {
                background: #ffffff;
                border: 1px solid #e2e8f0;
                border-radius: 16px;
                width: 220px;
                height: 100px;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 15px;
                box-shadow: 0 4px 12px rgba(0,0,0,0.03);
                transition: var(--transition);
                flex-shrink: 0;
            }

            .trusted-card:hover {
                border-color: #cbd5e1;
                transform: translateY(-3px);
                box-shadow: 0 8px 20px rgba(0,0,0,0.06);
            }

            .trusted-card span {
                font-weight: 800;
                font-size: 16px;
                text-align: center;
            }

            @keyframes scrollTrusted {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-50% - 15px));
                }
            }

            @media (max-width: 768px) {
                .trusted-card {
                    width: 170px;
                    height: 80px;
                }
            } 


            /* Setup Steps Section */

              
            .steps-container {
                max-width: 1300px;
                margin: 60px auto 0 auto;
                position: relative;
            }

            .steps-grid {
                display: grid;
                grid-template-columns: repeat(5, 1fr);
                gap: 20px;
                position: relative;
                z-index: 2;
            }

            /* Continuous Connecting Path Line Behind Circles */
            .steps-path-line {
                position: absolute;
                top: 75px;
                left: 10%;
                right: 10%;
                height: 6px;
                background: linear-gradient(90deg, #0a2558 0%, #2bd673 25%, #0a2558 50%, #2bd673 75%, #0a2558 100%);
                z-index: 1;
                border-radius: 3px;
            }

            .step-column {
                display: flex;
                flex-direction: column;
                align-items: center;
                position: relative;
                z-index: 3;
            }

            /* Circular Icons Node */
            .step-circle-node {
                width: 150px;
                height: 150px;
                border-radius: 50%;
                background: #ffffff;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 10px 30px rgba(0,0,0,0.08);
                position: relative;
                transition: var(--transition);
                margin-bottom: 30px;
            }

            .step-circle-node.dark-ring {
                border: 8px solid #0a2558;
                color: #0a2558;
            }

            .step-circle-node.green-ring {
                border: 8px solid #2bd673;
                color: #2bd673;
            }

            .step-circle-node:hover {
                transform: scale(1.05);
            }

            .step-circle-node i {
                font-size: 45px;
            }

            /* Step Card Details */
            .step-info-card {
                background: #ffffff;
                border: 1px solid #e2e8f0;
                border-radius: 16px;
                padding: 25px 20px;
                text-align: center;
                width: 100%;
                min-height: 200px;
                box-shadow: 0 10px 25px rgba(0,0,0,0.04);
                transition: var(--transition);
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
            }

            .step-info-card:hover {
                transform: translateY(-5px);
                border-color: #cbd5e1;
                box-shadow: 0 15px 30px rgba(0,0,0,0.08);
            }

            .step-info-card h3 {
                font-size: 18px;
                font-weight: 700;
                color: #0a2558;
                margin-bottom: 12px;
                line-height: 1.3;
            }

            .step-info-card p {
                font-size: 13px;
                color: #555555;
                line-height: 1.6;
                margin: 0;
            }

            @media (max-width: 1200px) {
                .steps-grid {
                    grid-template-columns: repeat(3, 1fr);
                    gap: 30px;
                }
                .steps-path-line {
                    display: none;
                }
            }

            @media (max-width: 768px) {
                .steps-grid {
                    grid-template-columns: 1fr;
                    max-width: 400px;
                    margin: 0 auto;
                }
            } 

               /* FAQ Section with Interactive Accordion & Ask Box */

                 
            .faq-grid {
                display: grid;
                grid-template-columns: 1.2fr 0.8fr;
                gap: 50px;
                max-width: 1200px;
                margin: 0 auto;
                align-items: flex-start;
            }

            .accordion-container {
                display: flex;
                flex-direction: column;
                gap: 15px;
            }

            .accordion-item {
                background: #ffffff;
                border: 1px solid #e2e8f0;
                border-radius: 14px;
                box-shadow: 0 4px 15px rgba(0,0,0,0.02);
                overflow: hidden;
                transition: var(--transition);
            }

            .accordion-item:hover {
                border-color: #cbd5e1;
            }

            .accordion-header {
                padding: 20px 25px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                cursor: pointer;
                font-size: 16px;
                font-weight: 700;
                color: #0a2558;
                user-select: none;
            }

            .accordion-icon {
                width: 30px;
                height: 30px;
                background-color: #0a2558;
                color: #ffffff;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 14px;
                transition: transform 0.3s ease, background-color 0.3s ease;
                flex-shrink: 0;
            }

            .accordion-item.active .accordion-icon {
                transform: rotate(45deg);
                background-color: #2bd673;
            }

            .accordion-content {
                max-height: 0;
                overflow: hidden;
                padding: 0 25px;
                font-size: 14px;
                color: #555555;
                line-height: 1.6;
                transition: max-height 0.3s ease, padding 0.3s ease;
            }

            .accordion-item.active .accordion-content {
                max-height: 200px;
                padding: 0 25px 20px 25px;
            }

            /* Right Column: Question Graphic & Form Box */
            .faq-graphic-wrapper {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
                background: #fafbfc;
                border: 1px solid #e2e8f0;
                border-radius: 20px;
                padding: 40px 30px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            }

            .question-bubbles {
                position: relative;
                width:80%; 
                margin-bottom: 25px;
            }

            .bubble-main {
                position: absolute;
                left: 0;
                top: 0;
                width: 120px;
                height: 100px;
                background: #0a2558;
                border-radius: 50% 50% 50% 10%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #ffffff;
                font-size: 55px;
                font-weight: 900;
                box-shadow: 0 10px 20px rgba(10,37,88,0.2);
            }

            .bubble-sub {
                position: absolute;
                right: 0;
                bottom: 0;
                width: 90px;
                height: 80px;
                background: #2bd673;
                border-radius: 50% 50% 10% 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #ffffff;
                font-size: 40px;
                font-weight: 900;
                box-shadow: 0 10px 20px rgba(43,214,115,0.2);
            }

            .faq-graphic-wrapper h3 {
                font-size: 24px;
                font-weight: 700;
                color: #0a2558;
                margin-bottom: 8px;
            }

            .faq-graphic-wrapper p {
                font-size: 13.5px;
                color: #64748b;
                margin-bottom: 25px;
            }

            .ask-box-form {
                width: 100%;
                text-align: left;
            }

            .ask-box-form label {
                font-size: 12px;
                font-weight: 700;
                color: #0a2558;
                display: block;
                margin-bottom: 8px;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }

            .input-group {
                position: relative;
                display: flex;
                align-items: center;
            }

            .ask-box-form input {
                width: 100%;
                padding: 14px 40px 14px 18px;
                border: 1px solid #cbd5e1;
                border-radius: 10px;
                font-size: 14px;
                outline: none;
                transition: var(--transition);
                background: #ffffff;
            }

            .ask-box-form input:focus {
                border-color: #0a2558;
                box-shadow: 0 0 0 3px rgba(10,37,88,0.1);
            }

            .input-icon-close {
                position: absolute;
                right: 15px;
                color: #64748b;
                font-weight: bold;
                cursor: pointer;
            }

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

            /* Call to Action (CTA) Banner Section */

              
            .cta-banner {
                max-width: 1200px;
                margin: 0 auto;
                background: linear-gradient(135deg, #071733 0%, #0a2558 100%);
                border-radius: 24px;
                padding: 60px 50px;
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 40px;
                box-shadow: 0 20px 40px rgba(7, 23, 51, 0.2);
                position: relative;
                overflow: hidden;
            }

            /* Decorative background subtle glow circle */
            .cta-banner::after {
                content: '';
                position: absolute;
                right: -50px;
                top: -50px;
                width: 300px;
                height: 300px;
                background: radial-gradient(circle, rgba(43, 214, 115, 0.15) 0%, transparent 70%);
                border-radius: 50%;
                pointer-events: none;
            }

            .cta-content h2 {
                font-size: 36px;
                font-weight: 700;
                color: #ffffff;
                line-height: 1.25;
                max-width: 650px;
                margin: 0;
            }

            .cta-content h2 span {
                color: #2bd673;
            }

            .cta-actions {
                display: flex;
                flex-direction: column;
                gap: 15px;
                flex-shrink: 0;
                z-index: 2;
            }

            .btn-green-cta {
                background-color: #2bd673;
                color: #fff;
                padding: 14px 28px;
                border-radius: 30px;
                font-weight: 700;
                text-decoration: none;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                font-size: 15px;
                transition: var(--transition);
                box-shadow: 0 8px 20px rgba(43, 214, 115, 0.3);
            }

            .btn-green-cta:hover {
                background-color: #23b35f;
                transform: translateY(-2px);
                box-shadow: 0 12px 25px rgba(43, 214, 115, 0.4);
            }

            .btn-outline-cta {
                background-color: transparent;
                color: #ffffff;
                padding: 14px 28px;
                border-radius: 30px;
                font-weight: 600;
                text-decoration: none;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                font-size: 15px;
                border: 1px solid rgba(255, 255, 255, 0.2);
                transition: var(--transition);
            }

            .btn-outline-cta:hover {
                background-color: rgba(255, 255, 255, 0.05);
                border-color: rgba(255, 255, 255, 0.5);
                transform: translateY(-2px);
            }

            @media (max-width: 992px) {
                .cta-banner {
                    flex-direction: column;
                    text-align: center;
                    padding: 40px 30px;
                }
                .cta-content h2 {
                    font-size: 28px;
                    max-width: 100%;
                }
                .cta-actions {
                    width: 100%;
                    max-width: 320px;
                }
            } 

            /* Footer Section */

            
            .footer-grid {
                display: grid;
                grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
                gap: 40px;
                max-width: 1300px;
                margin: 0 auto 60px auto;
            }

            .footer-col h3 {
                font-size: 18px;
                font-weight: 700;
                margin-bottom: 25px;
                color: #ffffff;
                letter-spacing: 0.5px;
            }

            .footer-col p {
                font-size: 14px;
                color: #a0aec0;
                line-height: 1.6;
                margin-bottom: 20px;
            }

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

            .footer-col ul li {
                margin-bottom: 12px;
            }

            .footer-col ul li a {
                color: #a0aec0;
                text-decoration: none;
                font-size: 14px;
                transition: var(--transition);
            }

            .footer-col ul li a:hover {
                color: #2bd673;
                padding-left: 4px;
            }

            .footer-socials {
                display: flex;
                gap: 12px;
                margin-top: 20px;
            }

            .footer-socials a {
                width: 36px;
                height: 36px;
                background-color: rgba(255, 255, 255, 0.05);
                border: 1px solid rgba(255, 255, 255, 0.1);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #ffffff;
                text-decoration: none;
                transition: var(--transition);
            }

            .footer-socials a:hover {
                background-color: #2bd673;
                color: #071733;
                border-color: #2bd673;
            }

            .footer-subscribe-form {
                display: flex;
                background: #ffffff;
                border-radius: 30px;
                overflow: hidden;
                padding: 5px;
                max-width: 350px;
                margin-bottom: 20px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            }

            .footer-subscribe-form input {
                flex: 1;
                border: none;
                padding: 10px 15px;
                font-size: 14px;
                outline: none;
                color: #333;
            }

            .footer-subscribe-form button {
                background-color: #2bd673;
                color: #fff;
                border: none;
                padding: 10px 20px;
                border-radius: 25px;
                font-weight: 700;
                font-size: 13px;
                cursor: pointer;
                transition: var(--transition);
            }

            .footer-subscribe-form button:hover {
                background-color: #23b35f;
            }

            .footer-contact-info {
                font-size: 14px;
                color: #a0aec0;
                line-height: 1.8;
            }

            .footer-contact-info strong {
                color: #ffffff;
            }

            /* Bottom Copyright Bar */
            .footer-bottom {
                max-width: 1300px;
                margin: 0 auto;
                padding-top: 30px;
                border-top: 1px solid rgba(255, 255, 255, 0.08);
                display: flex;
                justify-content: space-between;
                align-items: center;
                font-size: 13px;
                color: #a0aec0;
            }

            .footer-bottom a {
                color: #ffffff;
                text-decoration: none;
            }

            @media (max-width: 1024px) {
                .footer-grid {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 40px;
                }
            }

            @media (max-width: 768px) {
                .footer-grid {
                    grid-template-columns: 1fr;
                }
                .footer-bottom {
                    flex-direction: column;
                    gap: 15px;
                    text-align: center;
                }
            } 

            
        /* Cards Grid Layout */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            width: 100%;
        }

        /* Individual Card Style */
        .card {
            background-color: #012254;
            border-radius: 12px;
            padding: 30px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            box-shadow: 0 10px 25px rgba(10, 34, 64, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(10, 34, 64, 0.25);
        }

        /* White Icon Circle Container */
        .icon-circle {
            width: 75px;
            height: 75px;
            background-color: #ffffff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 25px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        }

        .icon-circle svg {
            width: 36px;
            height: 36px;
            fill: #22c55e;
        }

        /* Card Text Content */
        .card h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .card p {
            font-size: 0.85rem;
            color: #d1d5db;
            line-height: 1.5;
        }

        /* Responsive Breakpoints */
        @media (max-width: 1200px) {
            .cards-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .cards-grid {
                grid-template-columns: repeat(1, 1fr);
                max-width: 400px;
                margin: 0 auto;
            }

            .section-header h2 {
                font-size: 1.7rem;
            }
        }




        /* Section Styling */
.logo-slider-section {
  padding: 60px 20px;
  background-color: #f9fafb;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

.logo-slider-section h2 {
  font-size: 1.5rem;
  color: #374151;
  margin-bottom: 40px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Slider Container */
.logo-slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 20px auto; /* Adds spacing between the two rows */
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 15%,
    rgba(0, 0, 0, 1) 85%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 15%,
    rgba(0, 0, 0, 1) 85%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* Moving Tracks */
.logo-track {
  display: flex;
  width: max-content;
}

/* Row 1 Animation (Left) */
.logo-track.scroll-left {
  animation: scrollLeft 25s linear infinite;
}

/* Row 2 Animation (Right) */
.logo-track.scroll-right {
  animation: scrollRight 25s linear infinite;
}

/* Pause animation on individual slider hover */
.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

/* Individual Logo Item */
.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  min-width: 150px;
}

.logo-item img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease-in-out;
}

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

/* Keyframes for Left and Right Motion */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo-slider-section {
    padding: 40px 15px;
  }
  .logo-item {
    padding: 0 25px;
  }
}


/* TESTIMONIALS */
.testimonials-section {
            max-width: 1280px;
            margin: 0 auto;
            text-align: center;
            padding-bottom: 50px;
        }

        /* Section Header */
        .section-subtitle {
            color: #5ADC5A;
            font-size: 28px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }

     

        .section-description {
            max-width: 600px;
            margin: 0 auto 50px auto;
            color: #4b5563;
            font-size: 14px;
            line-height: 1.5;
        }

        /* Carousel Wrapper with Relative Positioning for Side Arrows */
        .carousel-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        /* Testimonials Scroll Track */
        .testimonials-track {
            display: grid;
            grid-auto-flow: column;
            grid-auto-columns: calc((100% - 48px) / 3); /* Exactly 3 cards visible with 24px gaps */
            gap: 24px;
            width: 100%;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 10px;
        }

        /* Hide scrollbars */
        .testimonials-track::-webkit-scrollbar {
            display: none;
        }
        .testimonials-track {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        /* Testimonial Card Styling */
        .testimonial-card {
            background-color: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 36px 30px;
            text-align: left;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
            scroll-snap-align: start;
            min-height: 360px;
        }

        /* Card Top: Quote Icon & Rating */
        .card-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 24px;
        }

        .quote-icon {
            color: #20bafd5c;
            font-size: 36px;
            line-height: 1;
        }

        .rating {
            color: #f59e0b;
            font-size: 14px;
            display: flex;
            gap: 3px;
        }

        /* Testimonial Quote Body */
        .card-body {
            font-size: 15px;
            color: #1f2937;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        /* Author Profile Footer */
        .card-footer {
            display: flex;
            align-items: center;
            gap: 14px;
            border-top: 1px solid #f1f5f9;
            padding-top: 20px;
        }

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

        .author-info {
            display: flex;
            flex-direction: column;
        }

        .author-name {
            font-size: 14px;
            font-weight: 700;
            color: #0b1f3a;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

        .author-title {
            font-size: 13px;
            color: #6b7280;
            margin-top: 2px;
        }

        /* Carousel Navigation Controls (Side Arrows) */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background-color: #ffffff;
            border: 1px solid #e2e8f0;
            color: #5ADC5A;
            font-size: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            transition: all 0.2s;
            z-index: 10;
        }

        .carousel-btn:hover {
            background-color: #5ADC5A;
            color: #ffffff;
            border-color: #5ADC5A;
        }

        .carousel-btn.prev {
            left: -22px;
        }

        .carousel-btn.next {
            right: -22px;
            background-color: #5ADC5A;
            color: #ffffff;
            border-color: #5ADC5A;
        }
        
        .carousel-btn.next:hover {
            background-color: #5ADC5A;
        }

        /* Bottom Pagination Indicator Pills */
        .carousel-indicators {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 36px;
        }

        .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #cbd5e1;
            cursor: pointer;
            transition: all 0.3s;
        }

        .indicator.active {
            background-color: #5ADC5A;
            width: 32px;
            border-radius: 6px;
        }

        /* --- Responsive Breakpoints --- */
        @media (max-width: 1024px) {
            .testimonials-track {
                grid-auto-columns: calc((100% - 24px) / 2); /* 2 cards on tablets */
            }
            .carousel-btn {
                display: none; 
            }
        }

        @media (max-width: 640px) {
            .testimonials-track {
                grid-auto-columns: 100%; /* 1 card on mobiles */
            }
            .section-subtitle {
                font-size: 22px;
            }
            .section-title {
                font-size: 26px;
            }
            .testimonial-card {
                padding: 24px 20px;
            }
        }

        /* Section Base */
.mts-different-section {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1e293b;
  text-align: center;
}

.mts-different-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Typography */
.mts-different-header {
  margin-bottom: 50px;
}

.mts-different-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.25;
}

.mts-different-subtitle {
  font-size: 1.05rem;
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Main Unified Container Box */
.mts-different-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Individual Columns */
.mts-different-col {
  padding: 60px 35px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Gradient / Shade Variations */
.mts-different-col-1 {
  background-color: #0d235c;
}

.mts-different-col-2 {
  background-color: #17409c;
}

.mts-different-col-3 {
  background-color: #3b6cd4;
}

/* Icon Styles */
.mts-different-icon {
  width: 75px;
  height: 75px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mts-different-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Text Content */
.mts-different-text {
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 968px) {
  .mts-different-box {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }
  
  .mts-different-title {
    font-size: 1.75rem;
  }
  
  .mts-different-col {
    padding: 40px 25px;
  }
}

/* Section Base */
.mts-moves-section {
  padding: 30px 20px;
  background-color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1e293b;
  text-align: center;
}

.mts-moves-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Typography */
.mts-moves-header {
  margin-bottom: 60px;
}

.mts-moves-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  line-height: 1.25;
}

.mts-moves-subtitle {
  font-size: 1.05rem;
  color: #475569;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}

/* 2x2 Grid Layout */
.mts-moves-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  text-align: left;
}
.mts-moves-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: left;
}
.mts-moves-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: left;
}

/* Card Component */
.mts-moves-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 45px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mts-moves-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
}

/* Icon Sub-element with soft circle background */
.mts-moves-icon {
  width: 70px;
  height: 70px;
  background-color: #f0fdf4; /* Light greenish background as shown in design */
  border-radius: 50%;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mts-moves-icon img {
  max-width: 35px;
  max-height: 35px;
  object-fit: contain;
}

/* Typography Sub-elements */
.mts-moves-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 14px;
  line-height: 1.4;
}

.mts-moves-card-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
  .mts-moves-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .mts-moves-title {
    font-size: 1.75rem;
  }
  
  .mts-moves-card {
    padding: 35px 25px;
  }
}

/* Section Base */
.mts-scale-section {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1e293b;
  text-align: center;
}

.mts-scale-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Typography */
.mts-scale-header {
  margin-bottom: 60px;
}

.mts-scale-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  line-height: 1.25;
}

.mts-scale-subtitle {
  font-size: 1.05rem;
  color: #475569;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}

/* 2x2 Grid Layout */
.mts-scale-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  text-align: left;
}
.mts-scale-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: left;
}
.mts-scale-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: left;
}
 

/* Card Component */
.mts-scale-card {
  background: #f4f8fb; /* Light background tint matching design */
  border-radius: 16px;
  padding: 40px 35px;
  position: relative;
  overflow: hidden;
  border-left: 6px solid #22c55e; /* Vibrant green vertical accent bar */
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mts-scale-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

/* Typography Sub-elements */
.mts-scale-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 14px;
  line-height: 1.4;
}

.mts-scale-card-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
  .mts-scale-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .mts-scale-title {
    font-size: 1.75rem;
  }
  
  .mts-scale-card {
    padding: 30px 25px;
  }
}

/* Section Base */
.mts-compliance-section {
  padding: 80px 20px;
  background-color: #f8fafc; /* Subtle light background tint matching typical design style */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1e293b;
  text-align: center;
}

.mts-compliance-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Typography */
.mts-compliance-header {
  margin-bottom: 60px;
}

.mts-compliance-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  line-height: 1.25;
}

.mts-compliance-subtitle {
  font-size: 1.05rem;
  color: #475569;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}

/* 3-Column Grid Layout */
.mts-compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: left;
}

/* Card Component */
.mts-compliance-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mts-compliance-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

/* Green Icon Badge Sub-element */
.mts-compliance-icon {
  width: 65px;
  height: 65px;
  background-color: #22c55e; /* Vibrant green matching the design badges */
  color:#fff;
  border-radius: 14px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mts-compliance-icon img {
  max-width: 32px;
  max-height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Makes placeholder/icon white to match design */
}

/* Typography Sub-elements */
.mts-compliance-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 14px;
  line-height: 1.4;
}

.mts-compliance-card-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
  .mts-compliance-grid {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin: 0 auto;
  }
  
  .mts-compliance-title {
    font-size: 1.75rem;
  }
  
  .mts-compliance-card {
    padding: 35px 25px;
  }
}
/* Section Base */
.mts-extend-section {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1e293b;
  text-align: center;
}

.mts-extend-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Typography */
.mts-extend-header {
  margin-bottom: 60px;
}

.mts-extend-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  line-height: 1.25;
}

.mts-extend-subtitle {
  font-size: 1.05rem;
  color: #475569;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}

/* 3-Column Grid Layout */
.mts-extend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

/* Card Component */
.mts-extend-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mts-extend-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

/* Dark Blue Circle Icon Sub-element */
.mts-extend-icon {
  width: 90px;
  height: 90px;
  background-color: #0a1f44; /* Dark blue background matching design icons */
  border-radius: 50%;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mts-extend-icon img {
  max-width: 45px;
  max-height: 45px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Makes placeholder/icon white to stand out against dark blue */
}

/* Typography Sub-elements */
.mts-extend-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 14px;
  line-height: 1.4;
}

.mts-extend-card-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
  .mts-extend-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .mts-extend-title {
    font-size: 1.75rem;
  }
  
  .mts-extend-card {
    padding: 35px 25px;
  }
}

/* Section Base */
.mts-support-section {
  padding: 80px 20px;
  background-color: #0b1d48; /* Deep dark blue background matching design */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #ffffff;
  text-align: center;
}

.mts-support-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Typography */
.mts-support-header {
  margin-bottom: 60px;
}

.mts-support-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.25;
}

.mts-support-subtitle {
  font-size: 1.05rem;
  color: #94a3b8; /* Soft muted light blue-grey */
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}

/* 3-Column Grid Layout */
.mts-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

/* Card Component */
.mts-support-card {
  background: #ffffff;
  color: #1e293b;
  border-radius: 16px;
  padding: 35px 30px;
  display: flex;
  align-items: center;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mts-support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Stat Box (Left Side of Card) */
.mts-support-stat-box {
  display: flex;
  flex-direction: column;
  min-width: 110px;
}

.mts-support-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 4px;
}

.mts-support-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
}

/* Vertical Divider */
.mts-support-divider {
  width: 1px;
  background-color: #cbd5e1;
  height: 50px;
  margin: 0 20px;
}

/* Card Text Description (Right Side of Card) */
.mts-support-text {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
  .mts-support-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .mts-support-title {
    font-size: 1.75rem;
  }
  
  .mts-support-card {
    padding: 30px 25px;
  }
}


.alert-container {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            box-sizing: border-box;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

        .alert-box {
            background-color: #f0f7ff;
            border: 1.5px solid #93c5fd;
            border-radius: 12px;
            padding: 24px 32px;
            max-width: 1000px;
            width: 100%;
            text-align: center;
            color: #1e3a8a;
            font-size: 16px;
            line-height: 1.6;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
        }

        /* Responsive typography and spacing for smaller screens */
        @media (max-width: 768px) {
            .alert-box {
                padding: 18px 20px;
                font-size: 14px;
            }
        }

        /* Section Base */
.mts-assist-section {
  background-color: #f8fafc;
  padding: 20px 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1e293b;
}

/* Container Layout */
.mts-assist-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Content Styles */
.mts-assist-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mts-assist-badge {
  background-color: #e0f2fe;
  color: #0369a1;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.mts-assist-heading {
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

.mts-assist-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 30px;
}

.mts-assist-description strong {
  color: #0f172a;
}

/* Button */
.mts-assist-btn {
  display: inline-block;
  background-color: #021c56;
  color: #ffffff;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.mts-assist-btn:hover {
  background-color: #1e293b;
  transform: translateY(-2px);
}

/* Features Grid & Cards */
.mts-assist-features-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mts-assist-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  border: 1px solid #e2e8f0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mts-assist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
}

.mts-assist-card-icon {
  background-color: #f1f5f9;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  margin-bottom: 16px;
}

.mts-assist-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.mts-assist-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
  .mts-assist-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}


/* Team Page Wrapper & Layout */
.team-page-section {
  background-color: #f8fafc;
  padding: 80px 20px;
}

.team-page-container {
  max-width: 1200px;
  margin: 0 auto;
}

.team-page-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.team-page-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0b1c3c;
  margin-bottom: 20px;
}

.team-page-intro-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 0;
}

/* Category Headers */
.team-category-header {
  text-align: center;
  margin-bottom: 40px;
}

.team-category-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0b1c3c;
}

/* Cards Grid */
.team-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

/* Individual Team Card */
.team-member-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

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

/* Avatar Box */
.team-member-avatar-box {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  
  background-color: #f1f5f9;
  flex-shrink: 0;
}

.team-member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Typography Inside Card */
.team-member-fullname {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0b1c3c;
  margin-bottom: 6px;
}

.team-member-position {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color, #2563eb);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-member-details {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

/* Shared Client Goals Section Styles */
.team-goals-wrapper-section {
  padding: 60px 20px;
}

.team-goals-header-box {
  text-align: center;
  margin-bottom: 30px;
}

.team-goals-main-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #0b1c3c;
  margin-bottom: 0;
}

.team-goals-main-desc {
  color: #64748b;
  font-size: 1rem;
  margin-top: 10px;
  line-height: 1.6;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.team-goals-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.team-goal-item-box {
  background: #f8fafc;
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.team-goal-item-box:hover {
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.team-goal-icon-holder {
  margin-bottom: 15px;
}

.team-goal-icon-holder i {
  font-size: 28px;
  color: var(--primary-color, #2563eb);
}

.team-goal-item-title {
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: #0b1c3c;
  font-weight: 700;
}

.team-goal-item-desc {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}



 /* Reusable Modular Styles (Prevents CSS Repetition) */
        .why-section {
            padding: 80px 5%;
            position: relative;
        }

        .why-section-alt {
            background-color: var(--secondary-bg);
        }

        .why-section-light {
            background-color: #ffffff;
            color: var(--text-dark);
        }

        .why-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px auto;
        }

        .why-header h2 {
            font-size: 38px;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .why-header p {
            font-size: 16px;
            line-height: 1.6;
            color: var(--text-muted);
        }

        .btn {
            background-color: var(--accent-green);
            color: #fff;
            padding: 12px 28px;
            border-radius: 25px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 15px;
        }

        .why-btn:hover {
            background-color: var(--accent-green-hover);
            transform: translateY(-2px);
        }

        /* Hero Specifics */
        .why-hero {
           background: url(../images/why.png);
            text-align: center;
            padding: 100px 5%;
        }

        .why-hero h1 {
            font-size: 46px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            color:#fff;
        }

        .why-hero h1 span {
            color: #1fbafd;
        }

        .why-hero p {
            font-size: 18px;
            color: var(--text-muted);
            max-width: 850px;
            margin: 0 auto 30px auto;
            line-height: 1.7;
        }

        /* Grid Layouts */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .why-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 20px;
            padding: 40px 30px;
            color: var(--text-dark);
            box-shadow: 0 10px 30px rgba(0,0,0,0.04);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .why-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            border-color: #cbd5e1;
        }

        .why-card-icon {
            width: 60px;
            height: 60px;
            background-color: #2bd673;
            color: #fff;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 22px;
        }

        .why-card h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--primary-bg);
            line-height: 1.3;
        }

        .why-card p {
            font-size: 14.5px;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
        }

        /* Support Feature Highlights Section */
        .why-split-container {
            max-width: 1200px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
           
            backdrop-filter: blur(10px);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .why-split-content h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #ffffff;
            line-height: 1.3;
        }

        .why-split-content p {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .why-split-content p:last-child {
            margin-bottom: 0;
        }

        /* CTA Banner */
        .why-cta-box {
            max-width: 1200px;
            margin: 0 auto;
            background: linear-gradient(135deg, #071733 0%, #0a2558 100%);
            border-radius: 24px;
            padding: 60px 40px;
            text-align: center;
            box-shadow: 0 20px 40px rgba(7, 23, 51, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .why-cta-box h2 {
            font-size: 32px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .why-cta-box p {
            font-size: 16px;
            color: var(--text-muted);
            max-width: 800px;
            margin: 0 auto 30px auto;
            line-height: 1.6;
        }

        @media (max-width: 992px) {
            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .why-split-container {
                grid-template-columns: 1fr;
                padding: 30px;
            }
        }

        @media (max-width: 768px) {
            .why-grid {
                grid-template-columns: 1fr;
            }
            .why-hero h1 {
                font-size: 36px;
            }
        }


        /* Support Section Styling */
.support-partner-section {
    padding: 90px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.support-partner-section .why-container {
    max-width: 1140px;
    margin: 0 auto;
}

.support-partner-section .why-header {
    text-align: center;
    margin-bottom: 50px;
}

.support-partner-section .support-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-color, #2563eb);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.support-partner-section .badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-color, #2563eb);
    border-radius: 50%;
}

.support-partner-section .why-header h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-main, #0b1c3c);
    letter-spacing: -0.5px;
}

/* Split Grid Container */
.support-partner-section .why-split-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
        align-items: start;
}

/* Feature Cards */
.support-partner-section .support-feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color, #e2e8f0);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.support-partner-section .support-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(37, 99, 235, 0.3);
}

/* Icon Box Style */
.support-partner-section .support-icon-box {
    width: 55px;
    height: 55px;
    background-color: #2bd673;
    color:#fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.support-partner-section .support-icon-box i {
    font-size: 24px;
     
}

/* Card Content Typography */
.support-partner-section .why-split-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main, #0b1c3c);
    margin-bottom: 15px;
    line-height: 1.3;
}

.support-partner-section .why-split-content p {
    font-size: 0.95rem;
    color: var(--text-muted, #64748b);
    line-height: 1.6;
    margin-bottom: 15px;
}

.support-partner-section .why-split-content p:last-child {
    margin-bottom: 0;
}



        /* About Page Unique Light Layout Styles */
        
        /* Hero Specifics */
        .about-hero {
           background: url(../images/about.png);
            text-align: center;
            padding: 100px 5%;
                background-position: bottom;
    background-size: cover;
        }

        .about-hero h1 {
            font-size: 46px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            color:#fff;
        }

        .about-hero h1 span {
            color: #1fbafd;
        }

        .about-hero p {
            font-size: 18px;
            color: var(--text-muted);
            max-width: 850px;
            margin: 0 auto 30px auto;
            line-height: 1.7;
        }

        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            max-width: 1300px;
            margin: 0 auto;
        }

        .stat-box {
            background: #ffffff;
            color: var(--text-dark);
            border-radius: 16px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.04);
            border: 1px solid var(--card-border);
            transition: var(--transition);
        }

        .stat-box:hover {
            transform: translateY(-5px);
            border-color: #cbd5e1;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
        }

        .stat-box h3 {
            font-size: 32px;
            font-weight: 800;
            color: #0a2558;
            margin-bottom: 10px;
        }

        .stat-box p {
            font-size: 13px;
            
            line-height: 1.5;
            margin: 0;
        }

        /* Content Blocks & Story */
        .story-container {
            max-width: 1000px;
            margin: 0 auto;
            background: #ffffff;
            border: 1px solid var(--card-border);
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        }

        .story-container p {
            font-size: 16px;
            
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .story-container p:last-child {
            margin-bottom: 0;
        }

        /* Service Cards Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            max-width: 1300px;
            margin: 0 auto;
        }

        .service-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 30px 25px;
            color: var(--text-dark);
            border: 1px solid var(--card-border);
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .service-card:hover {
            transform: translateY(-5px);
            background-color: #ffffff;
            border-color: #94a3b8;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
        }

        .service-icon {
            width: 50px;
            height: 50px;
            background-color: #22c55e;
            color: #ffffff;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #0a2558;
            line-height: 1.3;
        }

        .service-card p {
            font-size: 13.5px;
            text-align: center;
            line-height: 1.6;
            margin: 0;
        }

        /* Values Grid */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .value-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 40px 30px;
            color: var(--text-dark);
            border: 1px solid var(--card-border);
            box-shadow: 0 15px 35px rgba(0,0,0,0.04);
            text-align: center;
            transition: var(--transition);
            align-items: center;
        }

        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }

        .value-icon {
            width: 70px;
            height: 70px;
            background-color: #e6f9ed;
            color: #2bd673;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin: 0 auto 25px auto;
        }

        .value-card h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #0a2558;
        }

        .value-card p {
            font-size: 14.5px;
            
            line-height: 1.7;
            margin: 0;
        }

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

        @media (max-width: 992px) {
            .values-grid {
                grid-template-columns: 1fr;
            }
            .about-hero h1 {
                font-size: 36px;
            }
        }

        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .services-grid {
                grid-template-columns: 1fr;
            }
            .story-container {
                padding: 25px;
            }
        }
/* "Our Approach & Mission" Section Styling */
.approach-mission-section {
    background-color: #ffffff;
    padding: 90px 20px;
    position: relative;
}

.approach-mission-container {
    max-width: 1140px;
    margin: 0 auto;
}

.approach-mission-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.approach-mission-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-color, #2563eb);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.approach-mission-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-color, #2563eb);
    border-radius: 50%;
}

.approach-mission-main-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-main, #0b1c3c);
    letter-spacing: -0.5px;
    margin-bottom: 15px;
}

.approach-mission-main-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted, #64748b);
    line-height: 1.6;
}

/* Two-Column Layout Grid */
.approach-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

/* Card Style */
.approach-mission-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 40px 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color, #e2e8f0);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.approach-mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(37, 99, 235, 0.3);
    background: #ffffff;
}

/* Icon Box Style */
.approach-mission-icon-box {
    width: 55px;
    height: 55px;
    background-color: rgba(37, 99, 235, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.approach-mission-icon-box i {
    font-size: 24px;
    color: var(--primary-color, #2563eb);
}

/* Card Content Typography */
.approach-mission-card-title {
    color: var(--text-main, #0b1c3c);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}

.approach-mission-card-text {
    font-size: 0.98rem;
     
    line-height: 1.7;
    margin-bottom: 15px;
}

.approach-mission-card-text:last-child {
    margin-bottom: 0;
}

/* Responsive Media Query */
@media (max-width: 768px) {
    .approach-mission-grid {
        grid-template-columns: 1fr;
    }
}

        /* "Why We Started" Section Styling */
.story-section {
    background: #f8fafc;
    padding: 90px 20px;
}

.story-wrapper {
    max-width: 1140px;
    margin: 0 auto;
}

.story-header-box {
    text-align: center;
    margin-bottom: 50px;
}

.story-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-color, #2563eb);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.story-badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-color, #2563eb);
    border-radius: 50%;
}

.story-main-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-main, #0b1c3c);
    letter-spacing: -0.5px;
        padding-bottom: 20px;
}

/* Two-Column Grid Layout */
.story-grid-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-content-box p {
    font-size: 0.98rem;
   
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-content-box p:last-child {
    margin-bottom: 0;
}

.story-lead-text {
    font-size: 1.05rem !important;
    font-weight: 500;
    color: var(--text-main, #0b1c3c) !important;
}

/* Image Showcase & Floating Badge */
.story-image-box {
    position: relative;
    display: flex;
    justify-content: center;
}

.story-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color, #e2e8f0);
}

.story-visual {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.story-image-wrapper:hover .story-visual {
    transform: scale(1.03);
}

/* Floating Experience Badge Card */
.story-image-badge-card {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.story-image-badge-card i {
    font-size: 28px;
    color: var(--primary-color, #2563eb);
}

.story-image-badge-card strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-main, #0b1c3c);
    font-weight: 700;
    line-height: 1.1;
}

.story-image-badge-card span {
    font-size: 0.8rem;
    color: var(--text-muted, #64748b);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Responsive Media Queries */
@media (max-width: 900px) {
    .story-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* "Get Support Beyond the Software" Section Styling */
.support-beyond-section {
    background-color: #f8fafc;
    padding: 90px 20px;
    position: relative;
}

.support-beyond-container {
    max-width: 1140px;
    margin: 0 auto;
}

.support-beyond-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.support-beyond-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-color, #2563eb);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.support-beyond-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-color, #2563eb);
    border-radius: 50%;
}

.support-beyond-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-main, #0b1c3c);
    letter-spacing: -0.5px;
    margin-bottom: 15px;
}

.support-beyond-subtitle {
    font-size: 1.05rem;
     
    line-height: 1.6;
}

/* Two-Column Grid (Image Left, Content Right) */
.support-beyond-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.support-beyond-content-box p {
    font-size: 0.98rem;
    
    line-height: 1.7;
    margin-bottom: 15px;
}

.support-beyond-lead {
    font-size: 1.05rem !important;
    font-weight: 500;
    color: var(--text-main, #0b1c3c) !important;
}

.support-beyond-list-heading {
    color: var(--text-main, #0b1c3c);
    margin: 25px 0 15px 0;
    font-size: 1.15rem;
    font-weight: 700;
}

/* Styled List with Icons */
.support-beyond-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px 20px;
    margin-bottom: 25px;
}

.support-beyond-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-main, #0b1c3c);
    font-weight: 500;
}

.support-beyond-list li i {
    color: var(--primary-color, #2563eb);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.support-beyond-footer-text {
    margin-top: 20px;
}

/* Image & Floating Badge */
.support-beyond-image-box {
    position: relative;
    display: flex;
    justify-content: center;
}

.support-beyond-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color, #e2e8f0);
}

.support-beyond-visual {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.support-beyond-image-wrapper:hover .support-beyond-visual {
    transform: scale(1.03);
}

.support-beyond-floating-card {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.support-beyond-floating-card i {
    font-size: 28px;
    color: var(--primary-color, #2563eb);
}

.support-beyond-floating-card strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-main, #0b1c3c);
    font-weight: 700;
    line-height: 1.1;
}

.support-beyond-floating-card span {
    font-size: 0.8rem;
    color: var(--text-muted, #64748b);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Responsive Media Query */
@media (max-width: 992px) {
    .support-beyond-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


/* Transaction Workflow & Ecosystem Section Styling */
.transaction-workflow-section {
    background-color: #f8fafc;
    padding: 90px 20px;
    position: relative;
}

.transaction-workflow-container {
    max-width: 1140px;
    margin: 0 auto;
}

.transaction-workflow-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px auto;
}

.transaction-workflow-badge,
.additional-services-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-color, #2563eb);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.transaction-workflow-dot,
.additional-badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-color, #2563eb);
    border-radius: 50%;
}

.transaction-workflow-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-main, #0b1c3c);
    letter-spacing: -0.5px;
    margin-bottom: 15px;
}

.transaction-workflow-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted, #64748b);
    line-height: 1.6;
}

/* Steps Intro */
.transaction-steps-intro {
    text-align: center;
    margin-bottom: 35px;
}

.transaction-steps-intro h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main, #0b1c3c);
    margin-bottom: 8px;
}

.transaction-steps-intro p {
    font-size: 0.98rem;
    color: var(--text-muted, #64748b);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Steps Grid */
.transaction-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 80px;
}

.transaction-step-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color, #e2e8f0);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.transaction-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(37, 99, 235, 0.3);
}

.transaction-step-number {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(37, 99, 235, 0.12);
}

.transaction-step-icon {
    width: 50px;
    height: 50px;
    background-color: #22c55e;
    color:#fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

 
.transaction-step-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main, #0b1c3c);
    margin-bottom: 12px;
}

.transaction-step-card p {
    font-size: 0.92rem;
    color: var(--text-muted, #64748b);
    line-height: 1.6;
    margin: 0;
}

/* Additional Services Grid */
.additional-services-wrapper {
    margin-top: 60px;
    border-top: 1px solid var(--border-color, #e2e8f0);
    padding-top: 60px;
}

.additional-services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.additional-services-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main, #0b1c3c);
    margin-bottom: 12px;
}

.additional-services-header p {
    font-size: 1rem;
    color: var(--text-muted, #64748b);
    line-height: 1.6;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.additional-service-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color, #e2e8f0);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.additional-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(37, 99, 235, 0.3);
}

.additional-service-card-wide {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 25px;
}

.additional-service-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(37, 99, 235, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.additional-service-card-wide .additional-service-icon {
    margin-bottom: 0;
}

.additional-service-icon i {
    font-size: 22px;
    color: var(--primary-color, #2563eb);
}

.additional-service-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main, #0b1c3c);
    margin-bottom: 10px;
}

.additional-service-card p {
    font-size: 0.95rem;
    color: var(--text-muted, #64748b);
    line-height: 1.6;
    margin: 0;
}

.transaction-cta-section {
    background-color: #ffffff;
    padding: 60px 5%;
}

@media (max-width: 768px) {
    .additional-service-card-wide {
        flex-direction: column;
        align-items: flex-start;
    }
    .additional-service-card-wide .additional-service-icon {
        margin-bottom: 20px;
    }
}
 /* Hero Specifics */
        .hiw-hero {
           background: url(../images/hiw.png);
            text-align: center;
            padding: 100px 5%;
                background-position: bottom;
    background-size: cover;
        }

        .hiw-hero h1 {
            font-size: 46px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            color:#fff;
        }

        .hiw-hero h1 span {
            color: #1fbafd;
        }

        .hiw-hero p {
            font-size: 18px;
            color: var(--text-muted);
            max-width: 850px;
            margin: 0 auto 30px auto;
            line-height: 1.7;
        }


/* Contact Section Wrapper */
.contact-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* Header Styling */
.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
}

.contact-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

/* Info Card (Left Column) */
.contact-info-card {
    background: #021c56;
    color: #ffffff;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.info-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.info-list {
    list-style: none;
    margin-bottom: 40px;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.info-list li i {
    font-size: 1.2rem;
    color: #fff;
    margin-top: 4px;
}

.info-list strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94a3b8;
    margin-bottom: 4px;
}

.info-list span {
    font-size: 1rem;
    color: #f8fafc;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
}

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

/* Form Card (Right Column) */
.contact-form-card {
    padding: 50px 40px;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-main);
    background-color: #f8fafc;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.submit-btn {
    background-color: #22c55e; /* Bright green pill button from image */
  color: #ffffff !important;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
  transition: background-color 0.2s ease, transform 0.2s ease;
  border: none;
}

.submit-btn:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

/* Responsive Media Queries */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .form-group-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info-card, 
    .contact-form-card {
        padding: 30px 20px;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
}
