*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
  font-family: 'Nunito', sans-serif!important;
}


/* Navbar styleing stat */
.navbar-wrapper {
      box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    }
    
    /* Removed .nav-tabs specific styles as they weren't used in the main nav structure */
    
    /* Main dropdown container */
    .multi-level-dropdown {
      position: relative; /* Changed from static to relative for standard dropdown positioning */
    }
    
    /* Styling for the main dropdown menu */
    .multi-level-dropdown .dropdown-menu {
      display: none; /* Hidden by default */
      /* Removed width: 100%, left:0, right:0 to allow default Bootstrap dropdown sizing */
      border-radius: 0.5rem;
      /* padding: 1rem; Bootstrap default padding is usually fine, can be overridden if needed */
      box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
      border: none;
      margin-top: 0.125rem; /* Standard Bootstrap practice */
      min-width: 220px; /* Set a min-width for better appearance */
    }
    
    /* Show main dropdown on hover - for desktop */
    @media (min-width: 992px) {
      .multi-level-dropdown:hover > .dropdown-menu {
        display: block;
      }
      .secondary-dropdown:hover > .tertiary-dropdown {
        display: block; /* Show tertiary fly-out on hover */
      }
    }

    /* Container for a secondary level dropdown item and its tertiary fly-out */
    .secondary-dropdown {
      position: relative; 
    }
    
    /* Styling for items within dropdowns, including those that trigger tertiary menus */
    .secondary-dropdown .dropdown-item {
      padding: 0.5rem 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between; /* Pushes icon to the right */
    }
    
    .secondary-dropdown .dropdown-item:hover,
    .secondary-dropdown .dropdown-item:focus { 
      background-color: rgba(226, 235, 254, 0.4);
      border-radius: 0.25rem;
    }
    
    /* Styling for the tertiary fly-out menu */
    .tertiary-dropdown {
      position: absolute;
      left: 100%;
      top: -0.1rem; /* Align top edge of tertiary with its parent item */
      min-width: 220px; 
      display: none;
      background-color: white;
      border-radius: 0.5rem;
      box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
      padding: 0.5rem 0; /* Padding for the tertiary menu itself */
      z-index: 1021; 
    }
    .tertiary-dropdown .dropdown-item {
        padding: 0.5rem 1rem;
    }
    .tertiary-dropdown .dropdown-header{
        padding: 0.5rem 1rem;
    }
        
    /* Responsive adjustments for dropdowns on smaller screens */
    @media (max-width: 991.98px) {
      .multi-level-dropdown .dropdown-menu {
        position: static; /* Stack them in mobile */
        width: 100%;
        margin: 0;
        padding: 0;
        border: none;
        box-shadow: none;
        min-width: unset; /* Remove min-width for mobile */
      }
      
      .tertiary-dropdown {
        position: static; /* Stack tertiary items in mobile */
        left: auto;
        top: auto;
        box-shadow: none;
        padding-left: 1.5rem; /* Indent tertiary items */
        border-left: 1px solid #eee; 
        margin-left: 0rem; /* Align with parent */
        margin-right: 0rem;
        border-radius: 0;
        background-color: #f8f9fa; /* Slightly different background for nested mobile items */
      }
      .tertiary-dropdown .dropdown-item, .tertiary-dropdown .dropdown-header {
          padding-left: 0.5rem; /* Adjust padding for mobile nested items */
      }

      /* On mobile, secondary items with a tertiary menu will expand it when clicked (Bootstrap default)
         The .show class will be added by Bootstrap. We ensure it displays. */
      .secondary-dropdown.show > .tertiary-dropdown { 
         display: block;
      }
      .secondary-dropdown > .dropdown-item .fa-angle-right {
          transform: rotate(0deg); /* Keep arrow right for desktop */
      }
      /* Rotate arrow on mobile when tertiary is shown */
      .secondary-dropdown > .dropdown-item[aria-expanded="true"] .fa-angle-right {
          transform: rotate(90deg);
          transition: transform 0.2s ease-in-out;
      }
    }

    .dropdown-header {
        padding: 0.5rem 1rem; /* Consistent padding for headers */
        font-weight: bold;
        color: #6c757d;
    }

    .hamburger-icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }

