/* Navbar Dark Modern Theme */
.main-header-atgvct {
    width: 100%;
    background-color: #1f1f1f;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 999;
}
.nav-container-atgvct {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/*.nav-logo-atgvct img {*/
/*    max-height: 70px;*/
/*    transform: scale(1.3);*/
/*}*/
/*.nav-logo-atgvct img:hover { transform: scale(1.4); }*/



/* ==========================================================
   ⚡ ATGVCT Premium Logo + Multi-Line Company Name (Refined)
   ========================================================== */

.nav-logo-atgvct {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 16px; /* slightly tighter for elegance */
    cursor: pointer;
    overflow: visible;
}

/* Logo Image */
.nav-logo-atgvct img {
    max-height: 70px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 4px 14px rgba(0,255,255,0.1));
}
.nav-logo-atgvct img:hover {
    transform: scale(1.05) translateY(-2px);
    filter: drop-shadow(0 6px 20px rgba(0,255,255,0.25));
}

/* Company Name Container */
.company-name-atgvct {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    display: inline-block;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    animation: textGlow 2.5s ease-in-out infinite alternate;
    line-height: 0.8; /* compact vertical rhythm */
    margin-bottom: -5px;
}


.company-name-atgvct:hover {
    transform: scale(1.05) translateY(-2px);
    filter: drop-shadow(0 6px 20px rgba(0,255,255,0.25));
}

/* ==========================================================
   ⚡ Individual Line Styles (Refined Sizes + Balanced Spacing)
   ========================================================== */

