/* Base css files */


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html.no-scroll, body.no-scroll {
  overflow: hidden;
  height: 100%;
}
/* 
#video-preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100vw;
  height: 100vh;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: opacity 0.5s ease;
}

#video-preloader video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
} */

    body {
      background-color: #f5f5f5;
    }

    .container {
      width: 1140px;
      max-width: 95%;
      margin: auto;
    }

   .announcement-bar {
    background-color: #FFDDB2;
    padding: 7px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.announcement-text {
    margin-right: 15px;
    font-size: 14px;
    font-weight: 500;
    color: black;
}

.learn-btn {
    background-color: #f5a64a;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    text-decoration: none;
    font-weight: 500;
}

.learn-btn:hover {
    color: black;
}

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

/* Main menu styles */
.primary-menu {
    list-style: none;
    display: flex;
    gap: 5px;
    padding: 0;
    margin: 0;
}

.primary-menu li {
    position: relative;
}

.primary-menu a {
    text-decoration: none;
    padding: 4px 10px;
    display: block;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    height: 50px;
    margin-top: 13px;
}

/* Submenu styles */
.primary-menu li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    display: none;
    min-width: 180px;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.primary-menu li:hover > ul {
    display: block;
}

.primary-menu li ul li a {
    padding: 10px 15px;
    white-space: nowrap;
    color: #333;
}

.primary-menu li ul li a:hover {
    background-color: #f3f3f3;
}


.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background-color: #F8F5F2;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #ECE5DD;
    transition: all 0.3s ease;
}


    .logo {
      font-size: 36px;
      font-weight: bold;
      color: #333;
      text-decoration: none;
    }

    .logo span {
      color: #f5a64a;
    }

    .nav-container {
      display: flex;
      align-items: center;
    }

    .shortcode-field {
      margin-right: 20px;
      font-weight: 500;
      font-size: 16px;
      color: #333;
    }
.partner-btn {
    background-color: #E7623E;
    color: white !important;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    margin-right: 18px;
    display: inline-block;
    margin-left: 18px;
}

.arrow {
      font-size: 10px;
      transition: transform 0.3s;
    }

.language-selector-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
    padding: 9px 8px;
    font-family: 'Poppins';
    background-color: white;
    border-radius: 6px;
}
.language-selector {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #e2e2e2;
    z-index: 1000;
    min-width: -webkit-fill-available;
    border-radius: 4px;
    padding: 3px;
}

.language-option {
    padding: 6px 5px;
    cursor: pointer;
    font-size: 14px;
}

span.selected-country {
    font-size: 14px;
}

.language-option:hover,
.language-option.active {
  background-color: #f0f0f0;
}

.language-option img,
.selected-country img {
  width: 20px;
  height: auto;
  margin-right: 1px;
  vertical-align: middle;
}

.language-selector-container:hover .language-dropdown {
  display: block;
}

    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background-color: #333;
      display: block;
      transition: all 0.3s;
    }

    .mobile-menu {
      position: fixed;
      top: 0;
      left: -100%;
      width: 80%;
      max-width: 300px;
      height: 100%;
      background-color: #fff;
      box-shadow: 2px 0 10px rgba(0,0,0,0.2);
      padding: 20px;
      transition: left 0.3s ease;
      z-index: 9999;
    }

    .mobile-menu.active {
      left: 0;
    }

    .mobile-menu .close-menu {
      font-size: 28px;
      font-weight: bold;
      color: #333;
      cursor: pointer;
      position: absolute;
      top: 15px;
      right: 20px;
    }

    .mobile-menu .shortcode-field {
      font-size: 18px;
      margin-top: 60px;
      margin-bottom: 20px;
    }

    .mobile-menu .partner-btn {
      display: block;
      width: 100%;
      text-align: center;
      margin-bottom: 20px;
    }

    .mobile-menu .language-selector-container {
      width: 100%;
    }

    @media (max-width: 992px) {
      .nav-container {
        display: none;
      }

      .hamburger {
        display: flex;
      }
    }

.getintouce {
    background-color: #6b5b95;
    background-image: url('https://kelp.bigtrunk.in/wp-content/uploads/2025/04/bottom-banner.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: white;
    text-align: center;
    padding: 60px 20px;
    position: relative;
}

.mega-menu-parent-link {
    color: #E7623E;
    margin: 0px;
    border-right: 1px solid #ECE5DD;
    font-size: 18px !important;
    padding: 25px;
}

.primary-menu li.has-mega-menu {
    position: relative;
}

.primary-menu li.has-mega-menu > ul.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 1140px;
    background-color: #fdfaf7;
    padding: 20px 20px;
    z-index: 9999;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0px 0px 10px 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 40px;
}