/* Navbar styling end */

          
          .section-with-corner-images {
            /* --- Essential Background Properties --- */
  
            /* 1. Define the two images (comma-separated) */
            /* The first image listed will be the top layer */
            background-image: url('../img/newpage/topleftbg.png'),
              url('../img/newpage/bottomright.png');
  
            /* 2. Define the position for each image (comma-separated, corresponding order) */
            background-position: top left,
              /* Position for the first image */
              bottom right;
            /* Position for the second image */
  
            /* 3. Define the repeat behavior for each image (usually no-repeat for corner images) */
            background-repeat: no-repeat,
              /* Repeat behavior for the first image */
              no-repeat;
            /* Repeat behavior for the second image */
  
            /* --- Optional but Recommended Properties --- */
  
            /* 4. Define the size for each image (optional, defaults to 'auto') */
            /* You might want to set explicit sizes */
            /* background-size: 50px auto,  /* Size for top-left (e.g., 50px wide, auto height) */
            /* 80px 80px;   /* Size for bottom-right (e.g., 80px by 80px) */
            background-size: auto, auto;
            /* Use original size for both */
  
  
            /* --- Other Styling for Layout and Appearance --- */
  
            /* Ensure the section has enough height to show the bottom image */
            min-height: 300px;
            /* Adjust as needed */
            /* Or ensure there's enough content inside */
  
            /* Add padding so content doesn't sit directly under the background images */
            padding: 60px 40px;
            /* Example: Adjust top/bottom/left/right padding */
  
            /* Add other styles like text color, background color (behind images), borders etc. */
            background-color: #f0f0f0;
            /* Fallback color / color behind transparent parts */
            color: #333;
            position: relative;
            /* Often useful for containing other positioned elements */
          }
  
          .hero-section {
            /* min-height: 90vh; */
            padding-top: 8.5rem !important;
            padding-left: 0;
            padding-right: 0;
            background-color: #ffffff;
            top: 0rem !important;
          }
  
          /* Contained Polygon Background */
          .polygon-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
          }
  
          .polygon-bg svg {
            width: 100%;
            height: 100%;
            opacity: 0.3;
          }
  
          /* Hero Content Styles */
          .hero-heading {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 2rem;
          }
  
          .highlight-text {
            color: #4527a0;
            font-weight: 800;
          }
  
          .hero-description {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #333;
            margin-bottom: 2.5rem;
          }
  
          /* Form Styles */
          .form-container {
            display: flex;
            align-items: stretch;
          }
  
          .email-input {
            height: 50px;
            border-radius: 5px;
            border: 1px solid #ccc;
            padding: 0.75rem 1rem;
            flex-grow: 1;
          }
  
          .cta-button {
            height: 50px;
            background-color: #4527a0;
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            padding: 0 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
            transition: background-color 0.3s;
          }
  
          .cta-button:hover {
            background-color: #371e7e;
          }
  
          .no-credit {
            font-size: 0.9rem;
            color: #666;
            margin-top: 1rem;
          }
  
          /* Image Styles */
          .hero-image-container {
            position: relative;
          }
  
          .hero-image {
            width: 100%;
            border-radius: 8px;
          }
  
          .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #4527a0;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
          }
  
          /* Responsive Styles */
          @media (max-width: 991px) {
            .hero-section {
              padding: 4rem 0;
            }
  
            .hero-content {
              text-align: center;
              margin-bottom: 3rem;
            }
  
            .form-container {
              flex-direction: column;
            }
  
            .email-input {
              margin-bottom: 1rem;
              width: 100%;
            }
  
            .cta-button {
              width: 100%;
            }
          }
  
          .vt-scoped-navbar {
    transform: none !important;
    filter: none !important;
    perspective: none !important;
}
  
          .navbar-wrapper {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 0.5rem 1rem;
            border-radius: 1rem !important;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
          }
          
          /* .btn-primary {
            background-color: #102a63;
            border-color: #102a63;
          } */
          
          .hamburger-icon {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background-color: #102a63;
            color: white;
          }
          
          .hamburger-icon .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%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
          }
          
          @media (max-width: 991.98px) {
            .navbar-wrapper {
              flex-direction: row;
              align-items: center;
            }
            
            .navbar-collapse {
              position: absolute;
              top: 100%;
              left: 0;
              right: 0;
              background: white;
              padding: 1rem;
              box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
              border-radius: 0 0 1rem 1rem;
              z-index: 1000;
            }
          }
  
          
  
          body {
            font-family: 'Nunito', sans-serif !important;
          }
  
          :root {
            --primary-blue: #4366FF;
            --light-blue: #8abdff;
            --dark-blue: #12336d;
          }
          h2{
            font-weight: 600!important;
            font-size: 36px!important;
            color: #333!important;
          }
  
          .services-header {
            text-align: center;
            padding: 2rem 0;
          }
  
          .subtitle {
            color: var(--primary-blue)!important;
            font-weight: 600;
            font-size: 12px!important;
            margin-bottom: 0.5rem;
            line-height: 18px!important;
            border-radius: 5px;
            border-width: 1px;
            padding-top: 6px;
            padding-right: 13px;
            padding-bottom: 6px;
            padding-left: 13px;
            gap: 10px;
  
            background-color: #D9E0FF!important;
          }
  
          .services-header h1 {
            color: var(--dark-blue);
            font-weight: 700;
            font-size: 2.5rem;
          }
  
          .tab-section {
            padding: 1rem 0 3rem;
          }
  
          /* START: New Gradient Tab Styling for vtiger-tab-section */
          .vtiger-tab-section .nav-tabs {
            border-bottom: none;
            position: relative;
            margin-bottom: 3rem;
            justify-content: space-around;
          }

          .vtiger-tab-section .nav-tabs::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(to right, #7B94FF, #97E1C8);
            z-index: 1;
          }

          .vtiger-tab-section .nav-tabs .nav-link {
              color: #333 !important;
              font-size: 18px !important;
              font-weight: 500 !important;
              border: none;
              padding: 1rem 2rem;
              margin-bottom: -2px;
              background-color: transparent;
              position: relative;
          }

          .vtiger-tab-section .nav-tabs .nav-link.active {
            color: var(--primary-blue) !important;
            font-weight: 600 !important;
          }

          .vtiger-tab-section .nav-tabs .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, #7B94FF, #97E1C8);
            z-index: 2;
            border-radius: 2px;
          }
          /* END: New Gradient Tab Styling */

          .tab-content-wrapper {
            padding: 2rem 0;
          }
  
          .tab-header {
            color: var(--primary-blue);
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 1rem;
          }
  
          .tab-title {
            color: var(--dark-blue);
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
          }
  
          .tab-description {
            color: #444;
            line-height: 1.6;
            margin-bottom: 2rem;
          }
  
          .know-more-btn {
            display: inline-flex;
            align-items: center;
            padding: 0.75rem 1.5rem;
            border: 2px solid var(--primary-blue);
            color: var(--primary-blue);
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
          }
  
          .know-more-btn:hover {
            background-color: var(--primary-blue);
            color: white;
          }
  
          .know-more-btn svg {
            margin-left: 0.5rem;
          }
  
          .tab-image-container {
            position: relative;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
          }
  
          .img-table-container {
            border-radius: 50%;
            width: 100%;
            max-width: 400px;
            height: auto;
          }
  
          .tab-image-bg {
            background-color: var(--light-blue);
            border-radius: 50%;
            padding: 1rem;
          }
  
          @media (max-width: 992px) {
            .tab-image-container {
              margin-top: 2rem;
            }
          }
  
          .agent-builder-section {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
          }
  
          .layer-container {
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
          }
  
          .layer-header {
            background-color: #1e3a8a !important;
            border-radius: 4px 4px 0 0;
            font-weight: 600;
          }
  
          .layer-item {
            font-size: 0.9rem;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
          }
  
          .connection-arrow {
            position: relative;
            height: 30px;
          }
  
          .connection-arrow i {
            font-size: 24px;
            color: #6c757d;
          }
  
          .bg-info.bg-opacity-10 {
            background-color: rgba(13, 202, 240, 0.1) !important;
          }
  
          .card {
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
            transition: transform 0.2s;
            height: 100%;
          }
  
          .card:hover {
            transform: translateY(-5px);
          }
  
          .icon-container {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            color: #1e3a8a;
          }
  
          .enterprise-icons {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
          }
  
          .enterprise-logo {
            height: 20px;
            max-width: 60px;
            object-fit: contain;
          }
  
          @media (max-width: 768px) {
            .card-title {
              font-size: 0.8rem;
            }
  
            .enterprise-icons {
              flex-direction: column;
            }
          }
  
          .vtiger-nextgen-section {
            padding: 40px 0;
          }
          
          .text-navy {
            color: #2c3e72;
          }
          
          .text-primary {
            color: #4285f4 !important;
          }
          
          /* Custom nav tabs styling */
          .vtiger-nextgen-section .nav-tabs {
            border-bottom: 1px solid #dee2e6;
            margin-bottom: 2rem;
          }
          
          .vtiger-nextgen-section .nav-tabs .nav-link {
            border: none;
            color: #6c757d;
            font-weight: 500;
            padding: 10px 25px;
            margin-right: 10px;
            position: relative;
            transition: all 0.3s ease;
          }
          
          .vtiger-nextgen-section .nav-tabs .nav-link:hover {
            color: #4285f4;
            border: none;
          }
          
          .vtiger-nextgen-section .nav-tabs .nav-link.active {
            color: #4285f4;
            background-color: transparent;
            border: none;
          }
          
          .vtiger-nextgen-section .nav-tabs .nav-link.active::after {
            content: "";
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #4285f4;
          }
          
          /* Platform screenshot container */
          .platform-screenshot {
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 30px;
          }
          
          /* Know more button */
          .know-more-btn {
            padding: 8px 20px;
            border-radius: 4px;
            border: 1px solid #4285f4;
            color: #4285f4;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
          }
          
          .know-more-btn:hover {
            background-color: #4285f4;
            color: white;
          }
          
          /* Responsive adjustments */
          @media (max-width: 991px) {
            .vtiger-nextgen-section .nav-tabs .nav-link {
              padding: 8px 15px;
              font-size: 14px;
            }
            
            h1 {
              font-size: 1.8rem;
            }
            
            h2 {
              font-size: 1.5rem;
            }
          }
          
          @media (max-width: 767px) {
            .vtiger-nextgen-section .nav-tabs {
              flex-wrap: nowrap;
              overflow-x: auto;
              padding-bottom: 5px;
            }
            
            .vtiger-nextgen-section .nav-tabs .nav-link {
              white-space: nowrap;
            }
          }



/* Moving section template css code  */