/* === VICTORY === */
.underline1-atgvct {
    display: block;
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 0.8; /* compact vertical rhythm */
    background: linear-gradient(90deg, #00ffff, #06d6a0, #3b82f6);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-flow 5s ease infinite;
    text-shadow: 0 0 6px rgba(0,255,255,0.3);
    margin-bottom: -5px;
}

/* === TAEKWONDO === */
.underline2-atgvct {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 0.8; /* compact vertical rhythm */
    background: linear-gradient(90deg, #ffdd00, #ff6600, #ff2200);
    background-size: 250% 250%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-flow 6s ease infinite;
    text-shadow: 0 0 6px rgba(255,150,0,0.35);
    margin-bottom: -5px;
}

/* === AND FITNESS CENTER === */
.underline3-atgvct {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 750;
    line-height: 0.9; /* compact vertical rhythm */
    background: linear-gradient(90deg, #ff0000, #00ff00, #00ffff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-flow 5s ease infinite;
    position: relative;
    text-shadow: 0 0 4px rgba(255,255,255,0.15);
    margin-bottom: -5px;
}

/* Underline animation for the last line */
.underline3-atgvct::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #ff0000, #00ff00, #00ffff);
    box-shadow: 0 0 6px rgba(255,0,0,0.15), 0 0 8px rgba(0,255,255,0.15);
    transition: width 0.5s ease;
}
.nav-logo-atgvct:hover .underline3-atgvct::after {
    width: 100%;
}

/* ==========================================================
   ⚡ Neon Snake Halo Dots (Unchanged, refined positions)
   ========================================================== */
.nav-logo-atgvct .neon-halo-atgvct {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
}

/* Dots */
.line-horz-atgvct, .line-vert-atgvct {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
}

/* Gradient Glow Effects */
.line-1-atgvct {
    background: radial-gradient(circle, #ff4b4b, #ff0000);
    box-shadow: 0 0 6px #ff4b4b, 0 0 12px #ff0000, 0 0 20px #ff4b4b;
    animation: snakeMove-atgvct 5s linear infinite 0s;
}
.line-2-atgvct {
    background: radial-gradient(circle, #4ba3ff, #007bff);
    box-shadow: 0 0 6px #4ba3ff, 0 0 12px #007bff, 0 0 20px #4ba3ff;
    animation: snakeMove-atgvct 5s linear infinite 0.3s;
}
.line-3-atgvct {
    background: radial-gradient(circle, #ffbb4b, #ff6600);
    box-shadow: 0 0 6px #ffbb4b, 0 0 12px #ff6600, 0 0 20px #ffbb4b;
    animation: snakeMove-atgvct 5s linear infinite 0.6s;
}
.line-4-atgvct {
    background: radial-gradient(circle, #6bff6b, #00ff66);
    box-shadow: 0 0 6px #6bff6b, 0 0 12px #00ff66, 0 0 20px #6bff6b;
    animation: snakeMove-atgvct 5s linear infinite 0.9s;
}
.line-5-atgvct {
    background: radial-gradient(circle, #d94bff, #9900ff);
    box-shadow: 0 0 6px #d94bff, 0 0 12px #9900ff, 0 0 20px #d94bff;
    animation: snakeMove-atgvct 5s linear infinite 1.2s;
}

/* Snake Path (Clockwise Rotation) */
@keyframes snakeMove-atgvct {
    0%, 80%, 100% { top: -10px; left: -10px; }
    20% { top: -10px; left: calc(100% + 10px); }
    40% { top: calc(100% + 10px); left: calc(100% + 10px); }
    60% { top: calc(100% + 10px); left: -10px; }
}

/* ==========================================================
   ⚡ Vertical Line Between Logo & Text
   ========================================================== */
.vertical-line-atgvct {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 2px;
    background: linear-gradient(180deg, #00ffff, #3b82f6, #06d6a0);
    animation: floatHeight 2s ease-in-out infinite alternate;
    opacity: 0.7;
    left: calc(var(--logo-width, 0px) + ((100% - var(--logo-width, 0px) - var(--company-name-width, 0px)) / 2));
}
@keyframes floatHeight {
    0%   { transform: scaleY(0.85); opacity: 0.5; }
    50%  { transform: scaleY(1); opacity: 0.9; }
    100% { transform: scaleY(0.85); opacity: 0.5; }
}

/* ==========================================================
   ⚡ Shared Animations
   ========================================================== */
@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes textGlow {
    0%   { text-shadow: 0 0 1px rgba(255,255,255,0.02), 0 0 2px rgba(59,130,246,0.02); }
    50%  { text-shadow: 0 0 3px rgba(255,255,255,0.04), 0 0 5px rgba(59,130,246,0.04); }
    100% { text-shadow: 0 0 1px rgba(255,255,255,0.02), 0 0 2px rgba(59,130,246,0.02); }
}

/* ==========================================================
   ⚡ Responsive Refinements
   ========================================================== */
@media (max-width: 992px) {
    .underline1-atgvct { font-size: 1.2rem; margin-bottom: -5px;}
    .underline2-atgvct { font-size: 0.95rem; margin-bottom: -5px;}
    .underline3-atgvct { font-size: 0.75rem; margin-bottom: -5px;}
    .nav-logo-atgvct img { max-height: 65px; }
}
@media (max-width: 768px) {
    .underline1-atgvct { font-size: 1rem; margin-bottom: -5px;}
    .underline2-atgvct { font-size: 0.85rem; margin-bottom: -5px;}
    .underline3-atgvct { font-size: 0.70rem; margin-bottom: -5px;}
    .nav-logo-atgvct { gap: 14px; }
}
@media (max-width: 480px) {
    .underline1-atgvct { font-size: 0.9rem; margin-bottom: -5px;}
    .underline2-atgvct { font-size: 0.8rem; margin-bottom: -5px;}
    .underline3-atgvct { font-size: 0.6rem; margin-bottom: -5px;}
    .nav-logo-atgvct img { max-height: 55px;}
    .nav-logo-atgvct { gap: 12px; }
}

/* Navbar Logo Ended */





/* Navbar Menu Items */
.nav-menu-atgvct {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}
.nav-menu-atgvct li a {
    text-decoration: none;
    color: #f5f5f5;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    transition: all 0.3s ease;
}
/* Hover underline */
.nav-menu-atgvct li a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #ff9800;
    position: absolute;
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}
.nav-menu-atgvct li a:hover::after { width: 100%; }

/* Buttons */
.nav-btn-atgvct {
    padding: 4px 12px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Dark-theme premium SaaS Login Button */
.login-btn-atgvct {
    position: relative;           /* required for ::before pseudo-element */
    display: inline-block;        /* inline-block allows padding & pseudo-element */
    padding: 0.2rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #f5f5f5;
    background-color: #2c2c2c;
    border: 1px solid #444;
    border-radius: 10px;
    cursor: pointer;
    /*text-transform: uppercase;*/
    letter-spacing: 0.6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    text-decoration: none;       /* remove underline for links */
    z-index: 1;
}

/* Hover effect */
.login-btn-atgvct:hover {
    background-color: #444;
    color: #ff9800;
    transform: translateY(-1.5px) scale(1.03);
    box-shadow: 0 6px 18px rgba(255, 152, 0, 0.35), 0 4px 10px rgba(0,0,0,0.4);
}

/* Subtle gradient shine */
.login-btn-atgvct::before {
    content: "";
    position: absolute;
    top: 0; left: -60%;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02), rgba(255,255,255,0.06));
    transform: skewX(-20deg);
    transition: all 0.5s ease;
    pointer-events: none;
    border-radius: 10px;
}

/* Hover shine animation */
.login-btn-atgvct:hover::before {
    left: 100%;
}

/* Active / click effect */
.login-btn-atgvct:active {
    transform: scale(0.97);
    box-shadow: 0 3px 10px rgba(255,152,0,0.25), 0 2px 6px rgba(0,0,0,0.3);
}



/* Dark-theme premium SaaS Book Button */
.book-btn-atgvct {
    position: relative;
    display: inline-block;
    padding: 0.65rem 1.8rem;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #06d6a0, #3b82f6, #a855f7);
    background-size: 200% 200%;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 6px 20px rgba(6, 214, 160, 0.35), 0 4px 14px rgba(59, 130, 246, 0.2), 0 0 8px rgba(168, 85, 247, 0.25);
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
    z-index: 1;
}

/* Gradient shine effect */
.book-btn-atgvct::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05), rgba(255,255,255,0.15));
    transform: skewX(-20deg);
    transition: all 0.5s ease;
    pointer-events: none;
    border-radius: 12px;
}

/* Hover effect */
.book-btn-atgvct:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 30px rgba(6, 214, 160, 0.45), 0 6px 20px rgba(59, 130, 246, 0.35), 0 0 20px rgba(168, 85, 247, 0.4);
    background-position: 100% 0;
}

/* Hover shine animation */
.book-btn-atgvct:hover::before {
    left: 100%;
}

/* Click / active feedback */
.book-btn-atgvct:active {
    transform: scale(0.97);
    box-shadow: 0 4px 12px rgba(6, 214, 160, 0.35), 0 2px 8px rgba(59, 130, 246, 0.25);
}

/* Gradient movement animation */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.book-btn-atgvct {
    animation: gradientShift 5s ease infinite;
}




/* ==============================
   🌟 Premium Search Icon + Popup
   ============================== */
.nav-search-atgvct {
    position: relative;
}

/* Search Icon */
#searchToggleAtgvct {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #f5f5f5;
    transition: all 0.35s ease;
    position: relative;
}

#searchToggleAtgvct::after {
    content: "Search Entire Site";
    position: absolute;
    bottom: 150%;
    background: linear-gradient(135deg, #06d6a0, #3b82f6, #a855f7);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(6px) scale(0.95);
    white-space: nowrap;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

#searchToggleAtgvct:hover::after {
    opacity: 1;
    transform: translateY(0) scale(1);
}

#searchToggleAtgvct:hover {
    color: #06d6a0;
    transform: scale(1.3);
    text-shadow: 0 0 12px rgba(6, 214, 160, 0.7);
}

