.seo-tag {display: none; }
.th-admin-edit {
  /* position: relative;  */
  z-index: 150;
  font-size: var(--bs-body-font-size) !important;
  /* display: flex;
  justify-content: end;
  align-items: end; */
}
.th-admin-edit span {
  /* position: absolute; */
  color: var(--color-2)!important;
}
.th-admin-edit1 {
  display: inline-flex;
  align-items: center;
}
.th-admin-edit1 span {
  margin-left: 5px;
}
/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    flex-direction: column;
}

.preloader-logo {
    font-family: var(--font-01);
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    opacity: 0;
}

.preloader-logo span {
    color: var(--accent-orange);
}

.preloader-butterfly {
    width: 120px;
    height: 120px;
    position: relative;
}

.preloader-butterfly svg {
    width: 100%;
    height: 100%;
}

.preloader-wing-left {
    animation: wingFlapLeft 0.4s ease-in-out infinite alternate;
    transform-origin: 50px 50px;
}

.preloader-wing-right {
    animation: wingFlapRight 0.4s ease-in-out infinite alternate;
    transform-origin: 50px 50px;
}

@keyframes wingFlapLeft {
    0% { transform: rotateY(0deg) scaleX(1); }
    100% { transform: rotateY(60deg) scaleX(0.5); }
}

@keyframes wingFlapRight {
    0% { transform: rotateY(0deg) scaleX(1); }
    100% { transform: rotateY(-60deg) scaleX(0.5); }
}

.preloader-progress {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    margin-top: 2rem;
    overflow: hidden;
}

.preloader-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-orange), var(--gold));
    border-radius: 10px;
    transition: width 0.3s ease;
}

.preloader-text {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-top: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: var(--font-03);
}

/* ===== CURSOR ===== */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-orange);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.15s ease, background 0.15s ease;
    mix-blend-mode: difference;
}

.custom-cursor.hover {
    transform: scale(2);
    background: rgba(232, 101, 42, 0.2);
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-orange);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.08s ease;
}
/* ===== NAVBAR ===== */
.navbar-premium {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--primary-blue);
}

.navbar-premium.scrolled {
    background: var(--primary-blue);
    backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.2);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-brand-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    font-weight: 800;
    font-family: var(--font-01);
    box-shadow: 0 4px 15px rgba(232, 101, 42, 0.3);
}

.nav-brand-text {
    font-family: var(--font-01);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

.nav-brand-text span {
    color: var(--accent-orange);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link-premium {
    color: #fff;
    text-decoration: none;
    font-family: var(--font-03);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-link-premium::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-orange), var(--gold));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link-premium:hover {
    color: var(--white);
}

.nav-link-premium:hover::before {
    width: 100%;
}

.nav-cta-btn {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    color: var(--white);
    padding: 12px 28px;
    border-radius: 10px;
    font-family: var(--font-03);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(232, 101, 42, 0.3);
    border: none;
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232, 101, 42, 0.8);
    color: var(--white);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
}

.nav-hamburger span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* =========================================
   2. HAMBURGER & MOBILE MENU CSS
   ========================================= */
.nav-hamburger {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1002; /* Above the mobile menu */
    position: relative;
    background: transparent;
    border: none;
}

.nav-hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    display: block;
}

/* Hamburger Animation to 'X' */
.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}
.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
/* Close Button for Mobile Menu */
.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1002;
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1;
}

.mobile-menu-close:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: rotate(90deg);
    color: var(--white);
}

.mobile-menu-close i {
    font-size: 1.8rem;
}

/* Adjust hamburger to be visible on top of menu */
.nav-hamburger {
    position: relative;
    z-index: 1002;
}
/* Mobile Menu Container */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--dark-blue); /* Fallback to #0d1f3c if var fails */
    z-index: 1001; /* MUST be higher than navbar (1000) */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden; /* Prevents interaction when hidden */
}

.mobile-menu.active {
    right: 0;
    visibility: visible;
}

/* Mobile Menu Links */
.mobile-menu .mobile-link {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-01);
    font-size: 2rem;
    margin: 0.8rem 0;
    transition: color 0.3s ease;
    opacity: 0; /* Hidden initially for GSAP animation */
    transform: translateX(30px);
}

.mobile-menu .mobile-link.submenu-link {
    font-size: 1.3rem;
    font-family: var(--font-03);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin: 0.3rem 0;
}

.mobile-menu .mobile-link:hover {
    color: var(--accent-orange);
}

.mobile-menu .amplify-btn {
    margin-top: 2rem;
    background: var(--accent-orange);
    padding: 14px 35px;
    border-radius: 50px;
    font-family: var(--font-03);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(232, 101, 42, 0.4);
}
@media(max-width:1200px){
.hero-slide-title {
    font-size: 60px !important;
}
    .nav-links {
        display: none !important;
    }
    .nav-hamburger {
        display: flex !important;
    }
    .mobile-menu .mobile-link {
    text-align: center;
}
}
/* Force display on mobile devices */
@media (max-width: 576px) {

.mobile-menu .mobile-link {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-01);
    font-size: 1.5rem;
    margin: 0.4rem 0;
    transition: color 0.3s ease;
    opacity: 0;
    transform: translateX(30px);
    text-align: center;
}
}