.integrations-section {
    background-color: #fff;
    padding: 60px 0;
    overflow: hidden;
}

.integrations-title {
    color: #0d6efd;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.main-title {
    color: #1a3b76;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.new-subtitle {
    color: #495057;
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.logo-belt {
    display: flex;
    overflow: hidden;
    margin-bottom: 0px;
    padding: 5px 0;
}

.logo-container {
    display: flex;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.top-belt .logo-container {
    animation-name: scroll-left;
}

.bottom-belt .logo-container {
    animation-name: scroll-right;
}

.logo-item {
    flex: 0 0 130px;
    height: 70px;
    margin: 0 8px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.demo-btn-container {
    text-align: center;
    margin-top: 25px;
}

.demo-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    background-image: linear-gradient(white, white), 
                      linear-gradient(to right, #0d6efd, #36b9cc);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    color: #0d6efd;
}

.demo-btn:hover {
    background-color: #0d6efd;
    color: white;
}

.demo-btn svg {
    margin-left: 8px;
}

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

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

/* Pause animation on hover */
/* .logo-belt:hover .logo-container {
    animation-play-state: paused;
} */


/* ENd of moving section template css code with logos */





/* Section for carousle brands */
.testimonials-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-title {
    color: #1a3c7f;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.section-subtitle {
    color: #1a3c7f;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}
.blue-text {
    color: #1a3c7f;
}
.tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}
.car-tab-item {
    padding: 15px 30px;
    font-size: 1.1rem;
    cursor: pointer;
    color: #555;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}
.car-tab-item.active {
    color: #1a77ff;
}
.car-tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #1a77ff;
}
.car-tab-content {
    display: none;
}
.car-tab-content.active {
    display: block!important;
}
.logo-carousel {
    position: relative;
    padding: 20px 0;
    max-width: 1000px;
    margin: 0 auto;
}
.logo-slide {
    text-align: center;
    padding: 10px;
    cursor: pointer;
    transition: transform 0.3s;
}
.logo-slide.active {
    transform: scale(1.05);
    border-bottom: 2px solid blue;
}
.logo-img {
    max-height: 40px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(0.5);
    opacity: 0.8;
    transition: filter 0.3s, opacity 0.3s;
}
.logo-slide.active .logo-img {
    filter: grayscale(0);
    opacity: 1;
}
.testimonials-container {
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    height: 250px; /* Adjust based on your content height */
}
.testimony-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: absolute;
    width: 100%;
    left: 100%;
    transition: left 0.5s ease-in-out, opacity 0.3s ease-in-out;
    height: 100%;
    opacity: 0;
    display: none;
}
.testimony-box.active {
    display: block;
    left: 0;
    opacity: 1;
}
.testimony-box.prev {
    left: -100%;
}
.testimony-box.next {
    left: 100%;
}
.metrics {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a3c7f;
    margin-bottom: 15px;
}
.person-name {
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
}
.quote {
    font-style: italic;
    text-align: center;
    color: #555;
    line-height: 1.6;
}
.quote-marks {
    font-size: 2rem;
    color: #1a77ff;
    line-height: 0;
    vertical-align: middle;
}
.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    top: 50%!important;
    transform: translateY(-50%);
    opacity: 1;
    z-index: 10;
}
.carousel-control-prev {
    left: -50px;
}
.carousel-control-next {
    right: -50px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    filter: invert(45%) sepia(12%) saturate(1242%) hue-rotate(177deg) brightness(90%) contrast(87%);
}
@media (max-width: 768px) {
    .carousel-control-prev {
        left: -20px;
    }
    .carousel-control-next {
        right: -20px;
    }
    .section-title {
        font-size: 2rem;
    }
}

/* end of carousel */




















.accolades-section {
  background-color: #fff!important;
  padding: 80px 0;
  text-align: center;
}

.acc-section-header {
  margin-bottom: 50px;
}

.acc-highlight-text {
  color: #0d6efd;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.acc-section-title {
  color: #1a3172;
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.acc-section-subtitle {
  color: #333;
  font-size: 1.25rem;
  margin-bottom: 40px;
}

.award-card {
  background-color: #F9F8F7;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  height: 100%;
  margin-bottom: 30px;
  /* padding: 25px 15px; */
  padding-top:20px!important;
  transition: transform 0.3s ease;
}

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

.award-image {
  height: 120px;
  /* margin: 0 auto 20px;
  width: auto; */
}

.award-title {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0px;
  margin-top: 8px!important;
}

.award-subtitle {
  color: #333!important;
  font-size: 18px;
  font-weight: 600!important;
}

.rating-container {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  /* margin-bottom: 20px;
  padding: 15px 20px; */
  /* max-width: 150px; */
}


.rating-logo {
  height: 40px;
  margin-right: 15px;
  width: auto;
}

.rating-score {
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 10px;
}

.rating-stars {
  color: #ffc107;
  font-size: 1.25rem;
}


/* COntinetn section code */
.partners-section {
  padding: 4rem 0;
  text-align: center;
  background-color: #F5F7FF!important;
}

.partners-heading {
  color: #28365f;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.partners-description {
  color: #555;
  max-width: 900px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.continents-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.continent-link {
  color: #333;
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 0.25rem;
  transition: color 0.3s ease;
  cursor: pointer;
}

.continent-link:hover, .continent-link.active {
  color: #2d62ed;
}

.map-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.map-image {
  width: 100%;
  height: auto;
}

.become-partner-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 2.5rem;
  color: #2d62ed;
  border: 1px solid #2d62ed;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.become-partner-btn:hover {
  background-color: #2d62ed;
  color: white;
}

.become-partner-btn svg {
  margin-left: 0.5rem;
}

.partners-label {
  text-align: center;
  color: #2d62ed;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}




/* Team faces template */
.vtg-team-section {
  padding: 80px 0;
  
}

.vtg-team-badge {
  background-color: #e9ecff;
  color: #4361ee;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vtg-section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #333!important;
}

/* New Card Style from second template */
.vtg-team-card {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  background: linear-gradient(to bottom, #ECF0FF, #C7D1FF);
  height: 360px;
  
}

.vtg-team-card:hover {
  transform: translateY(-8px);
}

.vtg-team-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vtg-card-content {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: white;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.vtg-card-content h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.vtg-card-content .role {
  font-size: 14px;
  color: #3366FF;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
}

.vtg-icons {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.vtg-icons a {
  font-size: 18px;
  color: #6c757d;
  transition: color 0.2s;
  width: 32px;
  height: 32px;
  background-color: #f2f4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vtg-icons a:hover {
  color: white;
  background-color: #4361ee;
}

.vtg-view-more-btn {
  color: #4361ee;
  border: 2px solid #4361ee;
  padding: 8px 24px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.vtg-view-more-btn:hover {
  background-color: #4361ee;
  color: white;
}



/* Multi posts section */

:root {
  --clr-blue: #0052CC;
  --clr-light: #F4F7FF;
  --clr-white: #FFFFFF;
  --clr-text: #1A2634;
  --clr-gray: #64738B;
  --badge-bg: #E5F4EA;
  --badge-text: #0D6E3E;
}

body {
  margin: 0;
  font-family: sans-serif;
  background-color: var(--clr-light);
  color: var(--clr-text);
}

.trending {
  position: relative;
  padding: 2rem;
  overflow: hidden;
}

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

.trending__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--clr-blue);
  background: var(--clr-white);
  padding: 0.25em 0.75em;
  border-radius: 1.5em;
}

.btn--outline {
  background: none;
  border: 1px solid var(--clr-blue);
  color: var(--clr-blue);
  padding: 0.5em 1em;
  font-size: 0.875rem;
  border-radius: 0.25em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25em;
}

.trending__title {
  margin: 1rem 0 2rem;
  font-size: 2rem;
}

.trending__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--clr-white);
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card--large {
  grid-column: span 2;
}

.card__img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  object-fit: cover;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.5em;
  border-radius: 0.25em;
  font-size: 0.75rem;
  font-weight: bold;
}

.badge--green {
  background: var(--badge-bg);
  color: var(--badge-text);
}

.card__title {
  font-size: 1rem;
  margin: 0;
}

.card__desc {
  flex-grow: 1;
  font-size: 0.875rem;
  color: var(--clr-gray);
}

.card__more {
  text-decoration: none;
  font-size: 0.875rem;
  color: var(--clr-blue);
  font-weight: bold;
  align-self: flex-start;
}

.dots {
  display: flex;
  justify-content: center;
  margin: 1rem 0 2rem;
  gap: 0.5rem;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--clr-gray);
  border: none;
  cursor: pointer;
}

.dot--active {
  background: var(--clr-blue);
}

.trending__bg-logo {
  position: absolute;
  bottom: -5%;
  left: -5%;
  width: 40%;
  opacity: 0.1;
  pointer-events: none;
}



/* Trending section */

.trending-section-new{
     background-color: #F5F7FF !important;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Add image at bottom left corner */
.trending-section-new::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 180px; /* adjust as needed */
  height: 140px; /* adjust as needed */
  background-image: url('../static/assets/img/newpage/bgmlogo.png'); /* update path as needed */
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  pointer-events: none;
}

.vtg-trending-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header styles */
.vtg-trending-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.vtg-trending-header h2 {
  color: #0e3173;
  font-size: 32px;
  font-weight: bold;
}

.vtg-trending-category-bar {
  color: #4a90e2;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.vtg-trending-view-more {
  display: inline-flex;
  align-items: center;
  color: #0e3173;
  text-decoration: none;
  border: 1px solid #4caf50;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.vtg-trending-arrow {
  margin-left: 8px;
}

/* Card grid layout */
.vtg-trending-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

/* Card styles */
.vtg-trending-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

/* Carousel styles */
.vtg-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.vtg-carousel-slides {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.5s ease;
}

.vtg-carousel-slide {
  width: 33.333%;
  height: 100%;
  flex-shrink: 0;
}

.vtg-trending-card-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.vtg-trending-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.vtg-trending-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  color: white;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

.vtg-trending-tag-case-studies {
  background-color: #28a745;
}

.vtg-trending-tag-events {
  background-color: #28a745;
}

.vtg-trending-tag-whitepapers {
  background-color: #28a745;
}

.vtg-trending-tag-blogs {
  background-color: #28a745;
}

.vtg-trending-tag-newsletter {
  background-color: #28a745;
}

.vtg-trending-tag-awards {
  background-color: #28a745;
}

.vtg-trending-card-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.4;
}

.vtg-trending-card-description {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.vtg-trending-read-more {
  color: #4a90e2;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  margin-top: auto;
}

.vtg-trending-read-more .vtg-trending-arrow {
  margin-left: 5px;
}

.vtg-trending-card-dots {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 10px;
  position: relative;
  z-index: 10;
}

.vtg-trending-dot {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  margin: 0 2px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.vtg-trending-dot-blue {
  background-color: #4a90e2;
}

.vtg-trending-dot-green {
  background-color: #28a745;
}

.vtg-trending-dot.active {
  background-color: #0e3173;
  transform: scale(1.2);
}

/* Utility classes */
.vtg-trending-mb-10 {
  margin-bottom: 10px;
}

/* Background logo style */
.vtg-trending-bg-logo {
  position: fixed;
  bottom: 0;
  left: 0;
  opacity: 0.1;
  z-index: -1;
}




/* Footer cta code */

.cta-main-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Hero/Header Area */
.cta-hero-section {
  background: linear-gradient(to right, #000021, #1c1c3a);
  padding-top: 40px;
  padding-bottom: 170px; /* Extra padding to make room for the overlapping CTA */
  position: relative;
}

/* Get Started Section with Overlap */
.cta-get-started-wrapper {
  position: relative;
  z-index: 10;
}

.cta-get-started-container {
  display: flex;
  align-items: center;
  background-color: #2b34c9;
  border-radius: 10px;
  overflow: hidden;
  margin: -120px auto 0; /* Negative margin for overlap */
  max-width: 1000px;
  color: white;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  position: relative;
}

.cta-get-started-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  /* Make image partially "stick out" of container */
  margin-left: -40px;
}

.cta-get-started-image img {
  max-width: 100%;
  height: auto;
}

.cta-get-started-content {
  flex: 1;
  padding: 40px;
}

.cta-get-started-content h5 {
  font-size: 16px;
  margin-bottom: 10px;
}

.cta-get-started-content h2 {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.2;
}

.cta-email-form {
  display: flex;
  margin-top: 20px;
}

.cta-email-input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.9);
}

.cta-get-started-btn {
  background-color: #111;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 12px 20px;
  margin-left: 10px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.cta-arrow-icon {
  margin-left: 8px;
}

/* Navigation Section - starts below the CTA box */
.cta-navigation {
  background-color: #0a0a16;
  color: white;
  padding: 80px 0 40px; /* Extra top padding to account for the CTA overlap */
  margin-top: -50px; /* Negative margin to create overlap with CTA */
  position: relative;
  z-index: 5;
}

.cta-nav-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 5;
}

.cta-nav-column {
  flex: 1;
  min-width: 150px;
  margin-bottom: 30px;
}

.cta-nav-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #f5f5f5;
}