/* Popup Search Box */
.searchbox-popup-atgvct {
    position: absolute;
    top: 130%;
    right: 0;
    width: 280px;
    padding: 14px 12px;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6), 0 0 15px rgba(6,214,160,0.2);
    display: none;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    z-index: 2000;
    animation: fadeInSearch 0.3s ease forwards;
}

/* Animation */
@keyframes fadeInSearch {
    from { opacity: 0; transform: translateY(-10px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Input Field */
.searchbox-popup-atgvct input {
    flex: 1;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    outline: none;
    font-size: 0.95rem;
    background: rgba(45, 45, 45, 0.9);
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 8px rgba(255,255,255,0.05);
}

.searchbox-popup-atgvct input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 10px rgba(59,130,246,0.4);
}

.searchbox-popup-atgvct input::placeholder {
    color: #aaa;
    letter-spacing: 0.3px;
}

/* Buttons */
.searchbox-popup-atgvct button {
    padding: 7px 10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Search Button */
#searchBtnAtgvct {
    background: linear-gradient(135deg, #06d6a0, #3b82f6, #a855f7);
    color: #fff;
    box-shadow: 0 0 10px rgba(6,214,160,0.5);
}

#searchBtnAtgvct:hover {
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 0 15px rgba(6,214,160,0.7);
}

/* Close Button */
#searchCloseAtgvct {
    background: linear-gradient(135deg, #ff4b4b, #ef4444);
    color: #fff;
    font-size: 0.9rem;
    box-shadow: 0 0 8px rgba(255,75,75,0.4);
}

#searchCloseAtgvct:hover {
    transform: scale(1.1);
    box-shadow: 0 0 14px rgba(255,75,75,0.6);
}


/* ==============================================
   Premium Tooltip for Search Icon
   ============================================== */
.search-tooltip-trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #f5f5f5;
}

