/* Basic Reset and Base Styles */
* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: "futura-pt",-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #4F575F;
    margin: 0;
    padding: 0;
    background: #fff;
}
p{
    margin-top:0;
    margin-bottom:1rem;
}
p:last-of-type{
    margin-bottom:0;
}


/* Header */
.site-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.site-header:not(.hidden){
    transform: translateY(0%);
    transition: 0.5s all;
}
.site-header.hidden{
    transform: translateY(-100%);
    transition: 0.5s all;
}

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

.site-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-logo img {
    max-height: 50px;
    width: auto;
}

.site-title {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

.site-title a {
    color: #333;
    text-decoration: none;
}

.site-description {
    color: #666;
    font-size: 0.9rem;
    margin: 0.25rem 0 0 0;
}

/* Navigation */
.main-navigation {
    position: relative;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #333;
}

.menu-toggle-icon {
    display: flex;
    flex-direction: column;
    width: 24px;
    height: 18px;
    justify-content: space-between;
}

.menu-toggle-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background: currentColor;
    transition: all 0.3s ease;
}

.primary-menu-wrapper {
    display: block;
}

.primary-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.menu-item {
    position: relative;
}

.menu-item a {
    color: #333 !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    letter-spacing: 1.6px;
}
#menu-footer-menu .menu-item a{
    letter-spacing:normal;
}

.menu-item a:hover {
    color: #0073aa;
}

/*.menu-item.current-menu-item a {
    color: #0073aa;
    font-weight: 600;
}*/

/* Dropdown menus */
.has-dropdown .dropdown-icon {
    transition: transform 0.3s ease;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .primary-menu {
        gap:1rem;
    }
    .button-menu a{
        padding:10px 20px !important;
    }
}
/* Desktop submenu styles */
@media (min-width: 768px) {
    .menu-toggle.hamburger {
        display: none !important;
    }
    .sub-menu-back {
        display: none !important;
    }
    .has-dropdown:hover .dropdown-icon,
    .menu-item-has-children:hover .dropdown-icon {
        transform: rotate(180deg);
    }

    .sub-menu {
        position: absolute;
        top: 100%;
        left: -100px;
        background: #fff;
        border: 1px solid #eee;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        min-width: 200px;
        padding: 0.5rem 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
        display: block;
    }

    .has-dropdown:hover .sub-menu,
    .menu-item-has-children:hover .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .sub-menu .menu-item {
        display: block;
        width: 100%;
    }

    .sub-menu .menu-item a {
        padding: 0.5rem 1rem;
        border-radius: 0;
        display: block;
    }

    .sub-menu .menu-item a:hover {
        background: #f8f9fa;
    }
}

/* Fallback menu */
.fallback-menu .primary-menu {
    display: flex;
    gap: 2rem;
}

/* Mobile Menu */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Skip link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: #0073aa;
    color: #fff;
    padding: 0.5rem 1rem;
    text-decoration: none;
    z-index: 1001;
}