.cta-nav-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.cta-nav-list li a {
  position: relative;
  padding-left: 18px;
  color: #aaa;
  transition: color 0.3s;
  text-decoration: none;
}

.cta-nav-list li a:hover {
  color: #fff;
}

.cta-nav-list li a::before {
  content: "•";
  color: #2b34c9;
  position: absolute;
  left: 0;
  font-size: 20px;
}

/* Mobile Apps Section */
.cta-mobile-apps {
  margin-top: 20px;
}

.cta-app-stores {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.cta-app-store-button {
  height: 40px;
  width: auto;
}

/* Social Media Section */
.cta-social-media {
  margin-top: 20px;
}

.cta-social-icons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.cta-social-icon {
  background-color: #333;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
  text-decoration: none;
  color: #f5f5f5;
}

.cta-social-icon:hover {
  background-color: #2b34c9;
}

/* Footer Section */
.cta-footer {
  background-color: #0a0a16;
  color: #888;
  padding: 20px 0;
  border-top: 1px solid #222;
}

.cta-footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  flex-wrap: wrap;
}

.cta-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-footer-links a {
  color: #888;
  transition: color 0.3s;
  text-decoration: none;
}

.cta-footer-links a:hover {
  color: #fff;
}

.cta-copyright {
  margin: 15px 0;
}

.cta-powered-by {
  color: #888;
}

.cta-powered-by a {
  color: #2b34c9;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 992px) {
  .cta-get-started-container {
      flex-direction: column;
      margin-top: -80px;
  }
  
  .cta-get-started-image {
      margin-left: 0;
      width: 100%;
  }
  
  .cta-get-started-content {
      width: 100%;
  }
  
  .cta-nav-container {
      flex-wrap: wrap;
  }
  
  .cta-nav-column {
      flex: 1 0 50%;
  }
  
  .cta-navigation {
      padding-top: 100px;
  }
}

