  :root {
    --color-navy: #1a2744;
    --color-navy-light: #2a3e5f;
    --color-navy-dark: #0f1829;
    --color-sky: #3b82f6;
    --color-sky-light: #dbeafe;
    --color-background: #faf9f7;
    --color-background-alt: #f5f3f0;
    --color-text: #1a2744;
    --color-text-muted: #64748b;
    --color-border: #e5e1dc;
    --font-display: "Sora", sans-serif;

  }

  /* Base Styles */
  * {
    box-sizing: border-box;

  }

  body {
    font-family: var(--font-display);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.7;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 0px;
    margin: 0px;
    overflow-x: hidden;

  }



  .text-italic {
    font-style: italic;
  }

  /* top banner css */
  #announcement-banner {
    background: linear-gradient(135deg, #1a2847 0%, #253a5e 100%);
    color: white;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 15px;
    transition: all 0.3s ease;
  }

  #announcement-banner.hidden {
    display: none;
  }

  .banner-content {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .lightning-icon {
    font-size: 18px;
    font-weight: bold;
  }

  .banner-text {
    font-weight: 400;
  }

  .banner-text strong {
    font-weight: 600;
  }

  .close-button {
    position: absolute;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s;
  }

  .close-button:hover {
    opacity: 1;
  }

  /* navbar css */
  /* Hamburger Icon */
  .btn {
    display: block;
    overflow: hidden;
    transform: perspective(0) translateZ(0);
    background: linear-gradient(135deg, hsl(220 55% 28%), hsl(220 60% 18%));
    box-shadow: 0 4px 14px hsl(220deg 55% 22% / 25%);
    border: 1px solid rgb(29, 18, 90);
    color: #ffffff;
    border-radius: 10px;
    font-size: 16px;
    line-height: 40px;
    padding: 0px 26px;
    border: 0;
    border-style: solid;
    box-shadow: none;
    transition: all 0.5s ease 0s;
    cursor: pointer;
    z-index: 1;
    position: relative;
  }


  .navbar-custom {
    background-color: #fbfaf9f2;
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }

  .logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }

  .logo-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0b1f3b;
  }

  .navbar-nav {
    gap: 1rem;
  }

  .navbar-header-custom {
    display: flex;
    justify-content: space-between;
    gap: 25rem;
  }

  @media (min-width:300px) and (max-width:500px) {
    .navbar-header-custom {
      display: flex;
      justify-content: space-between;
      gap: 0px !important;

    }

    @media(min-width:500px) and(max-width:800px) {
      .navbar-header-custom {
        display: flex;
        justify-content: space-between;
        gap: 15rem;
      }
    }
  }

  .navbar-toggler {
    margin-left: auto;
  }

  .nav-link-custom {
    color: #6b7280 !important;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.2rem 0.5rem;
    transition: color 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
  }

  .nav-link-custom:hover {
    color: #1e3a5f !important;
    background-color: hsl(225deg 60% 25% / 10%);
    border-radius: 5px;
  }


  .navbar-button {
    background-color: #1e3a5f;
    color: white;
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
  }


  .navbar-button:hover {
    background-color: #152d47;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
  }

  .navbar-toggler {
    border: none;
    padding: 0.5rem;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2830, 58, 95, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  @media (max-width: 991px) {
    .navbar-nav {
      gap: 0;
      margin-top: 1rem;
    }

    .nav-link-custom {
      padding: 0.75rem 0 !important;
    }

    .navbar-button {
      margin-top: 1rem;
      width: 100%;
      text-align: center;
    }

    .navbar-custom {
      padding: 1rem 1.5rem;
    }
  }

  @media (max-width: 576px) {
    .logo-text {
      font-size: 1.25rem;
    }

    .logo-icon {
      width: 35px;
      height: 35px;
    }

    .navbar-custom {
      padding: 0.75rem 1rem;
    }
  }

  /* Hero Section */
  .highlight-text {
    color: hsl(225 60% 25%);
  }

  .hero-section {
    padding: 5rem 0 3rem;
    background-color: var(--color-background);
  }

  .hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }

  .text-primary {
    color: var(--color-sky) !important;
  }

  .hero-description {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
  }

  @media (min-width: 992px) {
    .hero-description {
      margin: 0;
    }
  }

  .hero-btn {

    background: hsl(225deg 60% 25% / 90%);
    transition: all .3s ease;
    color: hsl(0 0% 100%);
    border-width: none;
    border-radius: 10px;
    font-weight: 550;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 14px hsl(220deg 55% 22% / 25%);
  }

  .hero-form {
    max-width: 600px;
  }

  .form-wrapper {
    display: flex;
    gap: 12px;
    align-items: stretch;
  }

  .email-input {
    flex: 1;
    padding: 12px 22px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    color: #374151;
    transition: all 0.3s ease;
    background: transparent;
  }

  .email-input:focus {
    outline: none;
    border-color: #1e3a5f;
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
  }

  .email-input::placeholder {
    color: #9ca3af;
  }

  @media (max-width: 992px) {

    .form-wrapper {
      flex-direction: column;
    }

    .hero-btn {
      width: 100%;
    }
  }

  @media (max-width: 768px) {

    .email-input,
    .hero-btn {
      padding: 14px 18px;
      font-size: 0.95rem;
    }


  }

  /* Enhanced button styling with proper hover effects and SVG arrows */
  .btn-primary {
    background-color: var(--color-navy);
    border-color: var(--color-navy);
    padding: 5px;
    font-weight: 600;
    font-family: var(--font-display);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    white-space: wrap;
  }


  .btn-primary svg {
    transition: transform 0.3s ease;
  }

  .btn-primary:hover {
    background-color: var(--color-navy-light);
    border-color: var(--color-navy-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(26, 39, 68, 0.3);
  }

  .btn-primary:hover svg {
    transform: translateX(4px);
  }

  .btn-primary:active {
    transform: translateY(0);

  }

  .hero-social-proof {
    color: var(--color-text-muted);
    font-size: 1rem;
  }

  .hero-social-proof svg {
    flex-shrink: 0;
  }

  .hero-image-wrapper {
    position: relative;
  }

  .hero-image-wrapper img {
    border: 1px solid rgba(26, 39, 68, 0.1);
    border-radius: 10px;
  }

  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--color-navy);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10;
  }

  .play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
  }

  .play-button svg {
    color: white;
    margin-left: 4px;
  }

  .ping {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: rgba(26, 39, 68, 0.3);
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
  }

  @keyframes ping {

    75%,
    100% {
      transform: scale(2);
      opacity: 0;
    }
  }

  .pulse-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(26, 39, 68, 0.2);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }

  .pulse-ring-2 {
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    border: 1px solid rgba(26, 39, 68, 0.1);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    animation-delay: 0.5s;
  }

  @keyframes pulse {

    0%,
    100% {
      opacity: 1;
    }

    50% {
      opacity: 0.5;
    }
  }

  .tour-button {
    position: absolute;
    bottom: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border: 1px solid var(--color-border);
    padding: 0.75rem 1.25rem;
    white-space: nowrap;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }

  .tour-button:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
  }

  .tour-button svg {
    color: var(--color-navy);
  }

  /* Compounding Section */
  .compounding-section {
    padding: 3rem 0;
    background-color: hsl(30deg 15% 94% / 50%);
  }

  .section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--color-text);
  }

  .section-description {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    line-height: 1.7;
  }

  .section-subdescription {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
  }

  /* Modules Section */
  .modules-section {
    padding: 3rem 0;
    background-color: hsl(30deg 15% 94% / 30%);
  }

  .module-header {
    background-color: var(--color-navy);
    color: white;
    padding: 1rem;
    border-radius: 0.75rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .module-header h3 {
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0;
  }

  .module-card {
    background-color: white;
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    align-items: start;
    gap: 0.75rem;
    transition: all 0.3s ease;
  }

  .module-card:hover {
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
  }

  .module-icon {
    color: #4b5875;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .module-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
  }

  .module-description {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.5;
  }

  /* Dedicated bd resources */

  .bd-resources-section {
    padding: 4rem 0;
    background: hsl(40 25% 96%);
  }

  .section-title {
    font-size: 3rem;
    font-weight: 750;
    color: #1a2847;
    text-align: center;
    margin-bottom: 1rem;

  }

  .title {
    font-size: 2.75rem;
    font-weight: 750;
    color: #1a2847;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 2.5rem;
  }

  .section-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    color: #2d3748;
    text-align: center;
    margin-bottom: 1rem;
  }

  .section-description {
    color: #6b7280;
    text-align: center;
    margin: 0 auto 3rem;
    line-height: 1.6;
    font-size: 1.125rem;

  }

  .section-description span {
    color: hsl(225 60% 18%);
    font-weight: 600;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .service-card {
    background: white;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
  }

  .service-card:hover {
    border-color: #1c273a;
    box-shadow: 0 4px 12px rgba(28, 39, 58, 0.1);
  }

  .service-card.active {
    border-color: #1c273a;
    background-color: white;
  }

  .service-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;

  }

  .service-icon {
    flex-shrink: 0;
  }

  .service-icon i {
    font-size: 1.125rem;
    color: #374151;
  }

  .service-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
  }

  .service-description {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
  }

  .detail-slider {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: hsl(225 60% 18%);
    border: none;
    border-radius: 16px;
    padding: 20px 50px;
    margin-bottom: 0;
  }

  .detail-slider-left {
    display: flex;
    gap: 24px;
    flex: 1;
  }

  .detail-slider .detail-icon {
    width: 56px;
    height: 56px;
    background: hsl(30deg 20% 98% / 10%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .detail-slider .detail-icon i {
    font-size: 26px;
    color: #ffffff;
  }

  .slider-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .detail-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
  }

  .detail-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: #60a5fa;
    margin-bottom: 12px;
  }

  .detail-content {
    font-size: 1rem;
    color: hsl(30deg 20% 98% / 70%);
    line-height: 1.6;
  }

  .slider-controls {
    display: none;
  }

  .cta-button {
    background-color: #ffffff;
    color: #1e3a5f;
    border: none;
    padding: 0.5rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .cta-button:hover {
    color: #1e3a5f;
    background: hsl(30deg 20% 98% / 90%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  @media (max-width: 1200px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .detail-slider {
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
    }

    .cta-button {
      align-self: stretch;
      text-align: center;
    }
  }

  @media (max-width: 768px) {
    .services-grid {
      grid-template-columns: 1fr;
    }

    .section-title {
      font-size: 2rem;
    }

    .title {
      font-size: 2rem;
    }

    .detail-slider {
      padding: 30px 24px;
    }

    .detail-slider-left {
      flex-direction: column;
      align-items: flex-start;
    }

    .detail-title {
      font-size: 1.25rem;
    }

    .detail-subtitle {
      font-size: 0.9rem;
    }

    .detail-content {
      font-size: 0.95rem;
    }
  }

  /* Services Section */
  .services-section {
    padding: 3rem 0;
    background-color: var(--color-background);
  }

  .service-card {
    background-color: white;
    border: 2px solid transparent;
    border-radius: 0.75rem;
    padding: 1rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .service-card:hover {
    border-color: var(--color-border);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
  }

  .service-card-active {
    border-color: var(--color-navy);
    box-shadow: 0 10px 15px -3px rgba(26, 39, 68, 0.15);
    transform: translateY(-2px);
  }

  .service-icon {
    color: var(--color-text-muted);
    flex-shrink: 0;
    transition: color 0.3s ease;
  }

  .service-card:hover .service-icon,
  .service-card-active .service-icon {
    color: var(--color-sky);
  }

  .service-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
  }

  .service-description {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-top: 0.75rem;
    margin-bottom: 0;
    text-align: center;
  }

  .featured-service-card {
    background-color: var(--color-navy);
    color: white;
    border-radius: 1rem;
    padding: 2.5rem;
    margin-top: 1.5rem;
  }

  .featured-service-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .featured-service-icon svg {
    color: white;
  }

  .featured-service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .featured-service-subtitle {
    color: var(--color-sky-light);
    font-weight: 500;
    margin-bottom: 0.75rem;
  }

  .featured-service-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
  }

  /* Enhanced button styling with proper hover effects and SVG arrows */
  .btn-light {
    background-color: white;
    border-color: white;
    color: var(--color-navy);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-display);
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .btn-light svg {
    transition: transform 0.3s ease;
  }

  .btn-light:hover {
    background-color: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.95);
    color: var(--color-sky);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(255, 255, 255, 0.5);
  }

  .btn-light:hover svg {
    transform: translateX(4px);
  }

  .btn-light:active {
    transform: translateY(0);
  }

  /* Security Section */
  .security-section {
    padding: 3rem 0;
    background-color: var(--color-background-alt);
  }

  .security-card {
    background-color: white;
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
  }

  .security-icon {
    width: 48px;
    height: 48px;
    background-color: hsl(225deg 60% 25% / 5%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .security-icon svg {
    color: #4b5875;
  }

  .security-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .security-description {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.6;
  }

  .security-section .row>div {
    display: flex;
  }

  /* Cards take full height */
  .security-card,
  .deployment-card {
    display: flex;
    gap: 16px;
    height: 100%;
  }

  /* Certifications Scroll */
  .certifications-scroll {
    overflow: hidden;
    position: relative;
    margin-left: -1rem;
    margin-right: -1rem;
    padding: 0 1rem;
    width: 100%;
  }

  .certifications-track {
    display: flex;
    gap: 1rem;
    animation: scroll-left 30s linear infinite;
    width: max-content;
  }

  .certifications-track::after {
    content: "";
  }

  .certifications-scroll:hover .certifications-track {
    animation-play-state: paused;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }


  .certification-badge {
    background-color: white;
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 180px;
    flex-shrink: 0;
  }

  .certification-icon {
    width: 32px;
    height: 32px;
    background-color: hsl(225deg 60% 25% / 5%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .certification-icon svg {
    color: #4b5875;
  }

  .certification-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-text);
  }

  .certification-status {
    font-size: 0.75rem;
    color: var(--color-text-muted);
  }

  /* Deployment Cards */
  .deployment-card {
    background-color: white;
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .deployment-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }

  .deployment-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-navy);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;

  }

  .deployment-icon svg {
    color: white;
  }

  .deployment-title {
    font-size: 1rem;
    font-weight: 600
  }

  .deployment-description {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
  }

  /* Testimonials Section */
  .testimonials-section {
    padding: 3rem 0;
    background-color: var(--color-background);
  }

  .testimonials {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-navy);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
  }

  .stat-icon i {
    color: white;
    font-size: 20px;
  
  }

  .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);

  }

  .stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
  }

  .testimonial-card {
    background-color: white;
    border-left: 4px solid var(--color-sky);
    border-radius: 0.75rem;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
  }

  .testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .testimonial-author {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text);
  }

  .testimonial-role {
    font-size: 0.875rem;
    color: var(--color-text-muted);
  }

  .carousel-indicators {
    position: relative;
    margin-top: 1.5rem;
    margin-bottom: 0;
  }

  .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(26, 39, 68, 0.3);
    border: none;
    transition: all 0.3s ease;
  }

  .carousel-indicators .active {
    width: 24px;
    border-radius: 4px;
    background-color: var(--color-navy);
  }

  /* cta section */
  .banner-wrapper {
    background: hsl(225 60% 18%);
    border-radius: 24px;
    padding: 40px 30px;
    margin: 40px auto;
    max-width: 1320px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  }

  .main-heading {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 30px;
    color: #ffffff;
    letter-spacing: -0.5px;
  }

  .tagline-text {
    font-size: 1.5rem;
    font-weight: 400;
    color: #e8edf5;

  }

  .content-paragraph {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #c7d2e0;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
  }

  .demo-btn {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 10px 25px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
  }

  .demo-btn:hover {
    background-color: white;
    border-color: rgba(255, 255, 255, 0.6);
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }

  .demo-btn svg {
    width: 20px;
    height: 20px;
  }

  .social-proof-text {
    font-size: .875rem;
    color: #b8c5d6;
    font-weight: 400;
  }

  /* Responsive Design */
  @media (max-width: 1200px) {
    .main-heading {
      font-size: 3rem;
    }

    .banner-wrapper {
      padding: 70px 50px;
    }
  }

  @media (max-width: 992px) {
    .main-heading {
      font-size: 2.5rem;
    }

    .tagline-text {
      font-size: 1.5rem;
    }

    .banner-wrapper {
      padding: 60px 40px;
      margin: 30px 20px;
    }
  }

  @media (max-width: 768px) {
    .main-heading {
      font-size: 2rem;
      margin-bottom: 25px;
    }

    .tagline-text {
      font-size: 1.25rem;
      margin-bottom: 30px;
    }

    .content-paragraph {
      font-size: 1rem;
      margin-bottom: 35px;
    }

    .banner-wrapper {
      padding: 50px 30px;
      border-radius: 16px;
    }

    .demo-btn {
      padding: 10px 32px;
      font-size: 1rem;
    }

    .social-proof-text {
      font-size: 0.9375rem;
    }
  }

  @media (max-width: 576px) {
    .main-heading {
      font-size: 1.75rem;
    }

    .tagline-text {
      font-size: 1.125rem;
    }

    .banner-wrapper {
      padding: 40px 25px;
      margin: 20px 15px;
    }
  }

  /* Footer */
  .footer {
    background-color: var(--color-navy);
    color: white;
    margin-top: 4rem;
    padding-top: 2.5rem;
    padding-bottom: 2rem;
    position: relative;
  }

  .footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
    pointer-events: none;
    overflow: hidden;
    height: 64px;
  }

  .footer-wave svg {
    width: 100%;
    height: 100%;
  }

  .footer-logo {
    height: 40px;
    width: auto;
    border-radius: 0.25rem;
    filter: brightness(0) invert(1);
  }

  .footer-brand {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
  }

  .footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .footer-social {
    display: flex;
    gap: 0.75rem;
  }

  .social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
  }

  .social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
  }

  .footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
  }

  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links li {
    margin-bottom: 0.75rem;
  }

  .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
  }

  .footer-links a:hover {
    color: white;
  }

  .footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
  }

  .location-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 1.25rem;
    height: 100%;
  }

  .location-flag {
    font-size: 0.875rem;
    font-weight: 700;
  }

  .location-name {
    font-weight: 600;
    font-size: 1rem;
  }

  .location-address {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
  }

  .footer-copyright,
  .footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }

  /* Responsive adjustments */
  @media (max-width: 767px) {
    .hero-section {
      padding: 3rem 0 2rem;
    }

    .hero-title {
      font-size: 2rem;
    }

    .section-title {
      font-size: 1.75rem;
    }

    .title {
      font-size: 1.75rem;
    }

    .featured-service-card {
      padding: 1.5rem;
    }

    .testimonial-text {
      font-size: 1rem;
    }

    .stat-number {
      font-size: 2rem;
    }
  }

  .form-control:focus {
    border-color: var(--color-sky);
    box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.15);
    outline: none;
  }

  .btn-primary:focus,
  .btn-light:focus {
    box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
    outline: none;
  }

  /* home page css ends */

  /* See action page css starts */
  .action-section {
    background-color: #fbfaf9;
    padding-top: 5rem;
    padding-bottom: 5rem;

  }

  .action-section p {
    color: hsl(225 50% 28%);
  }

  .action-title {
    font-size: 3rem;
    font-weight: 750;
    line-height: 1;
    letter-spacing: -0.96px
  }

  @media(min-width:300px) and (max-width:570px) {
    .action-title {
      font-size: 2rem;
    }

    .action-section {
      padding-top: 2rem;
      padding-bottom: 2rem;
    }

  }

  .text-decoration {
    font-style: italic;
    text-decoration: underline;
    text-decoration-color: hsl(210 70% 50%);
  }

  .action-description {
    font-size: 1.2rem;
    line-height: 1.75rem;
    color: hsl(225 50% 28%);
    font-weight: 300;
  }

  button i {
    font-size: 18px;
  }

  .text-muted {
    color: hsl(220 15% 45%) !important;
  }

  .action-highlight {
    color: hsl(225 60% 18%);
    font-weight: 600;
  }

  /* form css starts */
  .form-section {
    background-color: hsl(30 15% 95%);
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  @media(min-width:300px) and (max-width:570px) {
    .form-section {
      padding-top: 2rem;
      padding-bottom: 2rem;
    }

  }

  .row-custom {
    display: flex;
    gap: 40px;
    align-items: start;
  }

  .left-section {
    flex: 1;
  }

  .right-section {
    flex: 1;
  }

  h2 {
    font-weight: 750;
    color: #1a1a2e;
    margin-bottom: 16px;
  }

  .subtitle {
    color: #4a4a5e;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .feature-card {
    background: white;
    border-radius: 8px;
    padding: 18px 20px;
    margin-bottom: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  .checkmark {
    color: #4a90e2;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: hsl(210 60% 92%);
    display: flex;
    justify-content: center;
    padding: 3px;
  }

  .feature-text {
    color: #2c2c3e;
    font-size: 15px;
    line-height: 1.5;
  }

  .info-box {
    background: hsl(225deg 60% 18% / 5%);
    border-left: 4px solid #4a90e2;
    border-radius: 10px;
    padding: 18px 20px;
    margin-top: 24px;
  }

  .info-box p {
    margin: 0;
    color: #2c2c3e;
    font-size: 14px;
    line-height: 1.6;
  }

  .info-box strong {
    color: #1a1a2e;
  }

  .form-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .form-label {
    font-size: .875rem;
    font-weight: 500;
    color: hwb(225 7% 71%);
    margin-bottom: 8px;
  }

  .form-label .required {
    color: #e74c3c;
  }

  .form_input,
  .form-select {
    border: 1px solid #d1d1d6;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 14px;
    color: #2c2c3e;
    transition: border-color 0.2s;
    background-color: hsl(30 20% 98%);
  }

  .form-control:focus,
  .form-select:focus {
    border-color: #161c23;
    box-shadow: 0 0 0 3px rgba(245, 247, 248, 0.1);
    border-width: 2px;
  }

  .form-control::placeholder {
    color: #999;
  }

  textarea.form-control {
    min-height: 120px;
    resize: vertical;
  }


  .btn-submit {
    background: hsl(225 60% 25%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 32px;
    font-size: 16px;
    font-weight: 520;
    width: 100%;
    cursor: pointer;
    transition: background 0.2s;

  }

  .btn-submit:hover {
    transition: 0.3s ease;
    transform: translateY(-2px);
  }

  .privacy-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 16px;
    font-size: 13px;
    color: #666;
  }

  .privacy-note i {
    margin-top: 2px;
    color: #999;
  }

  @media (max-width: 968px) {
    .row-custom {
      flex-direction: column;
    }
  }

  .btn:hover i {
    animation: arrowDown 0.6s ease infinite;
  }

  /* banner css for action page starts */

  .banner_head {
    color: #c7d2e0;
  }

  .banner_content {
    font-weight: 520;
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .action-banner {
    background: hsl(225 60% 18%);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 1320px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);

  }

  .small-banner {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  /* platform page css starts*/