.skip-link:focus {
    left: 0;
}
.pb-56{
    padding-bottom: 56px;
}
.pt-56{
    padding-top: 56px;
}
.pb-16{
    padding-bottom: 16px;
}
.pt-16{
    padding-top: 16px;
}
/* Mobile Responsive */
@media (max-width: 767px) {
    /* Override main.css mobile menu styles */
    .main-navigation .primary-menu {
        display: flex !important;
        flex-direction: column !important;
        position: static !important;
        padding: 24px !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        z-index: auto !important;
    }
    .header-content {
        position: relative;
    }
    
    /* Prevent body scroll when mobile menu is open and keep header sticky */
    body.nav-open {
        overflow: hidden;
    }
    
    /* Ensure header stays sticky when mobile menu is open */
    body.nav-open .site-header {
        position: sticky;
        top: 0;
        z-index: 101; /* Higher than mobile menu */
        background: #fff; /* Ensure background remains solid */
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .primary-menu-wrapper {
        position: fixed;
        top: 80px;
        right: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: #fff;
        z-index: 1000;
        padding: 0;
        transition: right 0.3s ease;
        overflow-y: auto;
        overflow-x: hidden;
        visibility: hidden;
        transition-delay: 0.6s;
    }
    
    .primary-menu-wrapper.active {
        right: 0;
        visibility: visible;
    }

    
    .primary-menu {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        padding: 2rem;
        height: 100%;
        margin: 0;
        transform: translateX(100%);
        transition: all 0.5s;
        background: #fff;
    }

    .primary-menu-wrapper.active .primary-menu{
        transform: translateX(0);
        transition: all 0.5s;
    }
    
    .menu-item {
        border-bottom: 1px solid #B2B2B2;
        width: 100%;
    }

     .menu-item.button-menu {
        border-bottom: none;
     }
    
    .menu-item:last-child {
        border-bottom: none;
    }
    
    .menu-item a {
        padding: 1rem 0;
        justify-content: space-between;
        font-size: 1.25rem;
        font-weight: 400;
        width: fit-content;
        line-height: 1;
    }
    
    .sub-menu {
        position: absolute !important;
        top: 0 !important;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff !important;
        padding: 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
    
    .has-dropdown.active .sub-menu,
    .menu-item-has-children.active .sub-menu {
        transform: translateX(0);
    }
    
    .sub-menu-back {
        display: flex;
        align-items: center;
        padding: 1rem 0;
        border-bottom: 1px solid #eee;
        margin-bottom: 1rem;
        background: none;
        border: none;
        font-size: 1rem;
        color: #333;
        cursor: pointer;
        width: 100%;
        text-align: left;
    }
    
    .sub-menu-back:before {
        content: '←';
        margin-right: 0.5rem;
        font-size: 1.2rem;
    }
    
    .sub-menu .menu-item a {
        padding: 0.5rem 0;
        font-size: 0.9rem;
        color: #666;
    }
    
    .mobile-menu-overlay.active {
        display: block;
    }
    
    /* Mobile toggle animation */
    .menu-toggle.active .menu-toggle-icon span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active .menu-toggle-icon span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .menu-toggle-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

.button-menu a{
    color:#ffffff !important;
    background: #68BF4B !important;
    padding: 16px 32px;
    border-radius: 32px;
    letter-spacing: 1.6px;
    transition: 0.5s all;
}
.button-menu a:hover{
    background: #4A8835 !important;
    transition: 0.5s all;
}
@media(max-width:767px){
    .button-menu a{
        padding: 8px 32px;
         border-radius: 16px;
    }    
}
/* Content */
.site-content {
    min-height: 60vh;
}

.post, .page {
    margin-bottom: 3rem;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.entry-header {
    margin-bottom: 1.5rem;
}

.entry-title {
    font-size: 2.5rem;
    margin: 0 0 0.5rem 0;
    color: #333;
}

.entry-title a {
    color: inherit;
    text-decoration: none;
}

.entry-title a:hover {
    color: #0073aa;
}

.entry-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.entry-content {
    line-height: 1.7;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.entry-content img {
    max-width: 100%;
    height: auto;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

/* Posts List (Simple Layout) */
.posts-list {
    margin: 2rem 0;
}

.posts-list .post {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.posts-list .post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.posts-list .entry-title {
    margin-bottom: 1rem;
}

.posts-list .entry-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.posts-list .entry-title a:hover {
    color: #0073aa;
}

.posts-list .entry-content {
    line-height: 1.7;
}

.posts-list .entry-content p {
    margin-bottom: 1.5rem;
}

.posts-list .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 1rem 0;
}

/* Sidebar */
.sidebar {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.widget {
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

/* Footer */
.site-footer {
     background: #003764;
    color: #fff;
    text-align: left;
    padding:60px 32px;
    background-size:cover;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}


.footer-title {
    font-size:40px;
    line-height:1.2;
    margin-bottom:16px;
    max-width:540px;
    font-weight: 500;
    text-transform: capitalize;
}
.footer-text {
    font-size:20px;
    line-height:1.4;
    font-weight:400;
    margin-bottom:32px;
    color:#FAF8F2
}

.footer-contact p{
    margin:0;
}

.footer-contact .contact-title{
    font-size:24px;
    margin-bottom:16px
}

.footer-contact .contact-content{
    margin-bottom:40px
}
.footer-newsletter .quform-element-row{
    margin-bottom:0px !important;
}

.footer-newsletter input[type="email"]{
    border:none !important;
    border-bottom:1px solid #F3F3F3 !important;
    background: transparent !important;
    appearance: none;
    padding:0;
    color:#F3F3F3 !important;
    border-radius:0;
    font-family: inherit;
}
.footer-newsletter input[type="text"]{
    border:none !important;
    border-bottom:1px solid #F3F3F3 !important;
    background: transparent !important;
    appearance: none;
    padding:0;
    color:#F3F3F3 !important;
    border-radius:0;
    font-family: inherit;
}

.footer-newsletter input[type="date"]{
    border:none !important;
    border-bottom:1px solid #F3F3F3 !important;
    background: transparent !important;
    appearance: none;
    padding:0;
    color:#F3F3F3 !important;
    border-radius:0;
    font-family: inherit;
}

.footer-newsletter input[type="date"]::-webkit-calendar-picker-indicator {
    /* Make the default icon invisible but clickable */
    opacity: 0;
    
    /* You might also use: */
    /* display: none; */ 
}

.footer-newsletter input[type="date"]:after{
    color:#F3F3F3 !important;
}

.footer-newsletter button[type="submit"]{
    color:#F3F3F3;
    padding:16px 32px;
    background-color: #68BF4B;
    appearance: none;
    border:none;
    border-radius:32px;
    letter-spacing: 1.6px;
    font-size: 14px;
    font-family: inherit;
    text-transform: uppercase;
    font-weight: 400;
}

.footer-newsletter button[type="submit"]:hover{
    background-color: #4A8835;
}

.footer-newsletter input[type="submit"]{
    color:#F3F3F3;
    padding:16px 32px;
    background-color: #68BF4B;
    appearance: none;
    border:none;
    border-radius:32px;
    letter-spacing: 1.6px;
    font-size: 14px;
    font-family: inherit;
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer;
}

.footer-newsletter input[type="submit"]:hover{
    background-color: #4A8835;
}

.footer-newsletter textarea {
    border: none !important;
    border-bottom: 1px solid #f3f3f3 !important;
    background: 0 0 !important;
    appearance: none;
    padding: 0;
    color: #f3f3f3 !important;
    border-radius: 0;
    font-family: inherit;
}
.footer-newsletter select{
    border:none !important;
    border-bottom:1px solid #F3F3F3 !important;
    background: transparent !important;
    appearance: none;
    padding:0 !important;
    color:#F3F3F3 !important;
    border-radius:0;
    font-family: inherit;
}
.footer-newsletter .quform-field-select{
    padding:0;
    border:none !important;
    border-bottom:1px solid #F3F3F3 !important;
    background: transparent !important;
}
.footer-newsletter .selectize-input{
    border:none !important;
    background: transparent !important;
    appearance: none;
    padding:0 !important;
    color:#F3F3F3 !important;
    border-radius:0;
    font-family: inherit;
    font-size: inherit;
    box-shadow: none !important;
    line-height: inherit;
}
.footer-newsletter .selectize-dropdown-content{
    background-color: #ffffff;
}

.footer-newsletter input[type="select-one"]{
    border:none !important;
    background: transparent !important;
    appearance: none;
    padding:0;
    color:#F3F3F3 !important;
    border-radius:0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.footer-newsletter input[type="select-one"]::placeholder {
  color:#F3F3F3 !important; 
  opacity: 1; 
}
.selectize-dropdown .selected{
    background-color: #68bf4b !important;
}
.selectize-dropdown .active:not(.selected){
    background-color: #d0ebc7 !important;
}
.selectize-control.single .selectize-input.dropdown-active:after{
    border-color: transparent transparent #ffffff transparent !important;
}
.selectize-control.single .selectize-input:after{
    border-color: #ffffff transparent transparent transparent !important;
}

.footer-newsletter .quform-label-text{
    color:#F3F3F3;
    margin-bottom: 0;;
}
.footer-newsletter .quform-option-label{
    color:#ffffff;
}
.footer-newsletter .quform-element-checkbox .quform-label{
    display:none;
}
.footer-newsletter .quform-label{
    margin-bottom:10px;
}
.quform-required{
    color:#ff3040 !important;
}
.quform-spacer{
    padding-bottom:24px;
}
.quform .quform-field-textarea{
    height:100px;
}
.footer-image{
    padding-top:70%;
    overflow:hidden;
    border-radius:8px;
    width:100%;
}

.max-530{
    max-width:530px;
}
.max-1024{
    max-width: 1024px;
}

@media(min-width:992px){
.footer-content{
    max-width:620px;
}
.footer-image{
    max-width:620px;
}    
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background: #005a87;
    color: #fff;
}

/* Comments */
.comments-area {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
}
.footer-bottom{
    padding-top:32px;
    padding-bottom:32px;
}
.footer-bottom-col{
    display: flex;
    align-items:center;
    gap:16px;
}
#menu-footer-menu{
    display:flex;
    list-style:none;
    margin:0;
    padding:0;
    gap:16px;
}

#menu-footer-menu a{
    color:#F3F3F3 !important;
    opacity:0.8;
    transition: 0.5s all;
}
#menu-footer-menu a{
    opacity: 1;
    transition: 0.5s all;
}

/* Responsive */
@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }
    
    .entry-title {
        font-size: 2rem;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Screen Reader Text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #1D232A;
    color: #fff;
    border:1px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-to-top:hover {
    background: #1D232A;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media(max-width:991px){
    .tablet-hide{
        display:none !important;
    }
}
@media(min-width:992px){
    .desktop-tablet-hide{
        display:none !important;
    }
}
/* Mobile responsive for scroll to top */
@media(min-width:768px){
    .desktop-hide{
        display:none !important;
    }
    .primary-menu-wrapper{
        height: auto !important;
        top:auto !important;
    }
}
@media (max-width: 767px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 80px;
        right: 15px;
        font-size: 16px;
    }
    .footer-title{
        font-size:32px;
        margin-bottom:32px;
    }
    .footer-text{
        font-size:16px;
        margin-bottom:56px;
    }
    .mobile-hide{
        display:none !important;
    }
    .footer-newsletter{
        margin-bottom:40px;
    }
    .footer-newsletter .quform-element-row{
        margin-bottom:0px !important;
    }
    .footer-newsletter button[type="submit"]{
        width:auto !important;
    }
    .footer-bottom-col{
        flex-direction:column-reverse;
        align-items: flex-start;
    }
    .footer-bottom{
        padding-top:32px;
        padding-bottom:32px;
    }
    #menu-footer-menu a{
        padding-top:0;
        padding-bottom:0;
    }
    #menu-footer-menu a:after{
        bottom:0px;
    }
    .site-footer{
        padding-top:56px;
        padding-bottom:56px;
        padding-left:0;
        padding-right:0;
    }
    .button-menu a{
        width:fit-content;
    }
    .site-header{
        padding-bottom:1rem;
    }
    #menu-footer-menu a{
        font-size: 16px !important;
    }
    #menu-footer-menu .menu-item{
        border:none;
    }
    .footer-bottom-col > div{
        width:100%;
    }
    .menu-footer-menu-container{
        width: fit-content;
    }
    #menu-footer-menu{
        white-space: nowrap;
    }
}
.menu-item a{
    position: relative;
}
.menu-item:not(.button-menu) a:after{
    content:"";
    display:block;
    width:0px;
    height:1px;
    background:#000000;
    position: absolute;
    left:50%;
    bottom:10px;
    transform: translateX(-50%);
    transition: 0.5s all;
}
.menu-item:not(.button-menu) a:hover:after{
    width:100%;
    left:0%;
    transform: translateX(0%);
    transition: 0.5s all;
}
#menu-footer-menu .menu-item:not(.button-menu) a:after{
    background:#ffffff;
}
/* Scroll Animations */
[data-anim] {
    opacity: 0;
    transition: all 0.8s ease-out;
}