.primary-menu li.has-mega-menu:hover > ul.mega-menu {
    display: flex;
    align-items: center;
    padding: 0px;
}

/* Show mega menu on hover */
.primary-menu li.has-mega-menu:hover > ul.mega-menu {
    display: flex;
}
.primary-menu li.has-mega-menu > a::after {
    content: " ▼";
    font-size: 0.7em;
    margin-left: 5px;
    color: #333; /* Or match your menu text color */
}

/* Each item inside mega menu */
.primary-menu ul.mega-menu li {
    list-style: none;
    width: auto;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 500;
}


.primary-menu ul.mega-menu li a {
    text-decoration: none;
    color: #000;
    padding: 5px 10px;
    transition: color 0.3s ease;
    height: auto;
    margin: 0px;
}

.primary-menu ul.mega-menu li a:hover {
    color: #E74C3C;
}

/* Round edge for full dropdown panel */
.primary-menu > li.has-mega-menu > ul.mega-menu {
    border-radius: 10px;
}

.getintouce h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: white;
}
        
        .getintouce p {
            max-width: 800px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }
        
     .btn {
    display: inline-block;
    background-color: #FDEFEC;
    color: #E7623E;
    padding: 9px 14px;
    border-radius: 4px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}
        
        .btn:hover {
            background-color: #ff7043;
            color: white;
        }
        
        /* Footer Section */
        .footer {
            background-color: #ffefd5;
            padding: 50px 20px;
        }
        
       .footer-container {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    gap: 40px;
}
        
        .footer-col {
            flex: 1;
            min-width: 200px;
            padding: 0 15px;
        }
        
        .footer-col h3 {
            margin-bottom: 20px;
            color: #333;
            font-size: 18px;
        }
        
        .footer-col ul {
    list-style: none;
    margin: 0px;
}
        
    .footer-col ul li {
    margin-bottom: 5px;
}
       .footer-col ul li a {
    color: #2E2E2E;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}
        
        .footer-col ul li a:hover {
            color: #ff7043;
        }
        
        .logo {
    max-width: 55px;
    margin-bottom: 0px;
}
        
      .company-intro {
    margin-bottom: 20px;
    line-height: 1.6;
    margin-top: 10px;
    font-size: 16px;
    color: black;
}
        
.newsletter h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

        .newsletter {
            margin-top: 20px;
        }
        
 
        
        .newsletter-form {
            display: flex;
            margin-top: 10px;
            max-width: 100%;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 3px 0 0 3px;
            min-width: 0; /* Prevents input from overflowing */
        }
        
        .newsletter-form button {
            padding: 10px 15px;
            background-color: #333;
            color: white;
            border: none;
            border-radius: 0 3px 3px 0;
            cursor: pointer;
            white-space: nowrap;
        }
        
        .social-icons {
            display: flex;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        
        .social-icons a {
            margin-right: 15px;
            margin-bottom: 10px;
        }
        
        .social-icons img {
            width: 24px;
            height: 24px;
            transition: opacity 0.3s ease;
        }
        
        .social-icons img:hover {
            opacity: 0.8;
        }

@media (max-width: 991px) {

  /* Hide primary desktop nav on mobile */
  .main-navigation,
  .partner-btn,
  .language-selector-container {
    display: none;
  }

  /* Show hamburger on mobile */
  .hamburger {
    display: flex;
    flex-direction: column;
    width: 30px;
    height: 25px;
    justify-content: space-between;
    cursor: pointer;
    z-index: 10001;
  }

  .hamburger span {
    height: 3px;
    background: #000;
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  /* Hamburger to Cross (when menu is active) */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Disable page scroll when menu is open */
  body.menu-open {
    overflow: hidden;
    height: 100vh;
  }

  /* Mobile Menu Styles (if not already added) */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 10000;
    transition: right 0.3s ease;
    padding: 20px;
    overflow-y: auto;
  }

  .mobile-menu.active {
    right: 0;
  }

  .close-menu {
    font-size: 26px;
    text-align: right;
    cursor: pointer;
    font-weight: bold;
    margin-bottom: 20px;
  }

  /* Ensure mobile nav items stack */
  .mobile-menu-items li {
    border-bottom: 1px solid #eee;
  }

	.mobile-menu-items li {
    list-style-type: none;
}

.mobile-menu-items {
    margin: 0px;
}

a.partner-btn {
    margin: 0px;
}
    .mobile-menu-items li a {
        display: block;
        padding: 10px 0px;
        color: #333;
        text-decoration: none;
		font-size: 14px;
    }

  /* Dropdown Styling */
  .mobile-menu-items li.menu-item-has-children > a::after {
    content: "▼";
    float: right;
    font-size: 12px;
    margin-left: 10px;
    transition: transform 0.2s ease;
  }

    .mobile-menu-items .sub-menu {
        display: none;
        padding-left: 0px;
        margin-left: 0px;
    }

  .mobile-menu-items li.open > .sub-menu {
    display: block;
  }

  .mobile-menu-items li.open > a::after {
    transform: rotate(180deg);
  }
}

        
        /* Responsive Media Queries */
        @media (max-width: 992px) {
            .footer-container {
                justify-content: flex-start;
            }
            
			
            .footer-col {
                flex-basis: 33.333%;
                min-width: 0;
            }
            
            .footer-col:first-child {
                flex-basis: 100%;
                margin-bottom: 40px;
            }
        }
        
        @media (max-width: 768px) {
			
		.container.announcement-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

			
	
.announcement-text {
    width: 70%;
    text-align: left;
}

.learn-btn {
    width: 30%;
}
			
            .getintouce h1 {
                font-size: 28px;
            }
			
			.logo {
    font-size: 26px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}
			
			.logo {
    max-width: 46px;
    margin-bottom: 0px;
}
			
			.container {
    max-width: 100%;
    margin: auto;
}
			
			.main-header {
    padding: 10px 20px;
			}
			
			.footer-col {
    flex: 1;
    min-width: 200px;
    padding: 0 0px;
}	
			
.announcement-bar {
    background-color: #FFDDB2;
    padding: 7px 20px;
}

			.footer-col-menus {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}
			
			.footer-col-logo {
    width: 100% !important;
    padding: 0px 0px 0px 0px;
}
			
			.footer-container {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
}
            
            .footer-col {
                flex-basis: 50%;
            }
        }
        
        @media (max-width: 576px) {
            .getintouce {
                padding: 40px 15px;
            }
            
            .getintouce h1 {
                font-size: 24px;
            }
            
            .footer-col {
                flex-basis: 100%;
            }
            
        }

.copy-right {
    background-color: #FFDDB2;
    color: #000000;
    padding: 10px;
    text-align: center;
}

.newsletters .wpcf7-submit {
    background-color: #F4F0EC;
    border: 1px solid #D2CAC2;
    border-radius: 4px;
    color: #1B1B1B;
    font-weight: 500;
    font-size: 14px !important;
    padding: 0px 12px !important;
    width: 30%;
}

.newsletters .wpcf7-submit:hover {
	background-color: #E7623E;
	color: white;
}

.copy-right p {
    font-size: 14px;
    margin-bottom: 0px;
    font-weight: 500;
}
.newsletters p {
    display: flex;
    gap: 6px;
}

.newsletters .wpcf7-spinner {
    display: none;
}
.newsletters input {
    width: 80%;
}
.footer-col-logo {
    width: 30%;
    padding: 0px 20px 0px 0px;
}

.footer-col-menus {
    display: flex;
    width: 70%;
}

.brand-item {
	color: #E7623E; 
}

.solutions-box {
  cursor: pointer;
}

.solutions-des {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.9s ease, transform 0.3s ease;
}

.solutions-box:hover .solutions-des {
  display: block;
  animation: fadeSlideIn 0.9s ease forwards;
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.ue_timeline_item_content_main {
  display: flex;
  flex-direction: column;
}

.ue_timeline_item_image {
    order: 2;
    margin-top: 20px;
}
.ue_timeline_item_content_inside {
  order: 1;
}

/* Building an Inclusive Culture */

.sn-tittle {
    font-size: 20px;
    font-weight: 500;
    margin: 6px 0px;
}

h3.sn-items {
    font-size: 16px;
    font-weight: 400;
}

p.sn-descriptions {
    color: #2E2E2E;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
}

.items-graph.five-items {
    margin-right: -5rem;
}

.items-graph.fourth-items {
    margin-right: -5rem;
}

.items-graph.third-items {
    text-align: end;
    margin-left: -4rem;
    margin-top: 0rem;
}

.items-graph {
    padding: 20px;
}

.culture-graph {
    display: flex
;
    width: 1140px;
    margin: auto;
    gap: 50px;
}
.culture-items-middle img {
    width: 70%;
}
.culture-items {
    width: 33%;
}

.culture-items-middle {
    width: 44%;
    text-align: center;
}

.items-graph.first-items {
    margin-left: -5em;
}

.items-graph.third-items {
    width: 400px;
}
.items-graph.secound-items {
    margin-top: 0rem;
    margin-left: -7rem;
}

.items-graph.visible {
    opacity: 1;
}

.items-graph {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.items-graph.animate {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 768px) {
  .culture-graph {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    gap: 20px; /* Reduced gap for smaller screens */
  }
    .culture-graph {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        flex-direction: column-reverse;
    }
  .culture-items,
  .culture-items-middle {
    display: flex;
    flex-direction: column;
    order: initial; /* reset */
  }

  .items-graph.first-items {
    order: 1;
  }

  .items-graph.secound-items {
    order: 2;
  }

  .items-graph.third-items {
    order: 3;
  }

  .items-graph.fourth-items {
    order: 4;
  }

  .items-graph.five-items {
    order: 5;
  }

	.items-graph.first-items { transition-delay: 0.1s; }
.items-graph.secound-items { transition-delay: 0.3s; }
.items-graph.third-items  { transition-delay: 0.5s; }
.items-graph.fourth-items { transition-delay: 0.7s; }
.items-graph.five-items   { transition-delay: 0.9s; }

  .culture-items-middle img {
    order: 6; /* Optional: put image after all content on mobile */
    margin-top: 20px;
    align-self: center;
    max-width: 100%;
  }
	
.culture-items-middle {
    width: 100%;
    text-align: center;
}
	
.items-graph.third-items {
    width: auto;
}
  .culture-items {
    width: 100%;
  }

  .items-graph {
    padding: 10px 0px; /* Add some spacing */
    width: 100%; /* Ensure it takes full width */
    text-align: left; /* Reset text alignment for mobile readability */
  }

  .items-graph.first-items,
  .items-graph.secound-items,
  .items-graph.third-items,
  .items-graph.fourth-items,
  .items-graph.five-items {
    margin: 0 auto;
    text-align: left;
  }
}


.timeline {
  background-image: url('https://kelp.bigtrunk.in/wp-content/uploads/2025/04/Group-32.svg');
  background-size: cover; /* or contain depending on your layout */
  background-repeat: no-repeat;
  background-position: center center;
}


/* Card container */
.card {
  position: relative;
}

.timeline {
    width: 1000px;
    margin: auto;
}
.card:nth-child(odd) {
    padding: 30px 30px 30px 30px;
}

.card:nth-child(even) {
  padding: 30px 30px 30px 30px;
}
/*
.card::before {
    content: "";
    position: absolute;
    width: 50%;
    border: solid #63AB97;
}*/
/*.card:nth-child(odd)::before {
    left: 1px;
    top: -3.2px;
    bottom: -5.1px;
    border-width: 2px 0 2px 2px;
    border-radius: 50px 0 0 50px;
}
*/
/* Setting the top and bottom to "-5px" because earlier it was out of a pixel in mobile devices */
@media only screen and (max-width: 400px) {
  .card:nth-child(odd)::before {
    top: -5px;
    bottom: -5px;
  }
}

/* Setting the border of top, bottom, right */
/*.card:nth-child(even)::before {
    right: -4px;
    top: 3px;
    bottom: 2px;
    border-width: 2px 2px 2px 0px;
    border-radius: 0 50px 50px 0;
}*/

/* Removing the border if it is the first card */
/*.card:first-child::before {
    border-top: 0;
    border-top-left-radius: 0;
    left: 42%;
}*/

.card.cusves-timeline:first-child {
    justify-content: flex-end;
}

.card.cusves-timeline {
    height: 200px;
}
/* Removing the border if it is the last card  and it's odd */
.card:last-child:nth-child(odd)::before {
  border-bottom: 0;
  border-bottom-left-radius: 0;
}

/* Removing the border if it is the last card  and it's even */
.card:last-child:nth-child(even)::before {
  border-bottom: 0;
  border-bottom-right-radius: 0;
}

.info {
    display: flex;
    flex-direction: column;
    width: 50%;
    justify-content: center;
}
.cusves-timeline {
    display: flex
;
    gap: 50px;
}

.card.cusves-timeline:last-child {
    height: 700px;
}
.title {
    color: #6F67A6;
    position: relative;
    font-size: 20px;
    font-weight: 500;
	margin-bottom: 10px;
}

.last-content-info {
    margin: 0px 2px;
}
.info p {
    font-size: 16px;
}

p.sn-numbers {
    margin: 0px;
}

.card:nth-child(even) > .info > .title {
    text-align: left;
}

/* setting dot to the left if the card is odd */
.card:nth-child(odd) > .info > .title::before {
  left: -45px;
}

/* setting dot to the right if the card is odd */
.card:nth-child(even) > .info > .title::before {
  right: -45px;
}



.bottom-click {
    padding: 20px;
    background-color: #ECE5DD;
    border-radius: 20px;
    margin-top: 13rem;
}

.info.first-info {
    margin-right: -3rem;
}

.info.second-info {
    margin-top: 4rem;
}

.third-info {
    margin-top: 11rem;
}

.four-info {
    margin-top: 16rem;
}

.five-info {
    margin-top: 18rem;
}


a.tart-now-btn {
    background-color: #e7623e;
    color: white !important;
    padding: 8px 14px;
    font-size: 14px;
    border-radius: 6px;
}

.tart-now-btn:hover {
	background-color: #000000;
}

.custom-form-wrapper label {
    display: block;
    margin-bottom: 3px;
    font-size: 15px;
    font-weight: 400;
    color: #676767;
}
.custom-form-wrapper input[type="text"], .custom-form-wrapper input[type="email"], .custom-form-wrapper input[type="tel"], .custom-form-wrapper select, .custom-form-wrapper textarea {
    width: 100%;
    padding: 8px 0px !important;
    font-size: 14px;
    border: 0;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    box-sizing: border-box;
    margin-top: 4px;
    box-shadow: none;
    background-color: white !important;
    margin-bottom: 12px;
}

.custom-form-wrapper br {
    display: none;
}

.custom-form-wrapper p {
    margin: 0px;
}

.custom-form-wrapper textarea {
    resize: vertical;
    min-height: 50px;
    height: 50px;
}

.custom-form-wrapper .submit-btn {
    background-color: #e7623e;
    font-weight: 400;
}

.custom-form-wrapper .submit-btn:hover {
    background-color: #000000;
    font-weight: 400;
}

.industry-lines h3 {
    display: flex;
    gap: 20px;
}

.submit-btn {
  display: inline-block;
  width: 100%;
  padding: 12px 20px;
  font-size: 14px;
  background-color: #e85b36;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}
.custom-form-wrapper .wpcf7-spinner {
    display: none;
}
.submit-btn:hover {
  background-color: #d44a28;
}

.kelp-points {
    font-weight: 300;
    font-size: 16px;
}

.list-tables .elementor-icon-list-text {
    border: 1px solid black;
    padding: 5px 9px;
    border-radius: 7px;
    margin-bottom: 10px;
}

.elementor-element .swiper .elementor-swiper-button, .elementor-element .swiper~.elementor-swiper-button, .elementor-lightbox .swiper .elementor-swiper-button, .elementor-lightbox .swiper~.elementor-swiper-button {
    color: rgb(237 237 237 / 0%);
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: xxx-large !important;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}

.jd-descriptions {
  display: none; /* ensure it's hidden initially */
  margin-top: 10px;
  transition: all 0.3s ease;
}

.tags-post .elementor-post-info__terms-list-item {
    background-color: #FAE3C6;
    padding: 2px 10px;
    border-radius: 50px;
	margin-bottom: 5px;
}

h2.elementor-toc__header-title {
    margin-bottom: 20px !important;
}

.elementor-toc__list-wrapper {
    list-style: none;
    padding: 0;
    margin: 0px !important;
}

.tags-post .elementor-post-info__terms-list {
    display: flex !important;
    flex-wrap: wrap;
    gap: 0px;
}
.jd-content {
  cursor: pointer;
  padding: 15px;
  background: #fafafa;
  border: 1px solid #ddd;
  margin-bottom: 10px;
  border-radius: 5px;
}
.jd-content:hover {
  background: #f0f0f0;
}

.content-area .elementor-widget-theme-post-content h1, .content-area .elementor-widget-theme-post-content h2, .content-area .elementor-widget-theme-post-content h3, .content-area .elementor-widget-theme-post-content h4, .content-area .elementor-widget-theme-post-content h5, .content-area .elementor-widget-theme-post-content h6 {
    margin-top: 0px;
    margin-bottom: calc(0.3em + 10px);
}

.e-n-tabs-heading.e-n-tabs-heading.e-n-tabs-heading.e-n-tabs-heading {
    overflow-x: auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: center;
}

.e-n-tabs-heading > .e-n-tab-title {
    white-space: nowrap;
    margin: 0px !important;
}
.e-n-tabs-heading {
    margin-bottom: 14px;
}

.e-n-tabs-content .e-n-tab-title {
display: none; /* don't display mobile tab titles */
}

/* Desktop scroll bar styling, if you want the horizontal scroll on desktop as well */
@media (min-width:1025px){
.e-n-tabs-heading::-webkit-scrollbar-track {
background-color: #dedede;
}

.e-n-tabs-heading::-webkit-scrollbar-thumb {
background-color: #aeaeae;
}
}

.posh-timelinea .uc-items-wrapper .ue_timeline_item:nth-child(3n+1) .ue_timeline_item_subtitle {
    color: #6F67A6 !important; /* First in each group of 3 */
}

.posh-timelinea .uc-items-wrapper .ue_timeline_item:nth-child(3n+2) .ue_timeline_item_subtitle {
    color: #68B39E !important; /* Second in each group of 3 */
}

.posh-timelinea .uc-items-wrapper .ue_timeline_item:nth-child(3n) .ue_timeline_item_subtitle {
    color: #7A3E5F !important; /* Third in each group of 3 */
}

.posh-timelinea .ue_timeline_item_icon_image {
    width: 20px !important;
}



.map-container {
            position: relative;
            width: 100%;
            height: 550px;
        }

        #map {
            width: 100%;
            height: 100%;
        }

.location-buttons {
    position: absolute;
    top: 5%;
    left: 10%;
    z-index: 2;
    display: flex;
    gap: 1px;
    background-color: #C4C4C4;
    border-radius: 10px;
}
  .location-btn {
    background-color: #F7F7F7;
    color: #0D0D0D;
    border: none;
    padding: 12px 15px !important;
    font-size: 14px !important;
    font-weight: 400;
    cursor: pointer;
    border-radius: 0;
}

        .location-btn:first-child {
            border-radius: 4px 0 0 4px;
        }

        .location-btn:last-child {
            border-radius: 0 4px 4px 0;
        }

      .location-btn.active {
    background-color: #6F67A6;
    color: white;
}

       .info-card {
    position: absolute;
    bottom: 15%;
    right: 20%;
    background: white;
    padding: 12px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    max-width: 300px;
    z-index: 3;
}
      .info-card h3 {
    margin: 0 0 8px 0;
    color: #1B1B1B;
    font-size: 20px;
    padding: 10px 0px 10px 0px;
    font-weight: 500;
    border-bottom: 1px solid black;
}

.info-card p {
    margin: 0;
    color: #000000;
    font-size: 14px;
    line-height: 1.3;
}

        .address-text {
            color: #888;
        }

        .custom-marker {
            width: 10px;
            height: 10px;
            background-color: #ef4444;
            border: 2px solid white;
            border-radius: 50%;
        }

        .popup-content h4 {
            margin: 0 0 6px 0;
            color: #333;
            font-size: 14px;
        }

        .popup-content p {
            margin: 2px 0;
            color: #666;
            font-size: 12px;
        }


@media only screen and (max-width: 768px) {
    .info-card {
        position: absolute;
        bottom: 9%;
        right: 5%;
        left: 5%;
        background: white;
        padding: 12px;
        border-radius: 5px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        max-width: none; /* removes the 300px limit for better responsiveness */
        z-index: 3;
    }
.events-sticky-button {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #7A3E5F;
    color: white;
    padding: 9px 5px !important;
    border-radius: 8px 0 0 8px;
    cursor: pointer;
    z-index: 9999;
    writing-mode: vertical-rl;
    line-height: 24px;
    text-orientation: upright;
    font-size: 13px !important;
    font-weight: 500;
    transition: background 0.3s ease;
    display: flex;
    gap: 9px;
    align-items: center;
}
	
.calendar-icon img {
    transform: rotate(90deg);
    width: 20px;
}
}

/* Already provided, but now with staggered delay */
/* .cusves-timeline .info {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.cusves-timeline .info.animate {
  opacity: 1;
  transform: translateY(0);
}

.cusves-timeline .info:nth-of-type(1) { transition-delay: 0.1s; }
.cusves-timeline .info:nth-of-type(2) { transition-delay: 0.3s; }
.cusves-timeline .info:nth-of-type(3) { transition-delay: 0.5s; }
.cusves-timeline .info:nth-of-type(4) { transition-delay: 0.7s; }
.cusves-timeline .info:nth-of-type(5) { transition-delay: 0.9s; }
.cusves-timeline .info:nth-of-type(6) { transition-delay: 1.1s; }
/* Add more if needed */


 */

.companyexpended-wrapper {
    display: flex;
    height: 560px;
    overflow: hidden;
    border-radius: 0px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.companyexpended-card {
  flex: 1;
  padding: 2rem;
  color: white;
  transition: flex 0.5s ease, background 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  position: relative;
}

.companyexpended-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: currentColor;
  opacity: 0.7;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.companyexpended-card h2,
.companyexpended-card p {
  position: relative;
  z-index: 1;
}

.cmp-expended {
    color: white;
    font-weight: 500;
    font-size: 32px;
}

.companyexpended-card p {
    font-size: 18px;
    line-height: 1.6;
    color: white;
}

.companyexpended-card:not(.active):not(:hover)::before {
  opacity: 0.95;
}

.companyexpended-card.active,
.companyexpended-card:hover {
  flex: 2.5;
}

.companyexpended-service { color: #2a2a2a; }
.companyexpended-learning { color: #f6a623; }
.companyexpended-external { color: #7b3f61; }

@media (max-width: 768px) {
  .companyexpended-wrapper {
    flex-direction: column;
    height: auto;
  }
	
	.usa-dropdown button {
    background-color: #ffffff;
    font-size: 10px;
    padding: 9px 1px;
    border: 1px solid #6F67A6;
    font-weight: 300;
    color: #7e799e;
}
	
	h2.cmp-expended {
    font-size: 22px;
    margin-bottom: 10px;
}

    p.cmp-bio {
        font-size: 16px;
        margin-bottom: 0px;
	}
	
   .companyexpended-card {
        flex: unset !important;
        height: 360px;
        margin-bottom: 10px;
    }

  .companyexpended-card.active {
    flex: unset !important;
  }
}


/* 
Latest Menu */

      .menu-items {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 28px;
    margin: 0px;
}

        .menu-item {
            position: relative;
        }

        .menu-link {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 16px;
            padding: 6px 0;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

       .menu-link:hover {
    color: #e7623e;
}

        .menu-link::after {
            content: '';
            width: 8px;
            height: 8px;
            border-right: 2px solid #333;
            border-bottom: 2px solid #333;
            transform: rotate(45deg);
            margin-left: 8px;
            transition: all 0.3s ease;
        }

        .menu-item:hover .menu-link::after {
            border-color: #e7623e;
            transform: rotate(225deg);
        }

.mega-menu-dropdown {
    position: absolute;
    top: 100%;
    right: auto;
    left: auto;
    background: #F8F5F2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    padding: 30px 20px 0px 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-42%) !important;
    transition: all 0.4s ease;
    z-index: 1000;
    min-width: 1000px;
}
  .simple-dropdown {
    min-width: 190px;
    padding: 0px 0;
    left: 70%;
}
        .menu-item:hover .mega-menu-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

        .dropdown-group {
            margin-bottom: 30px;
        }

        .dropdown-group:last-child {
            margin-bottom: 0;
        }

        .group-title {
    font-size: 16px;
    font-weight: 600;
    color: #1B1B1B;
    margin-bottom: 9px;
    padding-bottom: 8px;
    /* border-bottom: 2px solid #3498db; */
    display: inline-block;
}

        .group-items {
    list-style: none;
    margin: 0px;
}

        .group-item {
            margin-bottom: 10px;
        }

        .group-item:last-child {
            margin-bottom: 0;
        }

      .group-link {
    text-decoration: none;
    color: #2E2E2E !important;
    font-size: 14px;
    font-weight: 400;
    padding: 0px 0px;
    display: block;
    border-radius: 0px;
    transition: all 0.3s ease;
}

        .group-link:hover {
            color: #3498db;
            transform: translateX(5px);
        }

       .simple-dropdown .simple-item {
    padding: 8px 20px;
    border-bottom: 1px solid #f1f1f1;
}

        .simple-dropdown .simple-item:last-child {
            border-bottom: none;
        }

        .simple-link {
            text-decoration: none;
            color: #555;
            font-size: 15px;
            font-weight: 400;
            transition: all 0.3s ease;
        }

       .simple-link:hover {
    color: #e7623e;
}

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .menu-container {
                flex-direction: column;
                height: auto;
                padding: 20px;
            }
  .menu-link::after {
    display: none;
  }

            .menu-items {
                flex-direction: column;
                gap: 0;
                width: 100%;
            }

            .menu-item {
                width: 100%;
                border-bottom: 1px solid #f1f1f1;
            }

            .menu-link {
                padding: 15px 20px;
                justify-content: space-between;
            }

            .mega-menu-dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border-radius: 0;
                padding: 0 20px 20px;
                min-width: auto;
                display: none;
            }

  .dropdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

            .menu-item.active .mega-menu-dropdown {
                display: block;
            }
        }

        /* Animation for mobile toggle */
        .mobile-toggle {
            display: none;
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
        }


.solutions-des {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 8px;
    scrollbar-width: thin;
    scrollbar-color: #ffffff #655e96;
}

.solutions-des::-webkit-scrollbar {
  width: 6px;
}

.solutions-des::-webkit-scrollbar-track {
  background: #f3f3f3; /* light background for track */
  border-radius: 10px;
}

.solutions-des p {
    margin: 0px;
}
.solutions-des p:nth-of-type(2) {
  margin-top: 12px; /* or whatever style you need */
}


.solutions-des::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #6F67A6, #7A3E5F);
  border-radius: 10px;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.solutions-des::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #7A3E5F, #68B39E);
}



/* First Tab */
.meet-team .e-n-tabs .e-n-tab-title:nth-child(1) {
    background-color: #6F66A7 !important;
}

/* Second Tab */
.meet-team .e-n-tabs .e-n-tab-title:nth-child(2) {
    background-color: #68B39E !important;
}

/* Third Tab */
.meet-team .e-n-tabs .e-n-tab-title:nth-child(3) {
    background-color: #F0A447 !important;
}

/* Fourth Tab */
.meet-team .e-n-tabs .e-n-tab-title:nth-child(4) {
    background-color: #F58853 !important;
}

.meet-team .e-n-tabs-heading {
    margin-bottom: 0;
}


.ue_timeline_item_text p {
    text-align: justify;
}

.info p {
    font-size: 16px;
    text-align: justify;
}

.kelpexpanding-content p {
    margin-top: 3rem;
}


#founder-message p {
    overflow: hidden;
    max-height: 300px;
    transition: max-height 0.4s ease;
    text-align: justify;
}

#founder-message p.expanded {
  max-height: 2000px; /* enough for full text */
}

#founder-message .read-toggle {
    display: inline-block;
    margin-top: 0px;
    color: #E7623E;
    cursor: pointer;
    font-weight: 500;
    border-bottom: 1px solid #E7623E;
}


/* =============================================
   POST CONTENT TYPOGRAPHY — Scoped Styles
   Selector: .post-kelp
   ============================================= */

/* --- H1 Heading --- */
.post-kelp h1 {
  font-size: 2.25rem;          /* ~36px */
  font-weight: 800;
  line-height: 1.2;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

/* --- H2 Heading --- */
.post-kelp h2 {
  font-size: 1.75rem;          /* ~28px */
  font-weight: 700;
  line-height: 1.3;
  margin-top: 2rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

/* --- H3 Heading --- */
.post-kelp h3 {
  font-size: 1.375rem;         /* ~22px */
  font-weight: 600;
  line-height: 1.4;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0;
}

/* --- H4 Heading --- */
.post-kelp h4 {
  font-size: 1.125rem;         /* ~18px */
  font-weight: 600;
  line-height: 1.45;
  margin-top: 1.5rem;
  margin-bottom: 0.65rem;
  letter-spacing: 0;
}

/* --- H5 Heading --- */
.post-kelp h5 {
  font-size: 1rem;             /* ~16px */
  font-weight: 600;
  line-height: 1.5;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

/* --- H6 Heading --- */
.post-kelp h6 {
  font-size: 0.875rem;         /* ~14px */
  font-weight: 600;
  line-height: 1.5;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* --- Bold inside all headings --- */
.post-kelp h1 b, .post-kelp h1 span b,
.post-kelp h2 b, .post-kelp h2 span b,
.post-kelp h3 b, .post-kelp h3 span b,
.post-kelp h4 b, .post-kelp h4 span b,
.post-kelp h5 b, .post-kelp h5 span b,
.post-kelp h6 b, .post-kelp h6 span b {
  font-weight: inherit;
}

/* --- Paragraph --- */
.post-kelp p {
  font-size: 1rem;             /* ~16px */
  font-weight: 400;
  line-height: 1.75;
  margin-top: 0;
  margin-bottom: 1rem;
}

/* --- Inline Span (data-contrast elements) --- */
.post-kelp p span,
.post-kelp li span {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

/* --- Bold Spans inside lists --- */
.post-kelp li b,
.post-kelp li span b {
  font-weight: 700;
}

/* --- Unordered List --- */
.post-kelp ul {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  padding-left: 0;
  list-style: disc;
}

/* --- List Item --- */
.post-kelp ul li {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

/* --- Table --- */
.post-kelp table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.post-kelp table th {
  font-weight: 700;
  background-color: #f5f5f5;
  padding: 10px 12px;
  text-align: left;
  border: 1px solid #ddd;
}

.post-kelp table td {
  padding: 10px 12px;
  border: 1px solid #ddd;
  font-weight: 400;
  vertical-align: top;
}

/* --- Anchor / Scroll targets (no visual impact) --- */
.post-kelp .elementor-menu-anchor {
  display: block;
  height: 0;
  visibility: hidden;
}

/* --- Remove extra whitespace from empty paragraphs --- */
.post-kelp p:empty {
  display: none;
}