.search-tooltip-text {
    position: absolute;
    bottom: 140%;
    right: 50%;
    transform: translateX(50%) translateY(5px);
    background: linear-gradient(135deg, #06d6a0, #3b82f6, #a855f7);
    color: #fff;
    padding: 6px 10px;
    font-size: 0.75rem;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    letter-spacing: 0.3px;
    font-weight: 500;
}

/* Tooltip arrow */
.search-tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 50%;
    transform: translateX(50%);
    border-width: 6px;
    border-style: solid;
    border-color: #3b82f6 transparent transparent transparent;
    opacity: 0.9;
}

/* Show tooltip on hover */
.search-tooltip-trigger:hover .search-tooltip-text {
    opacity: 1;
    transform: translateX(50%) translateY(0);
}

/* Optional glow on hover */
.search-tooltip-trigger:hover i {
    color: #06d6a0;
    text-shadow: 0 0 8px rgba(6, 214, 160, 0.7);
}







/* Hamburger */
.nav-toggle-atgvct {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
}
.nav-toggle-atgvct span {
    display: block;
    height: 3px;
    width: 100%;
    background: #f5f5f5;
    border-radius: 2px;
    transition: all 0.4s ease;
}
.nav-toggle-atgvct.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle-atgvct.active span:nth-child(2) { opacity: 0; }
.nav-toggle-atgvct.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Overlay */
.nav-overlay-atgvct {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* ===== Desktop Submenu ===== */
.has-submenu-atgvct { position: relative; cursor: pointer; }
.submenu-atgvct {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #2c2c2c;
    display: none;
    flex-direction: column;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    z-index: 1000;
    padding: 8px 0;
    animation: dropdownFadeAtgvct 0.25s ease forwards;
    min-width: max-content;
}
@keyframes dropdownFadeAtgvct {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.has-submenu-atgvct.active > .submenu-atgvct { display: flex; }

/* triangle pointer */
.has-submenu-atgvct.active > .submenu-atgvct::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 25px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #2c2c2c;
}
.submenu-atgvct li a {
    padding: 10px 20px;
    color: #f5f5f5;
    font-size: 15px;
    display: block;
    white-space: nowrap;
}
.submenu-atgvct li a:hover { background-color: #333; border-radius: 4px; }

/* ===== Mobile ===== */
@media (max-width: 992px) {
    .nav-menu-atgvct {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 340px;
        height: 100%;
        background-color: #1f1f1f;
        flex-direction: column;
        padding-top: 80px;
        gap: 15px;
        transition: right 0.4s ease;
        z-index: 1000;
        overflow-y: auto;
        align-items: flex-start;
    }
    .nav-menu-atgvct.active { right: 0; }

    .nav-menu-atgvct li {
        width: 100%;
        opacity: 0;
        transform: translateX(30px);
        text-align: left;
        padding-left: 25px;
        margin-bottom: 5px;
        position: relative; /* important for submenu positioning */
    }
    .nav-menu-atgvct.active li { animation: slideInRightAtgvct 0.4s forwards; }
    @keyframes slideInRightAtgvct { to { opacity: 1; transform: translateX(0); } }

    .nav-toggle-atgvct { display: flex; }

    /* Mobile submenu fixed to be on top of all items */
    .has-submenu-atgvct {
        position: relative;
        width: 100%;
    }
    .submenu-atgvct {
        position: relative; /* relative to parent for proper stacking */
        top: 0;
        left: 0;
        width: 100%;
        background: #2c2c2c;
        border-radius: 6px;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: max-height 0.35s ease, opacity 0.35s ease;
        z-index: 1001; /* above main items */
        flex-direction: column;
    }
    .has-submenu-atgvct.active > .submenu-atgvct {
        max-height: 500px; /* enough to show all submenu items */
        opacity: 1;
    }
    .submenu-atgvct li { padding-left: 35px; }

    /* + / - toggle */
    .submenu-toggle-atgvct::after {
        content: "+";
        float: right;
        margin-right: 20px;
        font-weight: bold;
        transition: transform 0.3s ease;
    }
    .has-submenu-atgvct.active > .submenu-toggle-atgvct::after {
        content: "-";
    }
}



/* Chevron for submenu */
.submenu-chevron-atgvct {
    display: inline-block;
    margin-left: 10px;
    border: solid #f5f5f5;
    border-width: 0 2px 2px 0;
    padding: 3px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.has-submenu-atgvct.active > a .submenu-chevron-atgvct {
    transform: rotate(-135deg); /* rotate chevron when submenu open */
}

/* Adjust spacing for mobile */
@media (max-width: 992px) {
    .submenu-chevron-atgvct {
        float: right;
        margin-right: 20px;
    }
}







/* Mobile contact only */
.nav-contact-mobile-atgvct {
  display: none;
  margin: 16px 0;
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(145deg, #1a1f2e, #0e121d);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  font-size: 15px;
  animation: fadeInUp 0.4s ease forwards;
}

.nav-contact-mobile-atgvct .nav-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: #f1f5f9;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-contact-mobile-atgvct .nav-contact-item i {
  color: #06d6a0;
  font-size: 1.1em;
  transition: transform 0.3s ease, color 0.3s ease;
}

.nav-contact-mobile-atgvct .nav-contact-item a,
.nav-contact-mobile-atgvct .nav-contact-item span {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 500;
}

.nav-contact-mobile-atgvct .nav-contact-item:hover {
  color: #06d6a0;
  transform: translateX(4px);
}

.nav-contact-mobile-atgvct .nav-contact-item:hover i {
  transform: scale(1.2);
  color: #1b9aaa;
}

/* Smooth fade animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Show only on mobile */
@media (max-width: 768px) {
  .nav-contact-mobile-atgvct { display: block; }
}




/* Smooth hover */
.nav-menu-atgvct li a { transition: color 0.3s ease, transform 0.3s ease; }
.nav-menu-atgvct li a:hover { color: #ff9800; transform: translateY(-2px); }
.nav-btn-atgvct:hover::after { content: none; }
