 :root {
  --hover-color: #ebebeb;
  --border-color: #d0d0d0;
  --primary-color: #05158a;
  --secondary-color:#5858ac;
  --bg-dark: #1d233a;
     --primary-opacity-color:#05158a6e;
}

a{
  color: var(--primary-color);
}

      .a-fc-81 {
        color: #818181;
      }
      .left-arrow img,
      .right-arrow img {
        width: 40%;
      }
      .half-border-right {
        position: relative;
        padding: 0; /* Adds spacing inside */
      }

      .half-border-right::after {
        content: "";
        position: absolute;
        right: 0; /* Align to the right */
        top: 0; /* Start from the top */
        height: 100%; /* Covers only the top half */
        width: 0.5px; /* Border width */
        background-color: #dedede; /* Border color */
      }

      #search-suggestions {
        position: absolute;
        width: 93%;
        max-height: 430px;
        overflow-y: auto;
        z-index: 1;
        background: white;
        border: 1px solid #ddd;
        border-radius: 0 0 4px 4px;
        display: none;
        top: 41px;
        left: 17px;
      }

      .search-suggestion-item {
        padding: 10px 15px;
        cursor: pointer;
        border-bottom: 1px solid #eee;
      }

      .search-suggestion-item:hover {
        background-color: #f5f5f5;
      }
      .search-suggestion-item {
        padding: 10px 15px;
        cursor: pointer;
        border-bottom: 1px solid #eee;
        transition: background-color 0.2s;
        display: flex;
        align-items: center;
      }

      .search-suggestion-item:hover {
        background-color: #f5f5f5;
      }

      .search-suggestion-item img {
        border-radius: 50%;
        object-fit: cover;
        margin-right: 12px;
        width: 40px;
        height: 40px;
      }

      .search-suggestion-item .speaker-info {
        flex: 1;
      }
      .search-container {
        position: relative;
      }
      /* Search container */
      .search-container {
        position: relative;
        width: 100%;
        max-width: 640px;
      }

      /* Search input with icon */
      .search-input-with-icon {
        width: 100%;
        padding: 10px 20px 10px 50px; /* Extra left padding for icon */
        font-size: 15px;
        font-family: "Source Sans 3";
        border: 1px solid #ddd;
        border-radius: 25px; /* Rounded corners */
        outline: none;
        transition: all 0.3s ease;
        height: 38px;
      }

      .search-input-with-icon:focus {
        color: #212529;
        background-color: #fff;
        border-color: #86b7fe;
        outline: 0;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
      }

      /* Search icon */
      .search-icon {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: #495057; /* Icon color */
        pointer-events: none; /* Allows clicking through to input */
      }
      .search-suggestion-item img {
        width: 40px;
        height: 40px;
        object-fit: cover;
        border-radius: 50%;
      }

      /* Ensure text doesn't overflow */
      .text-truncate {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }
      .top-header {
        color: #414141;
        font-size: 32px;
        font-weight: 900;
        line-height: 34px;
        font-family: "Red Hat Display", sans-serif;
      }
      .top-header-home {
        font-size: 46px;
        font-weight: 400;
        font-family: "Red Hat Display", sans-serif;
        color: white;
      }
      .top-header-p {
        color: #414141;
      }
      .btn {
        font-size: 0.9em;
      }
      p {
        margin-bottom: 0;
      }

      body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
      }

      .header-wraper {
        border-bottom: 1px solid #f5f5f5;
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 111;
      }

      .header {
        background: white;
        /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
        z-index: 1000;
        height: 4rem;
        /* max-width: 1440px; */
        margin: auto;
      }
      
      .nav-container {
        height: 100%;
        display: flex;
        align-items: center;
        padding: 0 5.5rem;
        justify-content: space-between;
      }

      .logo {
        font-size: 1.5rem;
        font-weight: 500;
        color: #000;
        text-decoration: none;
        margin-right: 15px;
      }

      .nav-menu {
        display: flex;
        list-style: none;
        height: 100%;
      }

      .nav-item {
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
      }

      .nav-link {
        color: var(--bg-dark);
        text-decoration: none;
        font-weight: 500;
        padding: 0 1rem;
        display: flex;
        align-items: center;
        gap: 0.3rem;
        transition: all 0.1s;
        position: relative;
        font-size: 14px;
        height: 100%;
      }

      .header-wraper .nav-link::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--primary-color);
        transform: scaleX(0);
        transition: transform 0.1s;
      }

      .nav-link:hover {
        color: var(--primary-color);
        background-color: #fafafa;
      }
      .nav-link.active {
        color: var(--secondary-color);
        background-color: #fafafa;
      }

      .nav-link:hover::after,
      .nav-link.active::after {
        transform: scaleX(1);
      }

      /* .nav-link {
            color: #000;
            text-decoration: none;
            font-weight: 500;
            padding: 0 1rem;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 14px;
            transition: color 0.1s;
			font-family: 'Adobe Clean', adobe-clean, 'Source Sans Pro', -apple-system, system-ui, 'Segoe UI', roboto, ubuntu, 'Trebuchet MS', 'Lucida Grande', sans-serif;
        }
		
        .nav-link:hover {
            color: #666;
        } */

      .arrow {
        border: solid #000;
        border-width: 0 2px 2px 0;
        display: inline-block;
        padding: 3px;
        transform: rotate(45deg);
        transition: transform 0.1s;
        margin-left: 10px;
      }

      .arrow-reverse {
        border: solid #000;
        border-width: 0 2px 2px 0;
        display: inline-block;
        padding: 3px;
        transform: rotate(-135deg);
        transition: transform 0.1s;
        margin-left: 10px;
      }

      .submenu {
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        min-width: 200px;
        box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.1s ease;
        background-color: #fafafa;
      }

      .nav-item:hover .submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .submenu-item {
        list-style: none;
      }

      .submenu-link {
        color: #000 !important;
        text-decoration: none !important;
        padding: 0.8rem 1rem;
        display: block;
        transition: background-color 0.1s;
        font-family: "Adobe Clean", adobe-clean, "Source Sans Pro",
          -apple-system, system-ui, "Segoe UI", roboto, ubuntu, "Trebuchet MS",
          "Lucida Grande", sans-serif;
        font-size: 14px;
      }

      .submenu-link:hover {
        background-color: #e6e6e6;
      }

      .mobile-toggle {
        /* display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            margin-left: auto; */

        display: none;
        background: none;
        border: none;
        cursor: pointer;
        /* padding: 0.5rem; */
        transition: all 0.1s;
        position: relative;
        width: 15px;
        height: 30px;
      }

      /* Three-line and close icon styles */
      .mobile-toggle .menu-icon,
      .mobile-toggle .menu-icon::before,
      .mobile-toggle .menu-icon::after {
        content: "";
        display: block;
        background: #000;
        height: 2px;
        width: 100%;
        transition: all 0.1s;
        position: absolute;
      }

      .mobile-toggle .menu-icon {
        top: 50%;
        transform: translateY(-50%);
      }

      .mobile-toggle .menu-icon::before {
        top: -6px;
      }

      .mobile-toggle .menu-icon::after {
        bottom: -6px;
      }

      /* Close icon animation */
      .mobile-toggle.active .menu-icon {
        background: transparent;
      }

      .mobile-toggle.active .menu-icon::before {
        top: 0;
        transform: rotate(45deg);
      }

      .mobile-toggle.active .menu-icon::after {
        bottom: 0;
        transform: rotate(-45deg);
      }

     .videoSection{
      background-color: var(--secondary-color);
     }
      /* Updated Footer Styles */
      .footer {
        background: #1D233A;
        margin-top: auto;
      }

      .footer-upper {
        padding: 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: auto;
      }

      .mailing-list {
        display: flex;
        align-items: center;
        gap: 1rem;
      }

      .footer-top-left-span {
        color: white;
        font-size: 14px;
        font-weight: 600;
        font-family: adobe-clean, Source Sans Pro, -apple-system,
          BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
      }

      .signup-button {
        background-color: transparent;
        border-color: #4b4b4b;
        align-items: center;
        border-radius: 16px;
        border-style: solid;
        border-width: 2px;
        box-sizing: border-box;
        cursor: pointer;
        display: flex;
        flex-shrink: 0;
        font-size: 14px;
        font-weight: 700;
        height: 32px;
        justify-content: center;
        line-height: 0;
        min-width: 72px;
        overflow: visible;
        padding: 0 14px !important;
        transition: background-color 0.13s ease-out, border-color 0.13s ease-out;
        white-space: nowrap;
        width: auto;
        color: #4b4b4b !important;
        font-family: adobe-clean, Source Sans Pro, -apple-system,
          BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
      }

      .signup-button:hover {
        background: #4b4b4b;
        color: #fff !important;
      }
      a:hover {
        text-decoration: none;
      }
      .blue-button {
        font-size: 14px;
        font-family: adobe-clean, Source Sans Pro, -apple-system,
          BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
        font-weight: 500;
        background-color: #0160e7;
        border-color: #0160e7;
        align-items: center;
        border-radius: 16px;
        border-style: solid;
        border-width: 2px;
        box-sizing: border-box;
        height: 30px;
        justify-content: center;
        line-height: 0;
        min-width: 72px;
        overflow: visible;
        padding: 0 15px !important;
        transition: background-color 0.13s ease-out, border-color 0.13s ease-out;
        white-space: nowrap;
        width: auto;
        color: #fff !important;
      }
      .blue-button:hover {
        background: rgb(39, 77, 234);
        border-color: rgb(39, 77, 234);
        color: #fff !important;
      }

      .blue-button-top {
        font-size: 14px;
        font-family: adobe-clean, Source Sans Pro, -apple-system,
          BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
        font-weight: 500;
        background-color: transparent;
        border-color: #0160e7;
        align-items: center;
        border-radius: 16px;
        border-style: solid;
        border-width: 2px;
        box-sizing: border-box;
        height: 30px;
        justify-content: center;
        line-height: 0;
        min-width: 72px;
        overflow: visible;
        padding: 0 15px !important;
        transition: background-color 0.13s ease-out, border-color 0.13s ease-out;
        white-space: nowrap;
        width: auto;
        color: #0160e7 !important;
      }
      .blue-button-top:hover {
        border-color: rgb(39, 77, 234);
        color: rgb(39, 77, 234) !important;
      }
      .gray-button {
        font-size: 14px;
        font-family: adobe-clean, Source Sans Pro, -apple-system,
          BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
        font-weight: 500;
        background-color: #101922;
        border-color: #101922;
        align-items: center;
        border-radius: 16px;
        border-style: solid;
        border-width: 2px;
        box-sizing: border-box;
        height: 30px;
        justify-content: center;
        line-height: 0;
        min-width: 72px;
        overflow: visible;
        padding: 0 15px !important;
        transition: background-color 0.13s ease-out, border-color 0.13s ease-out;
        white-space: nowrap;
        width: auto;
        color: #fff !important;
      }
      .gray-button:hover {
        background: #000;
        border-color: #000;
        color: #fff !important;
      }
      .gray-button-top {
        font-size: 14px;
        font-family: adobe-clean, Source Sans Pro, -apple-system,
          BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
        font-weight: 500;
        background-color: transparent;
        border-color: #101922;
        align-items: center;
        border-radius: 16px;
        border-style: solid;
        border-width: 2px;
        box-sizing: border-box;
        height: 30px;
        justify-content: center;
        line-height: 0;
        min-width: 72px;
        overflow: visible;
        padding: 0 15px !important;
        transition: background-color 0.13s ease-out, border-color 0.13s ease-out;
        white-space: nowrap;
        width: auto;
        color: #101922 !important;
      }
      .gray-button-top:hover {
        background: transparent;
        border-color: #000;
        color: #000 !important;
      }
      .ourbrand_cards_exploreevents {
        background-color: transparent;
        align-items: center;
        border-radius: 16px;
        border: 2px solid #fff;
        display: flex;
        font-size: 14px;
        font-weight: 700;
        height: 32px;
        justify-content: center;
        line-height: 0;
        min-width: 72px;
        overflow: visible;
        padding: 0 14px !important;
        transition: background-color 0.13s ease-out, border-color 0.13s ease-out;
        white-space: nowrap;
        width: auto;
        color: #fff !important;
        font-family: adobe-clean, Source Sans Pro, -apple-system,
          BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
      }

      .signup-button-blue {
        font-size: 16px;
        font-family: "Source Sans 3", sans-serif;
        background-color: #0160e7;
        border-color: #0160e7;
        align-items: center;
        border-radius: 16px;
        border-style: solid;
        border-width: 2px;
        box-sizing: border-box;
        height: 30px;
        justify-content: center;
        min-width: 72px;
        overflow: visible;
        padding: 0 15px !important;
        transition: background-color 0.13s ease-out, border-color 0.13s ease-out;
        white-space: nowrap;
        width: auto;
        color: #fff !important;
      }

      .signup-button-blue:hover {
        background: rgb(39, 77, 234);
        border-color: rgb(39, 77, 234);
        color: #fff !important;
      }

      .social-section {
        display: flex;
        align-items: center;
        gap: 1rem;
      }

      .social-icons {
        display: flex;
        gap: 1rem;
      }

      .social-icon {
        color: white;
        font-size: 1.2rem;
        transition: color 0.1s;
      }

      .social-icon:hover {
        color: var(--hover-color);
      }

      .footer-divider {
        height: 0.5px;
        background: #b3b3b3;
        margin: 0;
        max-width: 1440px;
        margin: auto;
      }

      .footer-lower {
        padding: 1.5rem 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 1440px;
        margin: auto;
      }

      .footer-lower .legal-links {
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }

      .legal-link {
        color: white;
        text-decoration: none;
        font-size: 11px;
        font-weight: 600;
        font-family: adobe-clean, Source Sans Pro, -apple-system,
          BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
      }

      .legal-link:hover {
        color: var(--hover-color);
      }

      .separator {
        font-size: 11px;
        font-weight: 400;
        font-family: adobe-clean, Source Sans Pro, -apple-system,
          BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
        color: white;
      }

      .copyright {
        color: white;
        font-size: 11px;
        font-weight: 600;
        font-family: adobe-clean, Source Sans Pro, -apple-system,
          BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
      }

      .legal-links {
        display: flex;
        gap: 0.5rem;
        align-items: center;
      }

     
      body.no-scroll {
        overflow: hidden;
      }
      .background-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
      }

      .background-overlay.active {
        opacity: 1;
        visibility: visible;
      }
      /* Drawer container */
      .drawer {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100%;
        background-color: #fff;
        transition: right 0.3s ease;
        z-index: 1000;
        border-left: 1px solid rgba(0, 0, 0, 0.175);
        max-width: 100%;
        overflow-y: auto;
         transition: all 1s;
      }

      /* Drawer active state */
      .drawer.open {
        right: 0;
        transition: all 0.5s;
      }

      /* Close button */
      .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background: none;
        font-size: 20px;
        cursor: pointer;
        width: 24px;
        height: 24px;
        border: 1px solid #767676;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
        appearance: initial;
        color: #767676;
            
      }

      /* Drawer content */
      .drawer-header {
        padding: 30px 0;
      }

      .drawer-content {
        /* padding: 15px 80px 80px 80px; */
        padding: 30px;
      }

      .drawer-content img {
    width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
      }

  

      .drawer-content h2 {
        font-size: 28px;
        font-weight: 500;
        margin-bottom: 6px;
        font-family: "Red Hat Display", sans-serif;
      }

      .drawer-content span {
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 0;
        font-family: "Source Sans 3", sans-serif;
      }

      .drawer-speaker-bio {
        margin: 28px 0px 0px 0px;
        font-size: 14px;
        font-weight: 400;
        line-height: 17.53px;
        font-family: "Source Sans 3", sans-serif;
      }

      .drawer-speaker-bio p {
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 0;
        font-family: "Source Sans 3", sans-serif;
      }

      .speaker-sessions-wrapper {
        margin-top: 40px;
        padding-top: 32px;
        border-top: 1px solid #eaeaea;
      }

      .speaker-sessions {
      }

      .speaker-sessions a {
        display: block;
        font-size: 16px;
        font-weight: 700;
        line-height: 20.03px;
        margin-bottom: 32px;
        font-family: "Red Hat Display", sans-serif;
      }

      .sr-only {
        position: absolute;
        left: -10000px;
        top: auto;
        width: 1px;
        height: 1px;
        overflow: hidden;
      }

      /* Trigger button */
      .trigger-btn {
        display: block;
        margin: 50px auto;
        background-color: #007bff;
        color: white;
        border: none;
        border-radius: 50%;
        width: 80px;
        height: 80px;
        overflow: hidden;
        cursor: pointer;
      }

      .trigger-btn img {
        width: 100%;
        height: 100%;
      }

      .offcanvas-close-icon {
        width: 16px;
        top: -6px;
        left: 3px;
        position: absolute;
      }

    

      .hidden {
        display: none !important;
      }

      .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 1000;
      }
      button {
        cursor: pointer;
      }
      .overlay.visible {
        opacity: 1;
        pointer-events: auto;
      }

      /* .popup {
		background: white;
		padding: 20px;
		width: 100%;
		max-width: 523px;
		box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
		position: relative;
		color: #fff;
		margin: 0;
		padding-left: 64px;
		padding-right: 64px;
		padding-bottom: 54px;
	} */

      .popup {
        background: white;
        padding: 10px;
        width: 100%;
        max-width: 523px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        position: relative;
        color: #fff;
        margin: 0;
        padding-left: 64px;
        padding-right: 64px;
        padding-bottom: 20px;
        transform: translateY(-20px);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
      }

      .overlay.visible .popup {
        transform: translateY(0);
        opacity: 1;
      }

      .popup h1 {
        font-size: 24px;
        margin-bottom: 36px;
        color: #e23a33;
      }

      .popup h2 {
        color: #2c2c2c;
        font-size: 32px;
        font-weight: 900;
        line-height: 36px;
        margin-bottom: 22px;
        font-family: "Red Hat Display", sans-serif;
      }

      .popup p {
        color: #2c2c2c;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        margin-bottom: 22px;
        font-family: "Source Sans 3", sans-serif;
      }

      .popup form {
        margin-bottom: 10px;
      }

      /* .popup input[type="email"] {
		width: 100%;
		padding: 10px;
		margin-bottom: 11px;
		border: 1px solid #ccc;
		border-radius: 4px;
	} */

      .signup-btn {
        background-color: #00175f;
        color: white;
        border: 2px solid #00175f;
        padding: 10px 20px;
        border-radius: 4px;
        cursor: pointer;
        position: relative;
        font-weight: 700;
        text-decoration: none;
        line-height: 1;
        padding: 9px 18px 11px 18px;
        border-radius: 20px;
        transition: all 0.3s ease-in-out;
        display: inline-block;
      }

      /* .signup-btn:hover {
		background-color: #005fa3;
	} */

      .small-text {
        font-size: 10px !important;
        font-weight: 400 !important;
        line-height: 16px !important;
        margin-bottom: 22px !important;
        color: #000 !important;
        font-family: "Source Sans 3", sans-serif !important;
        margin: 30px 0 0 0;
      }

      .small-text a {
        text-decoration: none;
      }

      .badge-cover-red {
        display: -webkit-box;
        display: -webkit-inline;
        display: -ms-flexbox;
        display: inline;
        background-color: #ff1e3920;
        height: -webkit-min-content;
        height: -moz-min-content;
        height: min-content;
        border-radius: 200px;
        -webkit-padding-start: 6px;
        padding-inline-start: 6px;
        -webkit-padding-end: 6px;
        padding-inline-end: 6px;
        padding-top: 2px;
        padding-bottom: 4px;
        -webkit-margin-start: 4px;
        margin-inline-start: 4px;
      }

      .badge-cover-green {
        display: -webkit-box;
        display: -webkit-inline;
        display: -ms-flexbox;
        display: inline;
        background-color: #00c27820;
        height: -webkit-min-content;
        height: -moz-min-content;
        height: min-content;
        border-radius: 200px;
        -webkit-padding-start: 6px;
        padding-inline-start: 6px;
        -webkit-padding-end: 6px;
        padding-inline-end: 6px;
        padding-top: 2px;
        padding-bottom: 4px;
        -webkit-margin-start: 4px;
        margin-inline-start: 4px;
      }

      .badge-red {
        font-size: 12px;
        line-height: 145%;
        letter-spacing: 0;
        font-weight: 400;
        color: #ff1e39;
      }

      .badge-green {
        font-size: 12px;
        line-height: 145%;
        letter-spacing: 0;
        font-weight: 400;
        color: #00c278;
      }
      /* Mega Menu Specific Styles */
      .mega-menu {
        display: none;
        position: absolute;
        left: 68%;
        transform: translateX(-50%);
        width: 100vw;
        background: white;
        box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
        padding: 20px;
        z-index: 1000;
        max-width: 1440px;
      }

      /* Calculate negative margin to offset container padding if any */
      .mega-menu::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        background: white;
        z-index: -1;
      }

      .nav-item:hover .mega-menu {
        display: block;
      }

      .mega-menu-row {
        max-width: 1200px; /* Or your site's max-width */
        margin: 0 auto;
        display: flex;
        width: 100%;
        gap: 20px;
      }

      .mega-menu-column {
        flex: 1;
        padding: 10px;
      }

      .news-category {
        border-bottom: 1px solid #e1e1e1;
        color: #505050;
        font-weight: 600;
        white-space: nowrap;
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 12px;
        padding: 12px 0;
      }

      .news-list {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .news-item {
        padding: 5px 0;
      }

      .news-link {
        text-decoration: none !important;
        color: #292929;
        white-space: nowrap;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.4;
      }

      .news-link:hover {
        color: #333;
      }

      .mega-menu-image {
        width: 100%;
        height: 270px;
        object-fit: cover;
        margin-bottom: 10px;
      }

    

      /****** About Page CSS *******/
      .about-section-1 {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        padding: 30px;
        background-color: #fff;
      }
      .animationbox_text {
        height: 160px;
        max-width: 160px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        padding: 14px;
        width: 100%;
      }
      .animationText-box {
        color: #fff;
        background: rgb(1 96 231);
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;
        text-align: center;
      }

      .about-text-content {
        flex: 1;
        max-width: 500px;
        padding: 20px;
        font-family: "Adobe Clean", adobe-clean, "Trebuchet MS", sans-serif;
        word-wrap: break-word;
      }

      .about-text-content h1 {
        font-size: 36px;
        margin-bottom: 20px;
        color: #2c2c2c;
        font-family: "Adobe Clean", adobe-clean, "Trebuchet MS", sans-serif;
        line-height: 45px;
      }

      .about-text-content p {
        line-height: 27px;
        color: #2c2c2c;
        font-size: 18px;
      }

      .about-image-content-section-1 {
        flex: 1;
        max-width: 600px;
        padding: 20px;
      }

      .about-image-content-section-1 img {
        width: 100%;
        max-width: 600px;
        height: auto;
        aspect-ratio: 600 / 360;
        border-radius: 10px;
      }

      .about-us-section-2 {
        padding: 50px 20px;
        text-align: center;
        background-color: #f9f9f9;
      }

      .about-us-section-2 .subtitle {
        font-size: 12px;
        text-transform: uppercase;
        color: #2c2c2c;
        margin-bottom: 10px;
        font-weight: 700;
        line-height: 15px;
      }

      .about-us-section-2 h2 {
        font-size: 28px;
        color: #2c2c2c;
        margin-bottom: 20px;
        line-height: 35px;
      }

      .about-us-section-2 p {
        font-size: 18px;
        color: #2c2c2c;
        margin: 0 auto 20px auto;
        max-width: 800px;
        line-height: 27px;
      }

      .cta-button {
        display: inline-block;
        padding: 12px 20px;
        background-color: #00175f;
        color: #fff;
        font-size: 1rem;
        font-weight: bold;
        text-decoration: none;
        border-radius: 25px;
        transition: background-color 0.3s ease;
        margin-top: 38px;
      }

      .cta-button:hover {
        background-color: #0056b3; /* Darker blue on hover */
      }

     
      .partners-section {
        padding: 50px 20px;
        background-color: #fff;
        text-align: center;
      }

      .partners-section h2 {
        font-size: 40px;
        font-weight: 700;
        line-height: 48px;
        color: #101214;
        margin-top: 0;
        font-family: "Charlie Display", Arial, Helvetica, sans-serif;
        margin-bottom: 0.5rem;
      }

      .partners-section h2 span {
        font-weight: 400 !important;
      }

      .partners-section p {
        font-size: 20px;
        font-weight: 400;
        line-height: 28px;
        color: #101214;
        font-family: "Charlie Text", Arial, Helvetica, sans-serif;
        margin: 20px 0;
      }

      .carousel-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 20px;
      }

      .carousel-item {
        display: none;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 968px;
      }

      .carousel-item.active {
        display: flex;
      }

      .carousel-item .text-content {
        flex: 1;
        padding-right: 20px;
        text-align: left;
      }

      .carousel-item .text-content h3 {
        margin-bottom: 10px;
        color: #101214;
        font-size: 28px;
        line-height: 40px;
        font-weight: 400;
        font-family: "Charlie Display", Arial, Helvetica, sans-serif;
        margin-bottom: 1.5rem;
      }

      .carousel-item .text-content p {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        color: #101214;
        font-family: "Charlie Text", Arial, Helvetica, sans-serif;
      }

      .carousel-item .text-content span {
        font-weight: 700 !important;
        text-transform: uppercase !important;
      }

      .carousel-item img {
        flex: 1;
        max-width: 300px;
        border-radius: 10px;
      }

      .logos-container {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 30px;
      }

      .partners-logo-item {
        cursor: pointer;
        opacity: 0.6;
        transition: opacity 0.3s ease;
      }

      .partners-logo-item:hover,
      .partners-logo-item.active {
        opacity: 1;
      }

      

      @keyframes fadeInRight {
        from {
          opacity: 0;
          transform: translateX(50px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      .team-image {
        opacity: 0; /* Initially hidden */
        transition: opacity 0.3s ease, transform 0.3s ease;
      }

      .carousel-item.active .team-image {
        animation: fadeInRight 0.6s ease forwards;
      }

      /* Add fade-in animation */
      @keyframes fadeInLeft {
        from {
          opacity: 0;
          transform: translateX(-50px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      .text-content {
        opacity: 0; /* Initially hidden */
        transition: opacity 0.3s ease, transform 0.3s ease;
      }

      .carousel-item.active .text-content {
        animation: fadeInLeft 0.6s ease forwards;
      }
      .brandSlider_inner {
        border-top: 1px solid #ddd;
      }
      .brandSlider_inner .slick-slide {
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .brandSlider_inner .slick-slide img {
        height: 25px;
      }

      .sliderbottom-border {
        border-top: 1px solid #ddd;
      }
      .sliderbottom-border span {
        margin-top: -10px;
        padding: 0 10px;
        background: white;
      }
      .confrenceExhibitionSection img {
        width: 155px;
      }
      .bottom_strip {
        background: rgb(39 110 241);
        text-align: center;
      }
      .bottom_strip p {
        color: #fff;
      }

      /****** About Page CSS *******/

    /* <!-- Contact us Page style--> */
      .card {
        border: none;
        transition: transform 0.3s;
        margin-bottom: 20px;
      }

      .contact-card {
        padding: 20px;
        height: 100%;
        overflow: hidden;
        margin: 0;
        width: 100%;
      }
      .contact-card:hover img {
        -webkit-transform: scale3d(1, 1.17, 1.27);
        transform: scale3d(1, 1.17, 1.27);
      }
      .contact-card img {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        -webkit-transform: scale3d(0.9, 1, 0.9);
        transform: scale3d(0.9, 1, 0.9);
        transition: bottom 0.5s, -webkit-transform 0.5s;
        transition: transform 0.5s, bottom 0.5s;
        transition: transform 0.5s, bottom 0.5s, -webkit-transform 0.5s;
      }
      .contact-card h5 {
        text-align: left;
        font-size: 19px;
      }
      .explore-card {
        padding: 30px;
        background-color: #f6f7f8;
        overflow: hidden;
        height: 100%;
      }

      .explore-card:hover img {
        -webkit-transform: scale3d(0.9, 0.87, 1.27);
        transform: scale3d(0.9, 0.87, 1.27);
      }
      .explore-card img {
        position: absolute;
        bottom: -11px;
        right: -48px;
        -webkit-transform: scale3d(0.9, 1, 0.9);
        transform: scale3d(0.8, 0.8, 0.8);
        transition: bottom 0.5s, -webkit-transform 0.5s;
        transition: transform 0.5s, bottom 0.5s;
        transition: transform 0.5s, bottom 0.5s, -webkit-transform 0.5s;
      }
      .billing-card {
        background-color: #f6f7f8;
      }
      .conference-card {
        background-color: #f6f7f8;
      }
      .corporate-card {
        background-color: #f6f7f8;
      }
      .search-box {
        border-radius: 25px;
        padding: 10px 20px;
        border: 1px solid #ddd;
        width: 100%;
        margin: 20px 0;
      }
      .contact-info {
        margin-top: 40px;
        background: rgb(248 248 248);
      }
      .contact-section h5 {
        color: #333;
        margin-bottom: 15px;
      }
      .contact-details {
        color: #666;
        font-size: 14px;
        line-height: 1.6;
      }
      .explorecard-row {
        min-height: 140px;
      }

    /* <!-- Homepage css --> */

      /* .kickflowConferences-slider .slick-list.draggable{
      -webkit-padding-start: calc(calc((100% - 1880px) / 2) + 230px);
      padding-inline-start: calc(calc((100% - 1880px) / 2) + 230px);
    } */
      .desclaimer-content {
        font-size: 12px;
        color: #414141;
        font-weight: 400;
      }
      .flt-right {
        float: right;
      }
      .lh-11 {
        line-height: 1.1 !important;
      }
      .lh-12 {
        line-height: 1.3 !important;
      }
      .lh-13 {
        line-height: 1.3 !important;
      }
      .fs-44 {
        font-size: 44px !important;
      }
      .fs-34 {
        font-size: 34px !important;
      }
      .fs-26 {
        font-size: 26px !important;
      }
      .fs-16 {
        font-size: 16px !important;
      }
      .fs-14 {
        font-size: 14px !important;
      }
      .fs-11 {
        font-size: 11px !important;
      }
      .fs-12 {
        font-size: 14px !important;
      }
      .fs-9 {
        font-size: 9px !important;
      }
      .fs-18-b {
        font-size: 18px;
        font-weight: 600;
      }
      .bg-white {
        background-color: #fff;
      }
      .bg-grey {
        background-color: #e6e6e6;
      }

      .kickflowSlider ul {
        display: flex;
        list-style-type: none;
        position: absolute;
        bottom:   85px;
        left: 5rem;
      }
      .kickflowSlider ul li.slick-active button {
        background: #fff;
      }
      .kickflowSlider ul li button {
        width: 10px;
        height: 10px;
        border-radius: 30px;
        font-size: 0em;
        border: 0;
        margin: 0 3px;
        background: #ffffff91;
      }
      .ourbrand_cards {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        width: 100%;
        height: 100%;
        color: #fff;
      }

      #company-tab button img {
        max-width: 130px;
        width: 100%;
      }
      .ourbrand_cards_body-inner {
        bottom: 40px;
      }
      .bannerSection {
        /* background-image: url("../images/hero-image.svg"); */
        background-color: var(--primary-color);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        padding: 5rem;
        min-height: 590px;
      }

      .kickflowSlider {
        min-height: 430px;
      }
 

      .bannerSection h2 {
        color: #fff;
      }
      .bannerSection p {
        color: #fff;
      }

      .exploreConfreneces {
        background-color: #fff;
        color: #000;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 700;
      }
      .left-arrow,
      .right-arrow {
        border: 1px solid var(--primary-color);
        border-radius: 30px;
        height: 35px;
        width: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        color: var(--primary-color);
      }

      .kickflowConferences-card {
        border: 1px solid var(--border-color);
        margin: 0 5px;
        border-radius: 10px;
        margin-top: 30px !important;
      }

      .kickflowConferences-newsroom-card{
        margin-top: 0 !important;
        margin: 0 !important;
      }
      .kickflowConferences-card .card-footer {
        background: var(--hover-color);
        border: 0;
         border-radius: 0 0 10px 10px !important;
      }
      .upcoming-event-card-footer{
        border-radius: 0 0 10px 10px !important;
      }
      .upcoming-event-card-footer p{
        font-size: 11px !important;
      }
      .kickflowConferences-card:hover {
        border: 1px solid var(--secondary-color);
        transition: all 0.5s;
      }

         .kickflowConferences-card:hover .card-footer {
        background: var(--primary-color);
        border: 0;
        color: var(--hover-color);
        transition: all 0.5s;
      }

      .kickflowConferences-card:hover svg {
        color: var(--hover-color);
        transition: all 0.5s;
      }
      .kickflowremoteStaffing-card {
        border: 1px solid var(--primary-color);
        margin: 0 5px;
        border-radius: 10px;
        margin-top: 30px !important;
      }
      .kickflowremoteStaffing-card .card-footer {
        min-height: 103px;
        background: var(--primary-color);
        border: 0;
        color: var(--hover-color);
         border-radius: 0 0 8px 8px !important;
      }
      .kickflowremoteStaffing-card:hover {
        border: 1px solid var(--border-color);
        transition: all 0.5s;
      }

         .kickflowremoteStaffing-card:hover .card-footer {
        background: var(--hover-color);
        border: 0;
        color: var(--primary-color);
        transition: all 0.5s;
      }

      .kickflowremoteStaffing-card:hover svg {
        color: var(--primary-color);
        transition: all 0.5s;
      }

      .kickflowexploreOpinion-card {
        border: 1px solid var(--border-color);
        margin: 0 5px;
        border-radius: 10px;
        margin-top: 30px !important;
      }
      .kickflowexploreOpinion-card .card-footer {
        background: var(--hover-color);
        border: 0;
      }
      .kickflowexploreOpinion-card:hover {
        border: 1px solid var(--secondary-color);
        transition: all 0.5s;
      }

         .kickflowexploreOpinion-card:hover .card-footer {
        background: var(--primary-color);
        border: 0;
        color: var(--hover-color);
        transition: all 0.5s;
      }

      .kickflowexploreOpinion-card:hover svg {
        color: var(--hover-color);
        transition: all 0.5s;
      }

      .kickflowexploreOpinion-card:hover a {
        color: var(--primary-color);
       
      }

       .kickflowrelatedNews-card {
        border: 1px solid var(--border-color);
        margin: 0 5px;
        border-radius: 10px;
        margin-top: 30px !important;
      }
      .kickflowrelatedNews-card .card-footer {
        background: var(--hover-color);
        border: 0;
      }
      .kickflowrelatedNews-card:hover {
        border: 1px solid var(--secondary-color);
        transition: all 0.5s;
      }

         .kickflowrelatedNews-card:hover .card-footer {
        background: var(--primary-color);
        border: 0;
        color: var(--hover-color);
        transition: all 0.5s;
      }

      .kickflowrelatedNews-card:hover svg {
        color: var(--hover-color);
        transition: all 0.5s;
      }

      .kickflowrelatedNews-card:hover a {
        color: var(--primary-color);
       
      }

      .kickfloeotherExpertOpinion a:hover{
        color: var(--primary-color);
      }
       
      .watchnow-btn:hover {
        color: #fff;
        background-color: #ffffff40;
      }
      .watchnow-btn {
        border: 1px solid #fff;
        color: #fff;
        border-radius: 20px;
      }
      .openingnote-card {
        background: var(--hover-color);
        color: var(--bg-dark);
        border: none;
        border-radius: 0;
        /* margin-top: 30px !important; */
      }

      .openingnoteevent-card {
       
        margin-top: 30px !important;
      }

     
    
      .mt-6 {
        margin-top: 2rem !important;
      }
      .Inspirationkeynote-card {
        background: var(--hover-color);
        color:  var(--bg-dark);
        border: none;
        min-height: 270px;
      }
      .object-fit-cover {
        object-fit: cover;
        width: 100%;
        height: 100%;
      }
      .Inspirationkeynote-card p,
      .openingnote-card p {
        font-size: 14px;
      }
      
      .kickflowCompanyTestimonials #company-tab {
        border-top: 3px solid #ddd;
      }
      .kickflowCompanyTestimonials .nav-item {
        position: relative;
      }
      .kickflowCompanyTestimonials .nav-pills .nav-link.active::before {
        content: "";
        display: inline-block;
        border-top: 3px solid var(--primary-color);
        border-radius: 0;
        width: 100%;
        position: absolute;
        top: -19px;
        left: 0;
      }
      .kickflowCompanyTestimonials .nav-pills .nav-link {
        background: transparent;
        color: #ddd;
      }
      .kickflowCompanyTestimonials .nav-pills .nav-link.active,
      .kickflowCompanyTestimonials .nav-pills .show > .nav-link .experrienceSection img {
        width: 100%;
        color: #000;
      }
      .announcementsSection {
        background: #000;
      }
      .announcementsSection ul {
        list-style-type: none;
      }
      .announcementsSection li .announcement-list:hover {
        border: 1px solid #fff;
      }
      .announcementsSection li .announcement-list {
        border: 1px solid transparent;
        padding: 15px;
        border-radius: 10px;
        text-decoration: none;
        transition: 0.4s cubic-bezier(0.4, 0, 1, 1);
      }
      .announcementsSection li .announcement-list img {
        width: 60px;
        object-fit: cover;
        border-radius: 10px;
      }
      .announcementsSection li .announcement-list p {
        font-weight: 600;
      }
      .exploremore:hover,
      .exploremore {
        border: 1px solid #fff;
        color: #fff;
        border-radius: 25px;
      }
      .viewspeaker:hover,
      .viewspeaker {
        border-radius: 20px;
        background: rgb(1 96 231);
        color: #fff;
      }
      .company-slider {
        background: rgb(243 243 243);
      }
      .company-image img {
        max-width: 160px;
        height: 45px;
        object-fit: contain;
      }
      .companysliderSection {
        background: rgb(243 243 243);
      }
      .company-image-slider .slick-list {
        margin: 0px 50px;
        padding: 0 !important;
      }
      .kickflow-company-slider-area img {
        max-width: 200px;
      }
      .datetime-badge {
        background: var(--hover-color);
        padding: 5px 10px;
        font-weight: 400;
        font-size: 13px;
        color: var(--primary-color);
        font-family: "Source Sans 3", sans-serif;
          text-wrap: wrap;
  text-align: left;
  line-height: 20px;
  
      }
      .event-badge {
        background: var(--secondary-color);
        padding: 5px 10px;
        font-weight: 400;
        font-size: 13px;
        color: var(--hover-color);
        font-family: "Source Sans 3", sans-serif;
      }
      .dateTime_badge {
        background: #f6f7f8;
        padding: 5px 10px;
        font-weight: 400;
        font-size: 11px;
        color: #000000;
        font-family: "Source Sans 3", sans-serif;
      }
      .company-image.slick-active.slick-center {
        border-bottom: 1px solid var(--primary-color);
      }

      .viewpartners {
        border-radius: 20px;
        border: 2px solid #000;
        color: #000;
      }
      .partner-logos {
        background: rgb(248 248 248);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 150px;
        height: 90px;
        padding: 20px;
        margin: 10px;
      }
      .partner-logos img {
        width: 80px;
      }
      .kickflow-whoweare {
        background: var(--hover-color);
      }
     
    /* <!-- Blogs Css --> */
      .session-title {
        color: #333;
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 15px;
      }
      .caption-text {
        color: #666;
        font-size: 14px;
        margin-bottom: 30px;
      }
      .share-links {
        margin-bottom: 20px;
      }
      .share-links a:first-of-type {
        margin-left: 0;
      }
      .share-links a:last-of-type {
        margin-right: 0;
      }
      .share-links a {
        color: #666;
        margin: 0 5px;
        text-decoration: none;
      }
      .speaker-img {
        width: 75px;
        height: 75px;
        object-fit: cover;
      }
      .speaker-name {
        color: #0066cc;
        text-decoration: none;
        font-weight: 500;
      }
      .speaker-title {
        color: #666;
        font-size: 16px;
        font-weight: 600;
      }
      .section-heading {
        color: #333;
        font-size: 16px;
        font-weight: bold;
        margin: 30px 0 20px;
      }
      .technical-level,
      .audience-types {
        color: #333;
        margin-bottom: 15px;
      }
      .copyright-notice {
        margin-top: 30px;
        font-weight: 700;
      }
      .blog-bannerSection .container {
        background-image: url(https://ec-prod.scene7.com/is/image/ECPROD/UAR-banner-mobile?$pjpeg$&jpegSize=100&wid=599);
        background-size: cover;
        background-position: 50% 50%;
      }

      .getstarted:hover,
      .getstarted {
        background: #3b63fb;
        color: #fff;
        border-radius: 20px;
      }
  
    /* <!-- Jobs Css --> */
      .job-title {
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 5px;
      }
      .location-time {
        color: #666;
        margin-bottom: 20px;
      }
      .section-title {
        font-size: 18px;
        font-weight: bold;
        margin: 20px 0 10px 0;
      }
      .share-icons a {
        margin-right: 15px;
        color: #666;
        text-decoration: none;
      }
      .similar-job {
        border: 1px solid #eee;
        padding: 15px;
        margin-bottom: 10px;
        border-radius: 8px;
      }
      .apply-btn {
        background-color: #3b3b65;
        color: white;
        padding: 5px 20px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 14px;
        border-radius: 20px;
      }
      .apply-btn:hover {
        background-color: #2d2d4d;
        color: white;
        text-decoration: none;
      }
      .form-container {
        background-color: #f8f9fa;
        padding: 50px;
        border-radius: 5px;
      }

      .share-links a:first-of-type {
        margin-left: 0;
      }
      .share-links a:last-of-type {
        margin-right: 0;
      }
      .share-links a {
        color: var(--secondary-color);
        margin: 0 5px;
        text-decoration: none;
      }

    
    /* <!-- Career Style --> */
      * {
        padding: 0;
        margin: 0;
      }
      .career_banner {
        background-image: url(../images/hero-image.svg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        padding: 30px 0;
        min-height: 580px;
      }
      .section-card:hover,
      .section-card {
        border: none;
        cursor: pointer;
        border-radius: 0;
        margin-top: 20px;
        color: #fff;
        text-decoration: none;
        background: rgb(255 255 255 / 20%);
      }
      .accordion > .section-card:not(:last-of-type) {
        border: none;
      }
      .section-description {
        font-size: 0.9em;
      }

      .comereimageine .row:first-of-type {
        border-top: 1px solid #000;
      }
      .comereimageine .row {
        padding: 10px;
        border-bottom: 1px solid #000;
      }
      .comereimageine .row p {
        margin: 0;
      }
      .resource-card {
        background: var(--hover-color);
        padding: 20px;
        height: 100%;
        transition: transform 0.2s;
        cursor: pointer;
      }

      .resource-card i{
         color: var(--primary-color);
      }
      .resource-card:hover {
        transform: translateY(-5px);
        
      }
      .icon {
        width: 30px;
        height: 30px;
        margin-bottom: 15px;
      }
      .report-icon {
        color: #37b6b1;
      }
      .story-icon {
        color: #8e64e3;
      }
      .event-icon {
        color: #e664d4;
      }
      .webinar-icon {
        color: #ff9c51;
      }
      .btn-outline-secondary {
        border-radius: 20px;
        padding: 8px 25px;
      }
      .small-text {
        font-size: 0.8rem;
        color: #666;
        margin-bottom: 5px;
      }
      .title-text {
        font-size: 1rem;
        color: #333;
        font-weight: 500;
        line-height: 1.2;
      }
      .reasonsection {
        background-color: rgb(243 243 243);
      }
      
    /* <!-- Newsroom Style --> */
      .industrynewSection {
        /* background-image: url(../images/newsroom-hero-image.svg); */
        background-color: var(--primary-color);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        padding-top: 17rem;
        padding-bottom: 2rem;
        color: #fff;
        /* min-height: 510px; */
      }
      .industrynewSection-txt {
        /* margin-bottom: 108px; */
        /* margin-top: 60px !important; */
      }
      .industrynewSection-txt h2 {
        font-weight: 700;
      }
      .industrynewsslider-banner:hover {
        text-decoration: none;
      }
      .industrynewsslider-banner .row {
        /* background: #f8f8f9; */
        color: #000;
      }
      .industrynewsslider-banner img {
        width: 100%;
        height: 340px;
        object-fit: contain;
      }
      .industrynewsslider-banner {
        /* height: 370px; */
        display: block;
      }
      .industrynewsslider ul {
        list-style-type: none;
        display: flex;
      }
      .industrynewsslider li {
        width: 15px;
        height: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .industrynewsslider li button {
        border-radius: 30px;
        border: 1px solid #000;
        content: "";
        text-indent: -9999px;
        height: 7px;
        width: 7px;
      }
      .industrynewsslider li.slick-active button {
        border-radius: 0;
        background: var(--primary-color);
        border: 1px solid var(--primary-color);
        content: "";
        text-indent: -9999px;
        height: 8px;
      }
      .industrynewsslider .slick-dots {
        margin: 0;
        padding: 0;
      }
      .industrynewsslider .industrynewsslider-btnarea {
        position: absolute;
        right: 10px;
        top: 10px;
      }
      .newsroomslider {
        /* margin-top: -260px; */
        background-color: var(--hover-color);
      }
      .recentnews_li {
        border-bottom: 1px solid #ddd;
      }
      .recentnews_li a {
        color: #000;
      }
      .slider-1 {
        background-image: url(images/Uber-Carolers-with-Macaulay-Culkin-1-1080x540.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
      }
      .slider-2 {
        background-image: url(images/Header_DSTZ-1080x540.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
      }
      .slider-3 {
        background-image: url(images/78c3b782a431608afba7537382b9aa25-3.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
      }
      .recentnews_li a,
      .recentnews_li p {
        font-size: 0.9em;
      }
      .recentnews_li p {
        white-space: nowrap;
        text-align: right;
        margin-left: 10px;
      }
      .recentnew-seeall-bottom {
        display: none;
      }
      .leadershipcompany .card {
        /* background-color: var(--hover-color); */
        border-radius: 10px;
        border: 1px solid var(--border-color);
        height: 100%;
        
      }
      .leadershipcompany .card p {
        font-size: 0.9em;
      }

      .leadershipcompany .card i {
        font-size: 3rem;
        color: var(--primary-color);
      }

       .leadershipcompany .card:hover {
        background-color: var(--hover-color);
       transition: all 1s;
        
      }
    
    /* <!-- Media Mentions --> */
      .banner_search {
        background: url("images/admin-hero-image.svg");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        color: #000;
        min-height: 290px;
      }

      .banner_search .search-box {
        color: #fff;
      }
      .banner_search .search-box::placeholder {
        color: #fff;
        opacity: 1; /* Firefox */
      }

      ::-ms-input-placeholder {
        /* Edge 12-18 */
        color: #fff;
      }
    /* <!-- Admin Css --> */

      .colorDot {
        height: 7px;
        width: 7px;
        border-radius: 20px;
      }
      .adminBoxes {
        background: #f8f8f9;
        padding: 20px;
        flex-grow: 1;
        font-family: "Source Sans 3", sans-serif;
        font-size: 17px;
      }
      .adminBoxes p {
        margin: 0;
        margin-left: 5px;
        font-family: "Source Sans 3", sans-serif;
        font-size: 17px;
      }
      .usefullinks {
        background: #0160e7;
      }
      .offecialDocument {
        background: #754c24;
      }
      .agreementContract {
        background: #056b22;
      }
      .legalDocument {
        background: #ff0000;
      }
      .hrpolicy {
        background: #008cad;
      }
      .salesDocument {
        background: #041d56;
      }
      .categoriesSelect {
        border: none;
        background: rgb(242 242 242);
        padding: 5px 10px;
      }
      .headerOptions_header p {
        margin: 0;
        margin-left: 5px;
        font-size: 0.9em;
      }
      .headerOptions_header {
        padding: 3px 10px;
        margin: 5px;
      }
      .headerOptions_header.active {
        background: rgb(242 242 242);
      }

    /* <!-- Leadgeneration style --> */
      .leadgeneration_banner {
        background: url("images/lead-generation-hero-image.svg");
        background-size: cover;
        background-repeat: no-repeat;
        color: #fff;
        min-height: 480px;
      }
      .common-bg-wrapper {
        background: white;
        transition: 0.3s;
        margin-top: 0px;
        border-right: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
        padding: 40px;
      }
      .test {
        margin: 0;
        padding: 0;
        background-color: #f8f9fa;
        text-align: center;
      }
      .test .subtitle {
        font-size: 0.9em;
        font-weight: bold;
        margin-bottom: 15px;
      }
      .casestudy-card .card {
        margin: 0 10px;
      }

      .hero-section-secondary {
        background-image: url(images/lead-generation-image-2.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        color: #000;
      }
      .common-bg-wrapper:nth-child(4) {
        border-right: none;
      }
      .common-bg-wrapper:nth-child(8) {
        border-right: none;
      }
      .common-bg-wrapper:nth-child(5),
      .common-bg-wrapper:nth-child(6),
      .common-bg-wrapper:nth-child(7),
      .common-bg-wrapper:nth-child(8) {
        border-bottom: none;
      }
    
    /* <!-- Partnership css --> */
      .partnership_banner {
        background-image: url(images/partnerships-hero-image.svg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        color: #000;
        padding-top: 15rem;
        color: #fff;
        min-height: 480px;
      }
      .refineresult {
        background: #f6f7f8;
      }
      .refineresult .card {
        border-bottom: 1px solid rgb(221 221 221) !important;
        cursor: pointer;
        background: transparent;
      }
      .refineresult .card-header {
        border-bottom: 1px solid rgb(221 221 221) !important;
        background: transparent;
      }
      .refineresult .card-header[aria-expanded="false"] svg {
        transform: rotate(0deg);
      }
      .refineresult .card-header[aria-expanded="true"] svg {
        transform: rotate(180deg);
      }
      .partner-card-inner {
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid #ddd;
        box-sizing: border-box;
        height: 200px;
        width: 200px;
        margin: 10px;
        flex-grow: 1;
      }
      .partner-card-inner.active,
      .partner-card-inner:hover {
        border: 2px solid rgb(1 96 231);
      }
    /* <!-- Classic Membership --> */
      .stat-item {
        text-align: center;
        border-right: 0.5px solid #e6e6e6;
        margin: 10px;
      }
      .stat-item:last-of-type {
        border-right: none;
      }
      .pacakage-section .card {
        border: 1px solid #ddd;
        height: 100%;
      }
      .pacakage-section .card-body {
        height: 85%;
      }
      .pacakage-section .card-text {
        list-style-type: none;
      }
      .pacakage-section .card-text li {
        font-size: 0.9em;
      }
      .pacakage-section .card-text li::before {
        content: "✔";
        position: absolute;
        left: 25px;
        color: #0160e7;
      }
 
      .learn-more {
        color: #0d6efd;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
      }

      .learn-more:after {
        content: "→";
        margin-left: 0.5rem;
      }
 

    /* <!-- Registration css --> */
 
      .rangeButton {
        align-items: center;
      }
      .rangeButton p {
        font-size: 1em;
        margin: 0 10px;
      }
      .downloadTicket {
        background: rgb(128 128 128);
      }

      .stepColumn {
        border: 1px solid #ddd;
        flex-grow: 1;
        padding: 5px 10px;
      }
      .stepColumn small {
        font-size: 12px;
        font-weight: 400;
        color: #818181;
      }
      .stepColumn h6 {
        font-size: 16px;
        font-family: "Red Hat Display", sans-serif;
        font-weight: 900;
      }
      .stepColumn.active {
        border-bottom: 3px solid rgb(1 96 239);
      }

      .stepColumn.active .step-txt {
        color: rgb(49 175 66);
        font-weight: 500;
      }

      .stepColumn.completed .step-txt {
        color: rgb(49 175 66);
        font-weight: 500;
      }

      .stepColumn.completed svg {
        color: rgb(49 175 66);
      }
      /* .stepSection-content{
    height:100vh;
   }*/
      .stepSection-content .left-content {
        background: #f5f7fa;
        padding: 20px;
      }

      .stepsection-inner-content .rangeButton svg {
        color: rgb(179 179 179);
      }

      .stepsection-inner-content .card {
        border-radius: 8px;
      }

      .oldPrice {
        font-size: 1em;
        text-decoration: line-through;
        text-decoration-color: red;
        /* Change 'red' to your desired color */
      }

      .newPrice {
        font-size: 1em;
      }
      .pass-card,
      .stepThree .card,
      .stepTwo .card {
        border: 1px solid rgba(0, 0, 0, 0.125);
      }
      .passesHeader.limitedticket {
        background: linear-gradient(
          to right,
          rgb(255 246 225),
          #fff,
          rgb(255 246 225)
        );
      }

      .passesHeader {
        background: linear-gradient(
          to right,
          rgb(233 233 233),
          #fff,
          rgb(233 233 233)
        );
      }

      .passesHeader p {
        font-size: 0.9em;
      }

      .limitedtag {
        top: 0;
        left: 0;
        background: #c67d14;
        color: #fff;
        font-size: 11px;
        padding: 2px 10px;
        border-bottom-right-radius: 5px;
        border-top-left-radius: 10px;
        font-weight: 500;
      }
      .accordion > .section-card:not(:last-of-type) {
        border: none;
      }
      .accordion .accordion-item:first-child {
        border-top: 1px solid #ddd;
      }
      .accordion-item {
        border: none;
        border-bottom: 1px solid #ddd;
      }

      .accordion-button {
        background: none;
        border: none;
        box-shadow: none;
        font-size: 18px;
        font-weight: normal;
        padding: 18px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        color: #000;
        text-align: left;
      }

      /* Remove Bootstrap default caret */
      .accordion-button::after {
        content: "+" !important;
        font-size: 20px;
        font-weight: bold;
        color: gray;
        transform: rotate(0deg);
        transition: transform 0.3s ease;
        background-image: none !important; /* Fixes the default arrow issue */
      }

      .accordion-button[aria-expanded="true"]::after {
        content: "-" !important;
        transform: rotate(0deg);
      }

      .accordion-body {
        padding: 15px 0;
        color: #414141;
      }
      .grouplist {
        list-style-type: none;
      }

      .passincludes-list {
        padding: 12px 0;
      }

      .passincludes-list img {
        width: 30px;
        height: 30px;
      }
      .stepRow,
      .right-content {
        background: #fff;
      }
      .passincludes-list p {
        font-size: 15px;
        display: flex;
        align-items: center;
        line-height: 1.2;
      }

      .yourOrder_Section .card {
        border-radius: 10px;
        border: 1px solid rgb(230 230 230);
      }

      .order-discripition {
        color: rgb(128 128 128);
        font-size: 0.9em;
      }

      .addons-checkbox {
        height: 20px;
        width: 20px;
        border-radius: 5px;
        margin-right: 10px;
      }

      .stepThree .left-content .card {
        flex-grow: 1;
      }

      .stepSection-content .card {
        border-radius: 10px;
      }

      .credit-debit-btn {
        background-color: white;
        border: 1px solid #ccc;
        padding: 10px;
        text-align: left;
        margin-bottom: 10px;
        width: 100%;
        display: flex;
        align-items: center;
      }

      .credit-debit-btn img {
        margin-right: 10px;
      }

      .section-header {
        font-weight: 600;
        color: #000;
        font-family: "Montserrat";
        font-size: 13px;
      }

      .section-content {
        font-size: 15px;
        color: #818181;
        font-family: "Source Sans 3";
      }

      .success-message {
        background-color: #e6f7ee;
        color: #28a745;
        display: inline-block;
        padding: 8px 15px;
        border-radius: 20px;
      }

      .ticket-header {
        padding: 25px 20px;
      }

      .circle-left {
        position: absolute;
        width: 20px;
        height: 20px;
        background-color: #ddd;
        border-radius: 50%;
        left: -10px;
      }

      .circle-right {
        position: absolute;
        width: 20px;
        height: 20px;
        background-color: #ddd;
        border-radius: 50%;
        right: -10px;
      }

      .center-border {
        border: 2px dashed #ddd;
        width: 100%;
      }

      .belowdetail-box {
        background: rgb(248 248 248);
        height: 100vh;
      }

      .stepSection-header-small {
        display: none;
      }

      .ticket-header img {
        width: 100%;
      }
      .download-invoice {
        border-left: 1px solid #ddd;
      }
      .taxtotalArea p,
      #selected-addons-container p,
      .yourOrder_Section p {
        color: #818181;
        font-size: 15px;
      }
      .taxtotalArea h6 {
        font-weight: 800;
      }
      .promo-code .input-group {
        display: block;
      }
      .promo-code .input-group-append {
        display: flex;
        align-items: self-start;
        justify-content: end;
        position: relative;
        top: -46px;
        left: -5px;
      }
      .order-details .price-table .price {
        font-family: "Source Sans 3";
        font-size: 15px;
        color: #818181;
      }
      .download-details .download-button {
        font-weight: 500;
      }
    
  
    /* <!-- Conference list css --> */

      .conference_bannerSection {
        background-image: url(../images/hero-image.svg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        padding-top: 17rem;
        padding-bottom: 2rem;
        min-height: 480px;
      }
      .conference_bannerSection h2,
      .conference_bannerSection p {
        color: #fff;
      }
      .tabsection-inner {
        border-bottom: 1px solid #ddd;
      }
      #conferencelistTab li button {
        border: 0;
        padding: 10px;
      }
      #conferencelistTab li button.active {
        border-bottom: 2px solid #0160e7;
      }

      /* Modal styles */
      .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
      }

      .modal-content {
        background-color: #fff;
        margin: 15% auto;
        padding: 20px;
        width: 80%;
        border: 1px solid #fff;
        border-radius: 0px;
        max-width: 450px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      }

      .close-modal {
        float: right;
        font-size: 24px;
        cursor: pointer;
        margin: 0 0 0 auto;
      }


      
.news-box{
  padding-bottom: 0.5rem !important;
  padding-top: 0.5rem !important;
  /* background-color: var(--bg-dark) !important; */
}

.newsroom .card-img-top{
  height: 370px;
}

.card-img-top-card{
  max-height: 180px !important;
}

.card-news-title {
  font-size: 1rem;
}

.card-img-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.1));
}

.list-group-item-action{
  padding: 0.5rem 0rem !important;
  border: none !important;
  border-bottom: 1px solid var(--border-color) !important;
  color: black;
}

.list-group-item-action:hover{
 background-color: var(--hover-color);
}


.expert-opinion-card {
    background-color: #000;
    color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin: 10px;
    min-height: 220px;
    border: 1px solid #222;
}

.profile-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: contain;
}

.text-content {
    max-width: 500px;
}

.expert-name {
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
}

.expert-title {
    font-size: 0.875rem;
    color: #ccc;
}

.expert-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-top: 6px;
    color: var(--bg-dark);
}

.expert-headline {
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    margin-top: 6px;
}

.company-logo-wrap {
    margin-left: auto;
}

.company-logo {
    width: 80px;
    height: 50px;
    object-fit: contain;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .card-body {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .company-logo-wrap {
        margin-top: 15px;
        align-self: flex-start;
    }
}

.kickflowbusinessOpurtinity{
  background-color: var(--primary-color);
}



.kickflow-aboutus-box{
  border: 2px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: white;
  width: 200px;
  border-radius: 10px;
  padding: 10px;
   animation: bounce 2s ease-in-out infinite;
}

.kickflow-aboutus-box-right{
  border: 2px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: white;
  width: 200px;
  border-radius: 10px;
  padding: 10px;
   animation: slideX 2s ease-in-out infinite;
}

.kickflow-aboutus-box i{
  font-size: 25px;
}

  @keyframes bounce {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-10px); /* adjust height here */
      }
    }

     @keyframes slideX {
      0%, 100% {
        transform: translateX(0);
      }
      50% {
        transform: translateX(10px); /* move right */
      }
    }


.kickflow-contactus .contact_info {
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fff;
}

.kickflow-contactus .icon-red {
  color: var(--primary-color);
}

  /* Hero Section */
     
 
        /* Form Styles */
        .form-container {
            border-radius: 10px;
            background: #fff;
            box-shadow: 0 2px 16px rgba(5,21,138,0.07);
        }
        .form-floating > .form-control, .form-floating > .form-control:focus {
            border-radius: 10px;
            border: 1.5px solid #e0e0e0;
            box-shadow: none;
        }
     
       .btn:focus{
        box-shadow: none !important;
       }


         
          .newsroom-tabs {
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 1rem;
            /* justify-content: center; */
            display: flex;
            gap: 12px;
            margin-bottom: 2rem;
          }
          .newsroom-tabs .nav-item {
            margin-bottom: 0;
          }
          .newsroom-tabs .nav-link {
            color: var(--primary-color);
            background: var(--hover-color);
            border: none;
            border-radius: 10px;
            padding: 0.75rem ;
            /* font-size: 1.1rem; */
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
            transition: background 0.2s, color 0.2s, box-shadow 0.2s;
            position: relative;
            margin-right: 0;
            margin-left: 0;
            outline: none;
          }
          .newsroom-tabs .nav-link.active {
            background: var(--secondary-color);
            color: #fff;
            box-shadow: 0 4px 16px rgba(0,123,255,0.15);
            font-weight: 700;
            border: none;
          }
          .newsroom-tabs .nav-link:not(.active):hover {
            background: var(--hover-color);
            color: var(--bg-dark);
            box-shadow: 0 2px 12px rgba(0,123,255,0.08);
          }
          @media (max-width: 767.98px) {
            .newsroom-tabs {
              flex-wrap: wrap;
              gap: 8px;
            }
            .newsroom-tabs .nav-link {
              padding: 0.5rem 1.2rem;
              font-size: 1rem;
            }
          }
        
        
.kickflowremoteStaffing-card-box{
  cursor: pointer;
}
      .kickflowremoteStaffing-card-box .card-footer{
        min-height: auto !important;
      }

      button.close{
            position: absolute;
    top: 0;
    right: 10px;
    color: var(--primary-color);
    opacity: 1 !important;
      }

      .kickflowreport{
        background-color: var(--secondary-color);
      }

       .careers-section {
      padding: 4rem 0;
    }



    .open-roles {
      display: inline-block;
      background: var(--secondary-color);
      color: white;
      padding: 0.4rem 1rem;
      border-radius: 10px;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    .careers-table-container {
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(5px);
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      overflow: auto;
    }

    table.careers-table {
      margin-bottom: 0;
    }

    .careers-table thead {
      background: var(--secondary-color);
      color: white;
    }

    .careers-table thead th {
      font-weight: 600;
      border: none;
      padding: 1rem;
    }

    .careers-table tbody td {
      padding: 1rem;
      vertical-align: middle;
      border-top: 1px solid var(--border-color);
    }

    .careers-table tbody tr:hover {
      background-color: var(--hover-color);
      transition: background-color 0.3s ease;
    }

    .apply-btn {
      border: none !important;
      font-size: 0.85rem;
      font-weight: 600;
      border-radius: 10px;
      padding: 0.45rem 1.1rem;
      transition: all 0.3s ease;
    }

    .apply-btn:hover {
      background-color: var(--secondary-color);
      color: #fff;
    }

    @media (max-width: 768px) {
      .careers-header h2 {
        font-size: 2rem;
      }
    }

    .error {
      color: #dc3545 !important;
      font-size: 12px;
      margin-top: 5px;
      display: block;
  }
  
  .error-field {
      border-color: #dc3545 !important;
      box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
  }
  
  .alert {
      padding: 10px 15px;
      margin-bottom: 15px;
      border-radius: 4px;
  }
  
  .alert-success {
      background-color: #d4edda;
      border-color: #c3e6cb;
      color: #155724;
  }
  
  .alert-danger {
      background-color: #f8d7da;
      border-color: #f5c6cb;
      color: #721c24;
  }

  .header-logo img{
    min-height: 20px;
    height: 20px;
  }

  .pagination-left i.fa-angle-left{
    font-size: 17px;
    margin-right: 8px;
    margin-top: 7px;
  }

  .pagination-right i.fa-angle-right{
    font-size: 17px;
    margin-left: 8px;
    margin-top: 7px;
  }

  #current-page{
    max-width: 50px;
  }

  /* Modal Styles */
  .modal-header-padding {
    padding: 1rem 1rem;
  }

  .close-modal-btn {
    padding: 10px 15px;
  }

  .re-logo {
    padding-bottom: 1rem;
    text-align: center;
  }

  .re-logo img {
    min-height: 20px;
    height: 20px;
  }

  .re-logo img.small-logo {
    min-height: 40px;
    height: 40px;
  }

  .step {
    display: none;
  }

  .step.step1 {
    display: block;
  }

  .step h2 {
    margin-bottom: 1rem;
  }

  .step p {
    margin-bottom: 0;
  }

  .step p.mb-0 {
    margin-bottom: 0;
  }

  .step p.mb-3 {
    margin-bottom: 1rem;
  }



  .step .input-container.text-center {
    text-align: center;
  }

  .step .input-container.text-center .g-recaptcha {
    margin: 20px 0;
  }

  .step .small-text {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }

  .step .small-text a {
    color: #007bff;
    text-decoration: none;
  }

  .step .small-text a:hover {
    text-decoration: underline;
  }

  .step .btn-container {
    margin-top: 1rem;
  }

  .step .btn-container .btn {
    margin-right: 0.5rem;
  }

  .step .btn-container .btn:last-child {
    margin-right: 0;
  }

  .step .finalTitle {
    color: #28a745;
  }

  .step .finalMessage {
    color: #6c757d;
  }

  /* Speaker and Sponsor Drawer Styles */
  .drawer-speaker-image,
  .drawer-sponsor-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
  }

  .drawer-speaker-name,
  .drawer-sponsor-name {
    margin-bottom: 0.5rem;
  }

  .drawer-speaker-position,
  .drawer-sponsor-position {
    color: #6c757d;
    margin-bottom: 1rem;
    display: block;
  }

  .drawer-speaker-bio,
  .drawer-sponsor-bio {
    margin-bottom: 1.5rem;
  }

  .drawer-speaker-bio p,
  .drawer-sponsor-bio p {
    margin-bottom: 0;
  }

  .speaker-social,
  .sponsor-social {
    margin-top: 1rem;
  }

  .speaker-social a,
  .sponsor-social a {
    display: inline-block;
    margin-right: 1rem;
  }

  .speaker-social i,
  .sponsor-social i {
    font-size: 17px;
    /* margin-top: 30px; */
  }

  .speaker-sessions,
  .sponsor-sessions {
    margin-top: 1rem;
  }

  .speaker-sessions a,
  .sponsor-sessions a {
    color: #007bff;
    text-decoration: none;
  }

  .speaker-sessions a:hover,
  .sponsor-sessions a:hover {
    text-decoration: underline;
  }

  /* Modal Footer Styles */
  .modal-footer-custom {
    border: 0;
    display: flex;
    justify-content: space-between;
    padding: 0;
  }

  .modal-logos {
    display: flex;
    flex-wrap: wrap;
  }

  /* Close Button Styles */
  .close-modal-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6c757d;
  }

  .close-modal-btn:hover {
    color: #343a40;
  }

  /* Form Input Styles */
  .input-container {
    position: relative;
    /* margin-bottom: 1rem; */
  }

  .input-container input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 10px;
    font-size: 1rem;
  }

  .input-container input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  }

  .input-container label {
    /* position: absolute; */
    top: 0.75rem;
    left: 0.75rem;
    color: #6c757d;
    transition: all 0.2s ease;
    pointer-events: none;
  }

  .input-container input:focus + label,
  .input-container input:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.75rem;
    color: #007bff;
    background: white;
    padding: 0 0.25rem;
  }






  .captcha-error{
    color: red;
    text-align: start;
    font-size: 14px;
  }