@media (max-width: 768px) {
  .cta-nav-column {
      flex: 1 0 100%;
  }
  
  .cta-footer-container {
      flex-direction: column;
      text-align: center;
  }
  
  .cta-footer-links {
      justify-content: center;
      margin-bottom: 15px;
  }
  
  .cta-get-started-container {
      margin-top: -60px;
  }
  
  .cta-navigation {
      padding-top: 70px;
      margin-top: -30px;
  }
}


/* Footer section css */

.site-footer {
            position: relative;
            /* The updated gradient from your Figma screenshot */
            background: linear-gradient(to top right, #35CA6A 0%, #31ABA5 41%, #31A9A8 43%, #31A7AC 46%, #31A5AF 48%, #30A2B6 53%, #309DBE 59%, #2F97CA 67%, #2E91D6 75%, #2E8BE0 82%, #2D8AE3 85%, #2d7eff 100%);
            color: #e0e0e0;
            padding-top: 140px; /* Creates space for the overlapping CTA */
            padding-bottom: 20px;
            font-size: 0.9rem;
        }

        .site-footer h5 {
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 1.25rem;
            font-size: 1rem;
        }

        .site-footer .footer-links {
            list-style: none;
            padding-left: 0;
        }

        .site-footer .footer-links li {
            margin-bottom: 0.75rem;
        }

        .site-footer .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s ease, padding-left 0.3s ease;
        }

        .site-footer .footer-links a:hover {
            color: #ffffff;
            padding-left: 5px;
        }
        
        /* New styles for the App Store buttons */
        .site-footer .store-button {
            display: flex;
            align-items: center;
            background-color: #000;
            color: #fff;
            padding: 8px 16px;
            border-radius: 8px;
            text-decoration: none;
            margin-bottom: 12px;
            border: 1px solid #555;
            transition: background-color 0.3s ease;
            max-width: 180px; /* Max width for the buttons */
        }
        
        .site-footer .store-button:hover {
            background-color: #222;
        }

        .site-footer .store-button i {
            font-size: 2rem;
            margin-right: 12px;
        }

        .site-footer .store-button .store-text {
            display: flex;
            flex-direction: column;
            text-align: left;
            line-height: 1.2;
        }

        .site-footer .store-button .store-text-small {
            font-size: 0.7rem;
            text-transform: uppercase;
        }

        .site-footer .store-button .store-text-large {
            font-size: 1.1rem;
            font-weight: 600;
        }


        .site-footer .social-icons a {
            color: #e0e0e0;
            font-size: 1.2rem;
            margin-right: 15px;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .site-footer .social-icons a:hover {
            color: #ffffff;
            transform: scale(1.1);
        }

        .site-footer .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 20px;
            margin-top: 30px;
        }

        .site-footer .sub-footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .site-footer .sub-footer-links a:hover {
            color: #ffffff;
        }

        .site-footer .copyright-text {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.8rem;
        }
        
        /* Responsive adjustments for the footer */
        @media (max-width: 768px) {
            .site-footer {
                padding-top: 120px;
                text-align: center;
            }
            .site-footer .footer-col {
                margin-bottom: 30px;
            }
            /* Center the store buttons on mobile */
            .site-footer .app-store-buttons {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
             .site-footer .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .site-footer .sub-footer-links {
                margin-bottom: 1rem;
            }
             .site-footer .sub-footer-links a {
                display: block;
                margin-bottom: 0.5rem;
            }
        }




/* Custom table css */


.custom-table {
  width: 100%;
  margin-bottom: 10px;
  table-layout: fixed;
}
.custom-table td {
  text-align: center;
  padding: 10px;
  border: 1px solid #dee2e6;
  vertical-align: middle;
}
.bg-dark-blue {
  background-color: #1a3365;
  color: white;
}
.bg-light-blue {
  background-color: #b8e2f2;
}
.icon-container {
  text-align: center;
  padding: 10px 0;
}
.icon-container i {
  font-size: 1.5rem;
  color: #6c757d;
}
.header {
  text-align: center;
  margin-bottom: 30px;
}
.agent-builder-badge {
  background-color: #f0f2ff;
  color: #6366f1;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 10px;
}
.icon-box {
  border: 1px solid #dee2e6;
  border-radius: 5px;
  padding: 15px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.icon-box img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}
.sap-logo-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.sap-logo {
  max-width: 75px;
  height: auto;
}


/* Table like cta cards */
.pain-points-section {
  background-color: #f8f9fe;
  padding-bottom: 20px!important;

}

/* Background decoration elements */
/* .pain-points-section::before, .pain-points-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  opacity: 0.1;
}

.pain-points-section::before {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='80' fill='%23375de7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.pain-points-section::after {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -100px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='80' fill='%230cb754'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
} */

.vtgr-header-section {
  text-align: center;
  padding: 2rem 0;
}

.vtgr-personas-badge {
  display: inline-block;
    color: #4366FF;
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 0.5rem;
    border-radius: 5px;
    padding: 6px 13px;
    background-color: #D9E0FF;
    text-transform: uppercase;
}

.vtgr-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 2rem;
}

.vtgr-nav-tabs {
  border-bottom: 1px solid #dee2e6;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.vtgr-nav-item {
  margin-bottom: -1px;
}

.vtgr-nav-link {
  color: #555;
  font-weight: 500;
  padding: 1rem 1.5rem;
  border: none;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  display: block;
  text-decoration: none;
}

.vtgr-nav-link.vtgr-active {
  color: #375de7;
  border-bottom: 3px solid #375de7;
  background-color: transparent;
}

.vtgr-persona-card {
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 2rem;
}

.vtgr-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.vtgr-g-0 {
  margin-right: 0;
  margin-left: 0;
}

.vtgr-g-0 > .vtgr-col,
.vtgr-g-0 > [class*="vtgr-col-"] {
  padding-right: 0;
  padding-left: 0;
}

.vtgr-col-md-4 {
  position: relative;
  width: 100%;
}

.vtgr-col-md-6 {
  position: relative;
  width: 100%;
}

.vtgr-col-md-8 {
  position: relative;
  width: 100%;
}

@media (min-width: 768px) {
  .vtgr-col-md-4 {
      flex: 0 0 33.333333%;
      max-width: 33.333333%;
  }
  
  .vtgr-col-md-6 {
      flex: 0 0 50%;
      max-width: 50%;
  }
  
  .vtgr-col-md-8 {
      flex: 0 0 66.666667%;
      max-width: 66.666667%;
  }
}

.semi-bold {
  font-weight: 600;
}

.vtgr-persona-header {
  color: #375de7;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1rem 0;
}

/* Table-like structure styling */
.vtgr-content-table {
  display: table;
  width: 100%;
  height: 100%;
}

.vtgr-table-row {
  display: table-row;
}

.vtgr-pain-points, .vtgr-vtiger-solutions {
  display: table-cell;
  padding: 1.5rem;
  vertical-align: top;
  width: 50%;
}

.vtgr-pain-points {
  border-right: 1px solid #e9ecef;
  background-color: #fcfcff;
}

.vtgr-vtiger-solutions {
  background-color: #fcfffc;
}

.vtgr-pain-point-title {
  color: #375de7;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.vtgr-solution-title {
  color: #0cb754;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.vtgr-point-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.vtgr-point-icon {
  min-width: 24px;
  color: #375de7;
  margin-right: 0.8rem;
  padding-top:3px!important;
}

