:root {
    --primary-color: #00E5FF;
    --secondary-color: #00BFA5;
    --neutral-color: #0F172A;
    --white-color: #ffffff;
    --background-color:#020617;
    --font-family: 'Days One', sans-serif;
    --text-font: 'Noto Serif', serif;
    --heading-size: 64px;
    --text-size: 16px;
    --button-size: 16px;

    --max-width: 1440px;

}
*{
    padding: 0;
    margin: 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 229, 255, 0.2) transparent;
}

body {
    background-color: var(--neutral-color);
    margin: 0;
    color: var(--white-color);
    font-size: var(--text-size);
    line-height: 1.4;
    font-weight: 400;
    font-family: var(--text-font);
    /* color: #f8fafc; */
}
a{
    color:var(--white-color);
}

h1, h2, h3, h4, h5, h6{
    font-family: var(--font-family);
    color: var(--white-color);
    line-height: 1.2;
    margin-top: 0;
    font-weight: 600;
}

.tag {
    display: inline-block;
    background: transparent;
    color: var(--secondary-color);
    border-radius: 50px; 
    padding: 6px 18px 6px 0;
    font-size: var(--text-size);
    font-weight: 600;    
}


/* --- Header Container --- */
.header {
    background-color: var(--neutral-color);
    font-family: var(--text-font);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: var(--max-width);
    z-index: 999;
    border: 1px solid rgb(255 255 255 / 16%);
    border-radius: 50px;
    transition: all 0.3s ease;
    /* box-shadow: 0 10px 30px rgba(0, 225, 255, 0.3); */
    height: 80px;
    display: flex;
    align-items: center;

}

.header  .container {
    width: 100%;
}
.container {
    margin: 0 auto;
    padding: 0 1.5rem;
    max-width: var(--max-width);
}

.header-wrapper {
    display: flex;
    /* justify-content: space-evenly; */
    align-items: center;
    /* height: 80px; */
}

/* --- Logo --- */
.logo-icon a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00E5FF;
    text-decoration: none;
    font-family: var(--font-family);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.logo-icon a:hover {
    color: #06b6d4;
    text-shadow: 0 0 12px rgba(0, 229, 255, 0.4);
}

/* --- Desktop Navigation --- */
.navbar {
    display: flex;
    align-items: center;
    margin: 0 0 0 auto;
    font-size: var(--button-size);
}

#mobile-menu {
    display: block;
}

#mobile-menu .nav-menu,
#mobile-menu ul.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
}

#mobile-menu li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 30px 0;
    position: relative;
    display: block;
}

#mobile-menu li a:hover {
    color: #ffffff;
}

/* Active indicator line */
#mobile-menu li.current_page_item > a,
#mobile-menu li.current-menu-item > a
{
    color: #00E5FF;
}

#mobile-menu li a::after ,
.footer-col-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #00E5FF;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    /* Optional glow on the active line */
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}

#mobile-menu li.current_page_item > a::after,
#mobile-menu li.current-menu-item > a::after,
#mobile-menu li a:hover::after {
    width: 100%;
}

/* --- Call to Action Button --- */
.header-actions {
    margin-left: auto;
    font-size: var(--button-size);
}

.header-actions .btn-wrap {
    margin-left: 1rem;
}

.btn-hermosa {
    background-color: #00E5FF;
    color: rgba(15, 23, 42, 0.85);
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #00E5FF;
    display: inline-block;
    box-shadow: 0 4px 14px 0 rgba(0, 229, 255, 0.2);
    /* line-height: 1; */
}