.kickflow-leader-list{
  border-top: 1px solid var(--border-color);
  padding: 15px 0px;
}
    .opinion-list .opinion-item {
    margin-bottom: 15px;
  }
  .opinion-title {
    /* font-weight: bold; */
    font-size: 1rem;
  }
  .opinion-meta {
    font-size: 0.85rem;
    color: var(--secondary-color);
  }
  .author-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
  }
  .author-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: contain;
  }
  .show-more-btn {
    color: var(--primary-color);
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-block;
  }

  #careersTable_info{
    padding-left: 10px;
  }

  #careersTable_length{
    padding-left: 10px;
    padding-top: 10px;
  }

  #careersTable_filter{
    padding-right: 10px;  
    padding-top: 10px;
  }

  #careersTable_filter input{
    outline: none !important;
  }

 #careersTable_paginate{
  padding-top: 10px !important;
  padding-bottom: 10px;
 }

 /* Pagination container */
.dataTables_wrapper .dataTables_paginate {
    margin-top: 10px;
}



/* Active/current page */
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background-color: var(--hover-color) !important;
    color: white !important;
    border: 1px solid var(--border-color) !important;
}

/* Disabled buttons */
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
    background-color: #e0e0e0 !important;
    color: #999 !important;
    border: 1px solid #ccc;
}
  