.vtgr-solution-icon {
  min-width: 24px;
  color: #0cb754;
  margin-right: 0.8rem;
}

.vtgr-persona-image-container {
  background-color: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1rem;
}

.vtgr-persona-image {
  max-width: 100%;
  height: auto;
}

.vtgr-persona-label {
  background-color: #375de7;
  color: white;
  text-align: center;
  padding: 1rem;
  font-weight: 500;
}

.vtgr-tab-pane {
  display: none;
}

.vtgr-tab-pane.vtgr-active {
  display: block;
}

.vtgr-container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  z-index: 1;
}

@media (min-width: 576px) {
  .vtgr-container {
      max-width: 540px;
  }
}

@media (min-width: 768px) {
  .vtgr-container {
      max-width: 720px;
  }
}

@media (min-width: 992px) {
  .vtgr-container {
      max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .vtgr-container {
      max-width: 1140px;
  }
}

.vtgr-tab-content {
  width: 100%;
}

/* Responsive table for mobile */
@media (max-width: 767px) {
  .vtgr-content-table,
  .vtgr-table-row,
  .vtgr-pain-points,
  .vtgr-vtiger-solutions {
      display: block;
      width: 100%;
  }
  
  .vtgr-pain-points {
      border-right: none;
      border-bottom: 1px solid #e9ecef;
  }
}

p{
  color: #333!important;
  font-size: 16px!important;
}




/* New hero section changed code */

       .vtiger-hero-section {
            padding: 10rem 0 6rem 0;
            background-color: #f0f4ff;
        }

        /*
        * Typography (Scoped)
        */
        .vtiger-hero-section h1 {
            font-weight: 700;

            font-size: 44px;
            line-height: 1.2;
            color: #333;
        }

        /* .vtiger-hero-section p {
            font-size: 1.125rem;
        } */

        /*
        * Form Styling (Scoped)
        */
        .vtiger-hero-section .form-wrapper {
            position: relative;
        }

        .vtiger-hero-section .form-wrapper .form-control {
            height: 4rem;
            padding-right: 11rem;
            border-radius: 0.75rem;
        }
        
        .vtiger-hero-section .form-wrapper .btn {
            position: absolute;
            top: 50%;
            right: 0.5rem;
            transform: translateY(-50%);
            border-radius: 0.5rem;
            white-space: nowrap;
        }

        .vtiger-hero-section .form-note {
            font-size: 0.875rem;
            color: #6c757d;
        }

        /*
        * Reusable Gradient Border Class (Scoped)
        */
        .vtiger-hero-section .hero-section-gradient-border-wrapper {
            position: relative; 
            padding: 10px;
            /* UPDATED: Gradient now uses the exact colors and angle to match the Figma specs and your description. */
            background: linear-gradient(45deg, #7B94FF 0%, #97E1C8 50%, #7B94FF 100%);
            border-radius: 1rem;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        }

        /*
        * Glassy Bulge Overlay
        */
        .vtiger-hero-section .glassy-bulge-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 1rem;
            box-shadow: inset 0 3px 5px 0 rgba(255, 255, 255, 0.5), 
                        inset 0 -3px 5px 0 rgba(0, 0, 0, 0.15);
            pointer-events: none;
        }

        /*
        * Video Player Specific Styling (Scoped)
        */
        .vtiger-hero-section .video-player-container {
            position: relative;
            background-color: #fff;
            border-radius: calc(1rem - 10px);
            overflow: hidden;
            aspect-ratio: 16 / 9;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .vtiger-hero-section .video-thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.3s ease;
        }
        
        .vtiger-hero-section .play-icon {
            position: absolute;
            font-size: 5rem;
            color: rgba(255, 255, 255, 0.9);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
            transition: transform 0.2s ease, opacity 0.3s ease;
            pointer-events: none;
        }

        .vtiger-hero-section .video-player-container:hover .play-icon {
            transform: scale(1.1);
        }
        
        .vtiger-hero-section .video-iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.5s ease;
        }

        .vtiger-hero-section .video-player-container.playing .video-thumbnail,
        .vtiger-hero-section .video-player-container.playing .play-icon {
            opacity: 0;
            pointer-events: none;
        }

        .vtiger-hero-section .video-player-container.playing .video-iframe {
            opacity: 1;
            pointer-events: auto;
        }

        @media (max-width: 767.98px) {
            .vtiger-hero-section {
                padding: 3rem 0;
                text-align: center;
            }

            .vtiger-hero-section h1 {
                font-size: 2.5rem;
            }
            
            .vtiger-hero-section .form-wrapper .form-control {
                padding-right: 10rem;
            }
        }

/* End of new hero section */

h2{
  font-weight: 600!important;
  font-size: 36px!important;
}



/* Pain POint section css styling */

/* ----------------------------------- */
/* --- Pain Points Section Styling --- */
/* ----------------------------------- */

.pps-component {
    padding: 80px 0;
    font-family: 'Nunito', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.pps-subtitle {
    display: inline-block;
    color: #4366FF;
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 0.5rem;
    border-radius: 5px;
    padding: 6px 13px;
    background-color: #D9E0FF;
    text-transform: uppercase;
}

.pps-main-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
}

/* --- Tab Navigation & Gradient Border --- */
.pps-tabs-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.pps-tab-btn {
    background: none;
    border: none;
    color: #6c757d;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 24px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    flex-grow: 1; 
    text-align: center;
}

/* Faint gradient line under every button */
.pps-tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #7B94FF, #97E1C8);
    opacity: 0.4;
    transition: opacity 0.3s, height 0.3s;
}

.pps-tab-btn:hover {
    color: #0d6efd;
}

/* Vibrant and thicker line for the active button */
.pps-tab-btn.pps-active {
    color: #0d6efd;
    font-weight: 600;
}

.pps-tab-btn.pps-active::after {
    height: 3px;
    opacity: 1;
}

/* --- Tab Content Panes --- */
.pps-content-pane {
    display: none;
}

.pps-content-pane.pps-active {
    display: block;
}

.pps-points-title,
.pps-solutions-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
}

.pps-points-title {
    color: #0d6efd;
}

.pps-solutions-title {
    color: #198754;
}

.pps-list {
    list-style: none;
    padding-left: 0;
}

.pps-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.6;
}

.pps-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #0d6efd; /* Default to blue */
}

.pps-solutions-list li::before {
    border-color: #198754; /* Override for solutions list */
}