.btn-hermosa:hover {
    background-color: transparent;
    color: #00E5FF;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

/* --- Mobile Menu & Toggles --- */
.menu-toggle,
.close-menu {
    display: none;
    background: transparent;
    border: none;
    color: #cbd5e1;
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-menu {
    position: fixed;
    top: 35px;
    right: 35px;
    z-index: 1002;
    font-size: 2.5rem;
}

.menu-toggle:hover,
.close-menu:hover {
    color: #00E5FF;
}

/* --- Responsive Styles --- */
@media screen and (max-width: 1440px) {
    .header {
        max-width: 100%;
        width: calc(100% - 40px);
    }
}

@media screen and (max-width: 991px) {
    .menu-toggle {
        display: block;
        /* Show hamburger */
    }

    /* Adjust logo size on mobile */
    .logo-icon a {
        font-size: 1.25rem;
    }

    /* Option: Hide the Resume CTA on mobile, or handle via mobile menu */
    .header-actions {
        display: none;
    }

    /* Mobile Menu Full-Screen Wrapper */
    #mobile-menu {
        position: fixed;
        top: 0;
        right: -200%;
        /* Hidden off-screen by default */
        width: 100%;
        height: 100vh;
        background-color: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        z-index: 1001;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* CSS Class to toggle via JS when menu opens */
    #mobile-menu.is-open,
    body.menu-open #mobile-menu {
        right: 0;
    }

    /* Mobile Navigation List */
    #mobile-menu .nav-menu,
    #mobile-menu ul.menu {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        width: 100%;
    }

    #mobile-menu li a {
        font-size: 1.5rem;
        color: #ffffff;
        padding: 10px 0;
        display: inline-block;
    }

    #mobile-menu li a::after {
        bottom: 0px;
    }

    #mobile-menu li.current_page_item > a,
    #mobile-menu li.current-menu-item > a,
    #mobile-menu li a:hover {
        color: #00E5FF;
    }

    /* Only show close button when menu is opened */
    body.menu-open .close-menu,
    .navbar.menu-active .close-menu,
    #mobile-menu.is-open ~ .close-menu,
    .close-menu.is-open {
        display: block;
    }
}