/* Exception for gradient fade animations - they handle their own visibility */
[data-anim="gradientfade"],
[data-anim="gradientfade-color"],
[data-anim="gradientfade-top"] {
    opacity: 1 !important;
}

[data-anim="fadeup"] {
    transform: translateY(30px);
}

[data-anim="fadedown"] {
    transform: translateY(-30px);
}

[data-anim="fadeleft"] {
    transform: translateX(-30px);
}

[data-anim="faderight"] {
    transform: translateX(30px);
}

[data-anim="fade"] {
    transform: none;
}

[data-anim="scale"] {
    transform: scale(0.9);
}

[data-anim="gradientfade"],
[data-anim="gradientfade-color"] {
    position: relative;
    display: inline-block;
    width: fit-content;
    transition: clip-path 1.2s ease-out;
}

[data-anim="gradientfade"]:not(.animate),
[data-anim="gradientfade-color"]:not(.animate) {
    clip-path: inset(0 100% 0 0);
}

[data-anim="gradientfade"].animate,
[data-anim="gradientfade-color"].animate {
    clip-path: inset(0 0% 0 0);
}

/* Variant: Gradient fade from top */
[data-anim="gradientfade-top"] {
    position: relative;
    display: inline-block;
    width: fit-content;
    transition: clip-path 1.2s ease-out;
}