.pps-persona-image-wrapper {
    background-color: #e0f2f1;
    border-radius: 50%;
    width: 320px;
    height: 320px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pps-persona-image {
    width: 90%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    position: relative;
    bottom: -10px;
}

/* End of pain point section */




/* Section below hero section features tab section */

/* --------------------------------------------------- */
/* --- Self-Contained Features & Solutions Section --- */
/* --------------------------------------------------- */


/* --- 1. Main Component Wrapper & Typography --- */
.fts-component {
    font-family: 'Nunito', sans-serif;
    padding: 60px 0;
    background-color: #fff;
    color: #333;
    overflow: hidden; /* Prevents horizontal scroll on small screens */
}

.fts-header {
    text-align: center;
    margin-bottom: 40px;
}

.fts-subtitle {
    display: inline-block;
    color: #4366FF;
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 0.5rem;
    border-radius: 5px;
    padding: 6px 13px;
    background-color: #D9E0FF;
    text-transform: uppercase;
}

.fts-main-title {
    font-weight: 600;
    font-size: 36px;
    color: #333;
}

/* --- 2. Tab Navigation & Border Logic --- */
.fts-tabs-nav {
    display: flex;
    justify-content: space-around;
    margin-bottom: 50px;
    /* The container no longer needs a border */
}

.fts-tab-btn {
    background: none;
    border: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    padding: 1rem;
    cursor: pointer;
    position: relative; /* Each button is a container for its own line */
    transition: color 0.3s ease;
    flex-grow: 1; 
    text-align: center;
}

/* This creates the FAINT gradient line under EVERY button */
.fts-tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0; /* Use left/right instead of width for flex items */
    height: 2px;
    background: linear-gradient(to right, #7B94FF, #97E1C8);
    opacity: 0.4; /* This makes the gradient faint */
    transition: opacity 0.3s, height 0.3s; /* Adds a smooth transition */
}

.fts-tab-btn:hover {
    color: #4366FF;
}

/* This makes the active button's line VIBRANT and THICKER */
.fts-tab-btn.fts-active {
    color: #4366FF;
    font-weight: 600;
}

.fts-tab-btn.fts-active::after {
    height: 3px;
    opacity: 1;
}

/* --- 3. Tab Content Panes --- */
.fts-content-pane {
    display: none; /* Hide all panes by default */
    align-items: center;
}

.fts-content-pane.fts-active {
    display: flex; /* Show the active one */
}

.fts-content-text-wrapper {
    padding-right: 3rem;
}

.fts-content-category {
    color: #4366FF!important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px!important;
    margin-bottom: 1rem;
}

.fts-content-title {
    font-size: 32px!important;
    font-weight: 600;
    color: #333!important;
    margin-bottom: 1.5rem;
}

.fts-content-description {
    color: #333!important;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 16px!important;
    font-weight: 400!important;
}

.fts-content-link {
  color: #4366FF;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.fts-content-link:hover {
    text-decoration: underline;
}

.fts-image-wrapper {
    max-width: 500px;
}

.fts-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

/* --- 4. Responsive Adjustments --- */
@media (max-width: 991.98px) {
    .fts-content-pane {
        flex-direction: column;
        text-align: center;
    }
    .fts-content-text-wrapper {
        padding-right: 0;
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .fts-tabs-nav {
        flex-wrap: wrap; /* Allow tabs to wrap on mobile */
    }
    .fts-tab-btn {
        flex-basis: 50%; /* Two tabs per row */
        font-size: 16px;
    }
    .fts-main-title {
        font-size: 28px;
    }
    .fts-content-title {
        font-size: 2rem;
    }
}


/* end of features tab section */




/* New navbar styling */


.vt-scoped-navbar .navbar-main {
    background-color: #fff; /* Solid white background by default */
    transition: background-color 0.3s ease-in-out;
}

.vt-scoped-navbar .navbar-wrapper {
    background-color: transparent; /* Inner box is transparent by default */
    box-shadow: none!important; /* No shadow by default */
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}


/* --- Sticky State (On Scroll) --- */
/* This defines the main sticky container properties */
.navbar-sticky {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1050;
    /* On scroll, the main nav element becomes transparent... */
    background-color: transparent !important;
}

/* ...and the inner container gets its white background and shadow back, making it "float". */
.navbar-sticky .navbar-wrapper {
    background-color: #fff !important;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1) !important;
}

.vt-scoped-navbar .navbar-brand img {
    max-height: 36px;
    width: 150px;
}

.vt-scoped-navbar .navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 600;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.vt-scoped-navbar .navbar-nav .nav-link:hover {
    color: #335eea;
}

.vt-scoped-navbar .tour-dot {
    width: 9px;
    height: 9px;
    display: inline-block;
    border-radius: 50%;
    background: linear-gradient(90deg, #335eea 0, #f02e2e 100%);
    margin-left: 6px;
}


/* Enhanced Dropdown Styling */
.vt-scoped-navbar .dropdown-menu {
    border-radius: 0.5rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
    padding: 0.5rem 0;
    min-width: 220px;
}

.vt-scoped-navbar .dropdown-item {
    padding: 0.75rem 1.5rem;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.vt-scoped-navbar .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #335eea;
    
    transform: translateX(2px);
}

.vt-scoped-navbar .dropdown-item:focus {
    background-color: #f8f9fa;
    color: #335eea;
}
.vt-scoped-navbar .mega-menu-content .dropdown-item{
  padding-top: 7px!important;
  padding-bottom: 7px!important;
  margin-left: 8px!important;
}

/* .vt-scoped-navbar .dropdown-submenu .dropdown-item {
    padding-left: 2rem;
    font-size: 14px;
    position: relative;
    color: #333!important;
} */

.dropdown-submenu .dropdown-menu .dropdown-item{
  color: #506690 !important;
  padding-top: 7px!important;
  padding-bottom: 7px!important;
}

/* .vt-scoped-navbar .dropdown-submenu .dropdown-item::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: #dee2e6;
    border-radius: 50%;
} */
 .nav-link.dropdown-toggle{
  color: #333!important;
  font-weight: 500!important;
 }

 .vt-scoped-navbar a.nav-link{
  color: #333!important;
  font-weight: 500!important;
 }

.vt-scoped-navbar .dropdown-submenu .dropdown-item:hover::before {
    background-color: #335eea;
}

.vt-scoped-navbar .dropdown-divider {
    margin: 0.5rem 0;
    border-top: 1px solid #e9ecef;
}

/* Category Headers */
.vt-scoped-navbar .dropdown-menu h6 {
    color: #6c757d;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    padding: 0.5rem 1.5rem 0.25rem;
}

/* Search Popup */
.vt-scoped-navbar .search-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.vt-scoped-navbar .search-popup .search-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 0.75rem;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.2);
}

.vt-scoped-navbar .search-popup .btn-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

/* Action Buttons */
.vt-scoped-navbar .vt-action-buttons .btn {
    font-size: 14px;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.vt-scoped-navbar .vt-action-buttons .btn-primary {
    background: linear-gradient(135deg, #335eea 0%, #4f46e5 100%);
    border: none;
    box-shadow: 0 2px 4px rgba(51, 94, 234, 0.3);
}

.vt-scoped-navbar .vt-action-buttons .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(51, 94, 234, 0.4);
}

/* Desktop Styles */
@media (min-width: 992px) {
    .vt-scoped-navbar .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0; 
        animation: fadeInUp 0.3s ease;
    }

    .vt-scoped-navbar .dropdown-submenu {
        position: relative;
    }

    .vt-scoped-navbar .dropdown-submenu .dropdown-menu {
        top: -0.5rem;
        left: 100%;
        margin-left: 0.1rem;
        animation: fadeInRight 0.3s ease;
    }

    .vt-scoped-navbar .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }
    
    /* .vt-scoped-navbar .dropdown-submenu > a::after {
        display: inline-block;
        font-family: 'bootstrap-icons';
        font-weight: 900;
        content: "\f285"; 
        border: none;
        vertical-align: middle;
        margin-left: .5em;
        font-size: 0.7em;
        transition: transform 0.3s ease;
    } */

    /* .vt-scoped-navbar .dropdown-submenu:hover > a::after {
        transform: translateX(2px);
    } */

    .vt-scoped-navbar .solutions-mega-menu {
        width: 600px;
        left: 50%;
        transform: translateX(-50%);
    }

    .vt-scoped-navbar .resources-mega-menu {
        width: 400px;
    }

    .vt-scoped-navbar .mega-menu .mega-menu-content {
        padding: 1.5rem;
    }

    .vt-scoped-navbar .vt-action-buttons {
        margin-left: 2rem;
    }
}
.vt-scoped-navbar .navbar-brand {
    margin-right: auto; /* Push brand to left */
}