/* --- Footer Styles --- */
.site-footer {
    background-color: var(--neutral-color);
    color: #cbd5e1;
    padding: 60px 0 20px;
    /* font-family: var(--text-font); */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin: 0 auto;
    /* max-width: var(--max-width); */
    width: calc(100% - 40px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col-intro .footer-logo a {
    color: #00E5FF;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    font-family: var(--font-family);
    display: inline-block;
    margin-bottom: 15px;
}

.footer-col-intro p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 400px;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: #00E5FF;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 0;
}

.footer-col-nav ul,
.footer-col-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col-nav ul li,
.footer-col-contact ul li {
    margin-bottom: 15px;
}

.footer-col-nav ul li a 
{
    /* color: #cbd5e1; */
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col-nav ul li a:hover {
    color: #00E5FF;
    transform: translateX(5px);
}
.footer-col-nav ul li a.current_page_item,
.footer-col-nav ul li a.current-menu-item {
    color: #00E5FF;
    transform: translateX(5px);
}

.footer-col-nav ul li a.current-menu-item,
.footer-col-nav ul li a.current_page_item {
    content: '';
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #00E5FF;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    /* Optional glow on the active line */
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}
.footer-col-contact ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
}

.footer-col-contact ul li a,
.footer-col-contact ul li span {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col-contact ul li a:hover {
    color: #00E5FF;
}

.footer-col-contact ul li svg {
    color: #00E5FF;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 0;
}

/* Responsive Footer */
@media screen and (max-width: 991px) {
    .footer-grid  {
       margin-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-col-nav {
        display: none;
    }
}

/* footer CTA banner */
.footer-cta-banner {
    background-color: var(--background-color);
    padding: 60px 0;
    margin-bottom: 40px;
}

.footer-cta-banner .container {
    max-width: var(--max-width);
}

.cta-card {
    background: linear-gradient(135deg, #00E5FF 0%,

    rgba(0, 229, 255, 0.1) 100%
    );
    border-radius: 24px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(99, 73, 199, 0.25);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.08), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.cta-banner-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.5px;
    font-family: var(--font-family);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.cta-banner-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    line-height: 1.7;
    max-width: 700px;
    font-family: var(--text-font);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.cta-banner-actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

.cta-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-icon-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.cta-icon-btn svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

.cta-whatsapp-btn { background: rgba(37, 211, 102, 0.8); }
.cta-whatsapp-btn:hover { background: rgba(37, 211, 102, 1); }

.cta-phone-btn { background: rgba(59, 130, 246, 0.8); }
.cta-phone-btn:hover { background: rgba(59, 130, 246, 1); }

.cta-email-btn { background: rgba(168, 85, 247, 0.8); }
.cta-email-btn:hover { background: rgba(168, 85, 247, 1); }

/* Responsive CTA Banner */
@media screen and (max-width: 991px) {
    .cta-card {
        padding: 50px 35px;
    }

    .cta-banner-title {
        font-size: 2rem;
    }

    .cta-banner-text {
        font-size: 1rem;
    }

    .cta-banner-actions {
        gap: 18px;
    }

    .cta-icon-btn {
        width: 50px;
        height: 50px;
    }

    .cta-icon-btn svg {
        width: 28px;
        height: 28px;
    }
}

@media screen and (max-width: 768px) {
    .footer-cta-banner {
        padding: 40px 0;
        margin-bottom: 30px;
    }

    .cta-card {
        padding: 40px 28px;
        border-radius: 20px;
    }

    .cta-card::before {
        width: 280px;
        height: 280px;
        top: -30%;
        right: -15%;
    }

    .cta-content {
        gap: 20px;
    }

    .cta-banner-title {
        font-size: 1.7rem;
        line-height: 1.3;
    }

    .cta-banner-text {
        font-size: 0.95rem;
        line-height: 1.6;
        max-width: 100%;
    }

    .cta-banner-actions {
        gap: 16px;
        margin-top: 6px;
    }

    .cta-icon-btn {
        width: 48px;
        height: 48px;
    }

    .cta-icon-btn svg {
        width: 26px;
        height: 26px;
    }
}

@media screen and (max-width: 576px) {
    .footer-cta-banner {
        padding: 32px 0;
        margin-bottom: 24px;
    }

    .cta-card {
        padding: 32px 20px;
        border-radius: 16px;
    }

    .cta-content {
        gap: 18px;
    }

    .cta-banner-title {
        font-size: 1.4rem;
    }

    .cta-banner-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .cta-banner-actions {
        gap: 12px;
    }

    .cta-icon-btn {
        width: 44px;
        height: 44px;
    }

    .cta-icon-btn svg {
        width: 24px;
        height: 24px;
    }
}

@media screen and (max-width: 380px) {
    .footer-cta-banner {
        padding: 24px 0;
    }

    .cta-card {
        padding: 28px 16px;
    }

    .cta-banner-title {
        font-size: 1.2rem;
    }

    .cta-banner-text {
        font-size: 0.85rem;
    }

    .cta-icon-btn {
        width: 40px;
        height: 40px;
    }

    .cta-icon-btn svg {
        width: 22px;
        height: 22px;
    }
}

/* =============================================
   SCROLL TO TOP BUTTON + CIRCULAR PROGRESS RING
   ============================================= */
.scroll-to-top {
    position: fixed;
    z-index: 9997;
    bottom: 30px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 229, 255, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease,
                transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
                background 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

/* Visibility triggers (You can toggle a 'visible' class via JS on scroll) */
.scroll-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Positioning class */
.scroll-to-top-right {
    right: 30px;
}

/* Hover */
.scroll-to-top:hover {
    background: rgba(0, 229, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 229, 255, 0.3);
    color: #00E5FF;
}

/* Active */
.scroll-to-top:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Arrow icon — small, centered, above the ring SVG */
.scroll-to-top .scroll-icon {
    width: 18px;
    height: 18px;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, color 0.3s ease;
    color: #ffffff;
    pointer-events: none;
}

.scroll-to-top:hover .scroll-icon {
    transform: translateY(-2px);
    color: #00E5FF;
}

/* ---- SVG Circular Progress Ring ---- */
.scroll-progress-ring {
    position: absolute;
    top: -3px;
    left: -3px;
    width: 60px;
    height: 60px;
    transform: rotate(-90deg); /* 12 o'clock start */
    pointer-events: none;
    overflow: visible;
}

.scroll-progress-ring__track {
    fill: none;
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 2.5;
}

.scroll-progress-ring__fill {
    fill: none;
    stroke: #00E5FF;
    stroke-width: 2.5;
    stroke-linecap: round;
    /* circumference for r=27 → 2π×27 ≈ 169.6 */
    stroke-dasharray: 169.6;
    stroke-dashoffset: 169.6; /* fully hidden at start */
    transition: stroke-dashoffset 0.1s linear;
    filter: drop-shadow(0 0 4px rgba(0, 229, 255, 0.8));
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .scroll-to-top {
        display: none;
    }
     .footer-col-nav {
        display: none;
    }

    .scroll-show-mobile {
        display: flex;
        bottom: 20px;
        width: 44px;
        height: 44px;
    }

    .scroll-to-top-right.scroll-show-mobile {
        right: 20px;
    }

    .scroll-show-mobile .scroll-progress-ring {
        width: 50px;
        height: 50px;
        top: -3px;
        left: -3px;
    }
}
.view-all-btn-container{
    text-align: center;
    margin: 2rem auto;
}

.sent .wpcf7-response-output{
    color: rgb(0, 255, 0);
    border: 1px solid rgb(0, 255, 0);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
}
.invalid .wpcf7-response-output{
    color: rgb(255, 0, 0);
    border: 1px solid rgb(255, 0, 0) !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
}
.invalid .wpcf7-not-valid{
 
    border: 1px solid rgb(255, 0, 0) !important;
   
}