[data-anim="gradientfade-top"]:not(.animate) {
    clip-path: inset(100% 0 0 0);
}

[data-anim="gradientfade-top"].animate {
    clip-path: inset(0% 0 0 0);
}

[data-anim].animate {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Stagger animation delays for sequential reveals */
[data-anim].animate:nth-child(1) { transition-delay: 0ms; }
[data-anim].animate:nth-child(2) { transition-delay: 100ms; }
[data-anim].animate:nth-child(3) { transition-delay: 200ms; }
[data-anim].animate:nth-child(4) { transition-delay: 300ms; }
[data-anim].animate:nth-child(5) { transition-delay: 400ms; }
[data-anim].animate:nth-child(6) { transition-delay: 500ms; }

@media(max-width:991px){
    .footer-newsletter{
        margin-bottom:56px;
    }
    .site-header{
        padding-bottom: 1rem;
    }
}
.footer-bottom{
    background:#1D232A;
    color:#F3F3F3;
}
.running-text{
    overflow:hidden;
    width: 100%;
    padding-top:4px;
    padding-bottom:4px;
    background:#697584;
    color:#F3F3F3;
    margin-top:8px;
}
.running-text ul{
    display: flex;
    width: fit-content;
    margin:0;
    padding:0;
    list-style: none;
    gap:16px;
}

.running-text ul li{
    white-space: nowrap;
}

/* WhatsApp Floating Button */
.whatsapp-float{
    position:fixed;
    bottom:140px;
    right:20px;
    width:60px;
    height:60px;
    background:#D0EBC7;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:1000;
    box-shadow:0 4px 12px rgba(0,0,0,0.3);
    transition:0.3s all;
    text-decoration:none;
}
.whatsapp-float:hover{
    transform:scale(1.1);
    box-shadow:0 6px 16px rgba(0,0,0,0.4);
}
.whatsapp-float svg{
    width:30px;
    height:30px;
    fill:#000000;
}

@media(max-width:767px){
    .whatsapp-float{
        bottom:140px;
        right:20px;
        width:50px;
        height:50px;
    }
    .whatsapp-float svg{
        width:25px;
        height:25px;
    }
}
.site-footer a{
    color:#ffffff !important;
    text-decoration: underline;
}
.content-right {
    display: flex;
    justify-content: flex-end;
}
.image-cover{
    position:relative;
}
.image-cover > img{
     position:absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/*.form-holder *{
    color: #FAF8F2;
}*/
.footer-newsletter{
    width:100%;
}
.quform-label-text{
    display: block;
}
.wpcf7-checkbox label span{
    color: #ffffff;
}
.wpcf7-checkbox .wpcf7-list-item{
    margin-left:0;
}
/*.privacy .wpcf7-list-item-label{
    display:none;
}*/
.has-checkbox span{
    font-size:14px;
}
.wpcf7-not-valid-tip{
    padding: 3px 15px;
    margin: 0;
    background-color: #f2dede;
    color: #b94a48;
    border-left: 5px solid #c73412;
    width: 100%;
    display: inline-block !important;
}