.animated-effect, .news .card.card-resource .card-thumbnail, .news .card.card-resource, .news .card.card-article .card-thumbnail, .news .card.card-article, .founders .founder-member .member-linkedin img, .founders .founder-member .member-linkedin, .what-we-do .service-box .service-info, .what-we-do .service-box .service-main, .what-we-do .service-box, .dropdown.language-picker .dropdown-menu .dropdown-item, .dropdown.language-picker .btn.dropdown-toggle, .navbar .navbar-nav .nav-item .nav-link.social-link img, .navbar .navbar-nav .nav-item .nav-link.social-link, .navbar .navbar-nav .nav-item .nav-link, .navbar, .navbar-brand img {
  transition: 0.25s ease all;
}

.main-subscription-form div.wpforms-container-full input[type=email] {
    height: 56px;
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid rgba(2, 178, 174, 0.5);
    border-radius: 1rem;
    box-shadow: none;
    outline: none;
    max-width: none;
}

.main .main-subscription-form form {
	position: relative;
	margin: 1.5rem auto auto auto;
}

.main-subscription-form .wpforms-container .wpforms-submit-container {
	position: static;
}

.main-subscription-form .wpforms-container .wpforms-field {
	padding: 0;
}

.home-contact-us-form div.wpforms-container-full .wpforms-submit,
.main-subscription-form form .btn.btn-primary {
	height: 58px;
	padding: 1rem 1.5rem;
    border-radius: 1rem;
    background: #02B2AE;
    border-color: #02B2AE;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    box-shadow: none;
    outline: none;
}

.home-contact-us-form div.wpforms-container-full .wpforms-submit {
    font-size: 20px;
    margin-top: 15px;
}

.home-contact-us-form div.wpforms-container-full .wpforms-submit:not(:hover):not(:active),
.main-subscription-form form .btn.btn-primary:not(:hover):not(:active) {
	background: #02B2AE;
	color: #fff;
}

.home-contact-us-form div.wpforms-container-full .wpforms-submit:hover,
.main-subscription-form form .btn.btn-primary:hover {
	box-shadow: none !important;
    outline: none;
    background: #02cbc7;
}

.home-contact-us-form div.wpforms-container-full input[type=text],
.home-contact-us-form div.wpforms-container-full input[type=email],
.home-contact-us-form div.wpforms-container-full textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #BCCBD3;
    border-radius: 1rem;
    box-shadow: none;
    outline: none;
}

.home-contact-us-form div.wpforms-container-full input[type=text],
.home-contact-us-form div.wpforms-container-full input[type=email] {
    height: auto;
}

.home-contact-us-form div.wpforms-container-full .wpforms-field-label {
    font-size: 14px;
    margin-bottom: 10px;
}

.data-lift-icon {
    position: relative;
    top: 5px;
    color: #FFF;
}

.main-navigation .menu-item-has-children {
    position: relative;
    padding-right: 10px;
}

.main-navigation .menu-item-has-children:after {
    content: '';
    position: absolute;
    display: block;
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #000;
    top: 18px;
    right: 0;
}

.main-navigation .menu-item-has-children:hover .sub-menu {
    display: block;
}

.main-navigation .sub-menu {
    display: none;
    position: absolute;
    top: 30px;
    left: 0;
    list-style: none;
    width: 200px;
    background-color: #fff;
    border: 1px solid #02B2AE;
    border-radius: 0.25rem;
    box-shadow: 0px 0px 15px rgba(2,178,174, 0.1);
    margin-top: 0.25rem;
    padding: 0.5rem 0;
}

.main-navigation .navbar .navbar-nav .sub-menu .nav-item {
    margin-left: 10px;
}

@media (max-width: 768px) {
    .main-navigation .sub-menu {
        position: static;
        display: block;
        top: auto;
        left: auto;
        width: 100%;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .main-navigation .menu-item-has-children:after,
    .main-navigation .menu-item-has-children > .nav-link {
        display: none;
    }

    .main-navigation .sub-menu .menu-item {
        margin-bottom: 5px;
    }

    .nav-link {
        padding: 0;
    }
}

.table-height-wrapper {
    max-height: 385px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease;
}

/* Apply fade effect */
.table-height-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.table-height-wrapper.expanded {
    max-height: none; /* Remove max-height when expanded */
}

/* When expanded, hide the fade */
.table-height-wrapper.expanded::after {
    opacity: 0;
    visibility: hidden;
}

.see-more-btn {
    display: block;
    margin: 10px auto;
    background-color: #02B2AE;
    color: #fff;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}