.pagination {
    display: flex;
    list-style: none;
    justify-content: center;
    margin-top: 20px;
}
.pagination li {
    margin: 0 5px;
    cursor: pointer;
    padding: 6px 12px;
    background: var(--hover-color);
    color: var(--primary-color) !important;
    border-radius: 4px;
}
.pagination li.active {
    background: var(--primary-color);
    color: var(--hover-color);
}
.pagination li.disabled {
    background: #ccc;
    cursor: not-allowed;
    
}

.pagination .page-link {
    color: var(--primary-color);
    background-color: transparent;
    border: none;
    padding: 0 !important;
}
.pagination .page-item.active .page-link {
    background-color: transparent;
    
}
.pagination .page-item.disabled .page-link {
    background-color: #cccccc;
    color: #666;
}


.faq_wrap .card-header .btn::after {
	content: "\f067";
	color: #645A8D;
	top: 10px;
	right: 10px;
	position: absolute;
	font-family: "FontAwesome";
}

.faq_wrap .card-header .btn[aria-expanded="true"]::after {
	content: "\f068";
	font-family: "FontAwesome";
}

.faq_wrap .card-header .btn {
	position: relative;
	color: #000;
	padding: 0;
	font-weight: 500;
	box-shadow: 0px 0px 20px 0px rgba(39, 76, 119, 0.1);
	padding: 20px;
	background: #fff;
	width: 100%;
	text-align: left;
	border-radius: 0;
}