.vt-scoped-navbar .navbar-toggler {
    margin-left: auto; /* Push toggler to right */
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
    .vt-scoped-navbar .navbar-brand img {
        max-height: 32px;
        width: 110px;
    }

    .vt-scoped-navbar .navbar-nav .nav-link {
        font-size: 14px;
        padding-top: 0.6rem;
        padding-bottom: 0.6rem;
    }

    .vt-scoped-navbar .vt-action-buttons {
        margin-left: 1rem;
    }

    .vt-scoped-navbar .vt-action-buttons .btn {
        font-size: 13px;
        padding: 0.4rem 0.8rem;
    }
}

/* Mobile Styles */
body.vt-mobile-menu-open {
    overflow: hidden;
}

@media (max-width: 767.98px) {
    .vt-scoped-navbar .navbar-brand img {
        max-height: 28px;
        width: 90px;
    }

    .vt-scoped-navbar .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: #fff;
        z-index: 1040;
        overflow-y: auto;
        padding: 80px 1.5rem 1.5rem;
        display: block !important;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .vt-scoped-navbar .navbar-collapse.show {
        transform: translateX(0);
    }
    
    .vt-scoped-navbar .navbar-toggler {
        z-index: 1045;
        border: none;
        padding: 0.25rem 0.5rem;
    }

    .vt-scoped-navbar .navbar-nav .nav-link {
        font-size: 16px;
        font-weight: 500;
        padding: 1rem 0;
    }

    .vt-scoped-navbar .dropdown-menu {
        border: none;
        box-shadow: none;
        background-color: #f8f9fa;
        padding: 0;
        margin: 0.5rem 0;
        border-radius: 0.5rem;
        display: none;
    }

    .vt-scoped-navbar .dropdown-menu.show {
        display: block;
    }

    .vt-scoped-navbar .dropdown-item {
            display: block;
            width: 100%;
            padding: .25rem 1.5rem;
            clear: both;
            font-weight: 500;
            color: #2b354f;
            text-align: inherit;
            white-space: nowrap;
            background-color: transparent;
            border: 0;
            font-size: 0.85rem!important;
    }

    .vt-scoped-navbar .dropdown-item:last-child {
        border-bottom: none;
    }

    .vt-scoped-navbar .dropdown-item:hover {
        background-color: #fff;
        transform: none;
        color: #007bff !important;
    }

    .vt-scoped-navbar .dropdown-submenu .dropdown-item {
        display: block;
            width: 100%;
            padding: .25rem 1.5rem;
            clear: both;
            font-weight: 400;
            color: #2b354f;
            text-align: inherit;
            white-space: nowrap;
            background-color: transparent;
            border: 0;
            font-size: 0.85rem!important;
    }
    .vt-scoped-navbar .dropdown-submenu .dropdown-item:hover{
      background-color: #fff;
        transform: none;
        color: #007bff !important;
    }

    .vt-scoped-navbar .dropdown-submenu .dropdown-menu {
        background-color: #fff;
        margin-left: 1rem;
        border-left: 2px solid #e9ecef;
    }
    
    .vt-scoped-navbar .dropdown-item.dropdown-toggle::after {
        border-top: .3em solid;
        border-right: .3em solid transparent;
        border-bottom: 0;
        border-left: .3em solid transparent;
        vertical-align: middle;
        margin-left: auto;
        transition: transform 0.3s ease;
    }

    .vt-scoped-navbar .dropdown-submenu .dropdown-item::after{
      content: none!important;
    }

    .vt-scoped-navbar .dropdown-item.dropdown-toggle.expanded::after {
        transform: rotate(180deg);
    }

    .vt-scoped-navbar .nav-item {
        border-bottom: 1px solid #e9ecef;
    }

    .vt-scoped-navbar .nav-item:last-child {
        border-bottom: none;
    }

    .vt-scoped-navbar .navbar-nav .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
    }
    

    .vt-scoped-navbar .mega-menu .mega-menu-content {
        padding: 1rem;
    }

    .vt-scoped-navbar .mega-menu .mega-menu-content .row > div {
        margin-bottom: 1rem;
    }

    .vt-scoped-navbar .search-popup .search-content {
        padding: 1.5rem;
        width: 95%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Extra Small Devices */
@media (max-width: 575.98px) {
    .vt-scoped-navbar .navbar-brand img {
        max-height: 24px;
        width: 90px;
    }

    .vt-scoped-navbar .navbar-collapse {
        padding: 70px 1rem 1rem;
    }

    .vt-scoped-navbar .navbar-nav .nav-link {
        font-size: 15px;
        padding-top: 0.875rem;
        padding-bottom: 0.875rem;
    }

    .vt-scoped-navbar .dropdown-item {
        padding: 0.625rem 0.875rem;
        font-size: 14px;
    }

    .vt-scoped-navbar .dropdown-submenu .dropdown-item {
        padding-left: 1.5rem;
        font-size: 13px;
    }

    .vt-scoped-navbar .search-popup .search-content {
        padding: 1rem;
        width: 98%;
    }
}

/* Large Screens */
@media (min-width: 1200px) {
    .vt-scoped-navbar .navbar-brand img {
        max-height: 40px;
        width: 120px;
    }

    .vt-scoped-navbar .navbar-nav .nav-link {
        font-size: 16px;
        padding-top: 0.875rem;
        padding-bottom: 1.25rem;
    }

    .vt-scoped-navbar .vt-action-buttons {
        margin-left: 4rem;
    }

    .vt-scoped-navbar .solutions-mega-menu {
        width: 700px;
    }

    .vt-scoped-navbar .resources-mega-menu {
        width: 450px;
    }
}

.dropdown-menu.mega-menu.solutions-mega-menu .dropdown-item{
  color: #506690 !important;
}
.dropdown-menu.mega-menu.solutions-mega-menu h6{
  color: #333 !important;
  font-weight: bold!important;
}
.dropdown-menu.mega-menu.resources-mega-menu .dropdown-item{
  color: #506690 !important;
}
.dropdown-menu.mega-menu.resources-mega-menu h6{
  color: #333 !important;
  font-weight: bold!important;
}


/* Extra Large Screens */
@media (min-width: 1400px) {
    .vt-scoped-navbar .navbar-brand img {
        max-height: 42px;
        width: 130px;
    }

    .vt-scoped-navbar .solutions-mega-menu {
        width: 800px;
    }

    .vt-scoped-navbar .resources-mega-menu {
        width: 500px;
    }
}
/* end of new navbar styling */





.custom-form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}



/* Common use css */

.gradient-border-wrapper {
            position: relative; 
            padding: 10px;
            /* UPDATED: Gradient now uses the exact colors and angle to match the Figma specs and your description. */
            background: linear-gradient(45deg, #7B94FF 0%, #97E1C8 50%, #7B94FF 100%);
            border-radius: 1rem;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        }

        /*
        * Glassy Bulge Overlay
        */
        .glassy-bulge-overlay {
            position: relative;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 1rem;
            box-shadow: inset 0 3px 5px 0 rgba(255, 255, 255, 0.5), 
                        inset 0 -3px 5px 0 rgba(0, 0, 0, 0.15);
            pointer-events: none;
        }
/* End commom use css */