.faq_wrap .card-header {
	border: none;
	background-color: transparent;
	border-radius: 0;
}

.faq_wrap .card-header .btn-link {
	text-decoration: none;
}

.faq_wrap .card {
	overflow: visible;
	border: none;
}

.faq_wrap .card .card-header {
	border: none;
	background: transparent;
	padding: 0px;
	box-shadow: 0px 0px 20px 0px rgba(39, 76, 119, 0.1);
	background: #fff;
	margin-bottom: 15px;
}

.faq_wrap .card .card-header .btn{
  font-size: 1rem !important;
  color: var(--primary-color) !important;
}

.kickflow_title{
  color: var(--primary-color);
  margin-bottom: 20px;
}

#subscribeModal .modal-content{
  margin: 0% auto !important;
}
#applygoalModal .modal-content{
  margin: 0% auto !important;
}
#downloadbrochureModal .modal-content{
  margin: 0% auto !important;
}

#current-page {
    width: 60px;
    height: 38px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    font-weight: 500;
    background-color: #fff;
}

button.btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

button.btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

span#total-pages {
    font-size: 1.1rem;
}

.pagination{
  flex-wrap:wrap;
  gap: 10px;
}

.twitter-icon-svg{
  margin-bottom: 2px;
}

.small-text-readby{
  font-size: 12px;
}

.text-primary-custom{
  color: var(--primary-color) !important;
  font-weight: 600;
}


.btn-pulse {
  background-color: var(--primary-color);
  color: white;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

mark.subscribe-highlight-text{
  background-color: var(--primary-opacity-color);
  color: var(--hover-color);
  padding: 5px 10px;
}

.staffing-modal-content{
  padding: 35px !important;
}