@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap');

/* Base Navigation Links */
.nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link span {
    display: inline-block;
    transition: transform 0.3s;
}

.nav-link:hover {
    color: #70AF69;
}

.nav-link:hover span {
    transform: translateY(-2px);
}

/* Mobile Links */
.mobile-link {
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 1.125rem;
    font-weight: 300;
    padding: 1rem 0;
    width: 100%;
    text-align: center;
    transition: color 0.3s;
    display: block;
}

.mobile-link:hover {
    color: #D4AF37;
}

/* Utilities */
.hamburger-line {
    transform-origin: center;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}


@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap');

/* purchase-styles -start */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: #000000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.05);
    z-index: 1000;
}

.navbar-content {
    max-width: 1920px;
    height: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 20;
    /* Above mobile menu */
    background-color: #000000;
    /* Cover mobile menu sliding out */
}

/* --- LOGO --- */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    cursor: pointer;
    user-select: none;
}

/* Updated to support both SVG and IMG logos */
.logo svg,
.logo img {
    height: 5.0rem;
    /* Fix height to fit navbar */
    width: auto;
    /* Maintain aspect ratio */
    transition: transform 0.5s var(--ease-tech);
}

.logo:hover svg,
.logo:hover img {
    transform: scale(1.02);
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    line-height: 1;
}

.logo-subtitle {
    color: #737373;
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: 0.25rem;
    transition: color 0.3s;
}

.logo:hover .logo-subtitle {
    color: var(--color-gold);
}

/* --- DESKTOP NAVIGATION --- */
.desktop-nav {
    display: none;
    /* Hidden on mobile */
    gap: 4rem;
}

.nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    transition: all 0.3s ease-out;
    padding: 0.5rem 0;
}

.nav-link span {
    display: inline-block;
    transition: transform 0.3s;
}

/* Hover Interactions */
.nav-link:hover {
    color: #70AF69;
}

.nav-link:hover span {
    transform: translateY(-2px);
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.8);
}

/* Focus Interaction */
.nav-link:focus-visible {
    outline: 1px solid var(--color-gold-dim);
    outline-offset: 4px;
}

/* Special "Purchase" Item */
.nav-link.special {
    color: white;
    font-weight: 500;
}

.nav-link.special:hover span {
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.nav-link.special::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(212, 175, 55, 0.5);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
    opacity: 0;
    transition: opacity 0.5s;
}

.nav-link.special:hover::after {
    opacity: 1;
}

/* --- MOBILE MENU TOGGLE (Checkbox Hack) --- */
#menu-toggle {
    display: none;
}

.menu-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 30;
}

.menu-btn span {
    display: block;
    height: 1px;
    background-color: white;
    transition: all 0.3s var(--ease-tech);
}

.menu-btn span:nth-child(1) {
    width: 32px;
}

.menu-btn span:nth-child(2) {
    width: 20px;
}

.menu-btn span:nth-child(3) {
    width: 12px;
}

.menu-btn:hover span:nth-child(3) {
    width: 32px;
}

/* Animation when Checked */
#menu-toggle:checked+.menu-btn span:nth-child(1) {
    width: 24px;
    transform: translateY(7px) rotate(-45deg);
    background-color: var(--color-gold);
}

#menu-toggle:checked+.menu-btn span:nth-child(2) {
    opacity: 0;
    width: 0;
}

#menu-toggle:checked+.menu-btn span:nth-child(3) {
    width: 24px;
    transform: translateY(-7px) rotate(45deg);
    background-color: var(--color-gold);
}

/* --- MOBILE NAVIGATION DROPDOWN --- */
.mobile-nav {
    position: absolute;
    top: 100%;
    /* Directly below header */
    left: 0;
    width: 100%;
    background-color: #000000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8);

    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;

    /* Hidden State */
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;

    transition: all 0.5s var(--ease-tech);
    z-index: 10;
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 1.125rem;
    font-weight: 300;
    padding: 1rem 0;
    width: 100%;
    text-align: center;
    transition: color 0.3s;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s, transform 0.3s, color 0.3s;
}

.mobile-nav a:hover {
    color: var(--color-gold);
    letter-spacing: 0.3em;
}

/* Open State */
#menu-toggle:checked~.mobile-nav {
    max-height: 400px;
    /* Allow enough height for content */
    opacity: 1;
    visibility: visible;
    padding: 1.5rem 0;
}

/* Staggered Animation for links */
#menu-toggle:checked~.mobile-nav a {
    opacity: 1;
    transform: translateY(0);
}

#menu-toggle:checked~.mobile-nav a:nth-child(1) {
    transition-delay: 0.05s;
}

#menu-toggle:checked~.mobile-nav a:nth-child(2) {
    transition-delay: 0.1s;
}

#menu-toggle:checked~.mobile-nav a:nth-child(3) {
    transition-delay: 0.15s;
}

#menu-toggle:checked~.mobile-nav a:nth-child(4) {
    transition-delay: 0.2s;
}

#menu-toggle:checked~.mobile-nav a:nth-child(5) {
    transition-delay: 0.25s;
}


/* --- MEDIA QUERIES --- */
@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }

    .menu-btn {
        display: none;
    }

    .mobile-nav {
        display: none;
    }
}

/* --- HERO & UTILITIES (For Demo Visuals) --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 2rem;
    max-width: 1280px;
    margin: 0 auto;
    padding-top: var(--nav-height);
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 100;
    line-height: 0.9;
    letter-spacing: -0.02em;
    background: linear-gradient(to bottom right, #ffffff, #737373);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 2rem;
}

.hero p {
    max-width: 600px;
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    padding-left: 1.5rem;
}

.bg-glow-gold {
    position: fixed;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}


/* purchase-styles -end */



/*
      Scoped footer + translator styles.
      All class names are namespaced with "tc-" to avoid collisions.
      Do NOT set body background or global resets to avoid affecting other sections.
    */

:root {
    --tc-bg: black;
    --tc-muted: #94a3b8;
    --tc-text: #e6eef8;
    --tc-white: #ffffff;
    --tc-accent: #60a5fa;
    --tc-container-max: 1200px;
}

/* Scope everything under wrapper so other site CSS remains untouched */
.tc-footer-wrapper {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: var(--tc-text);
}

/* Footer layout */
.tc-footer {
    background: var(--tc-bg);
    color: var(--tc-text);
    padding: 48px 16px;
}

.tc-container {
    max-width: var(--tc-container-max);
    margin: 0 auto;
    padding: 0 16px;
}

/* Grid */
.tc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media(min-width:720px) {
    .tc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width:1024px) {
    .tc-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Company info */
.tc-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tc-brand__img {
    width: 120px;
    height: 70px;
    border-radius: 8px;
}

.tc-brand__title {
    font-size: 1.125rem;
    color: var(--tc-white);
    margin: 0;
    font-weight: 700;
}

.tc-muted {
    color: white;
    font-size: 0.9375rem;
}

/* Quick links */
.tc-section-title {
    color: var(--tc-white);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
    text-decoration: underline;
}

.tc-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tc-links-list a {
    display: block;
    color: white;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: color .22s ease, transform .18s ease;
    padding: 2px 0;
}

.tc-links-list a:hover {
    color: #70AF69;
    transform: translateX(3px);
}

/* lower area */
.tc-bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(148, 163, 184, 0.08);
}

.tc-bottom-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}

@media(min-width:720px) {
    .tc-bottom-row {
        flex-direction: row;
        align-items: center;
    }
}

.tc-socials {
    display: flex;
    gap: 16px;
    align-items: center;
}

.tc-socials a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: transform .18s ease, color .18s ease;
    will-change: transform;
}

.tc-socials a:hover {
    color: var(--tc-white);
    transform: scale(1.08);
}

.tc-socials svg {
    width: 18px;
    height: 18px;
    display: block;
}

.tc-copyright {
    color: #70AF69;
    font-size: 0.875rem;
    text-align: center;
}

@media(min-width:720px) {
    .tc-copyright {
        text-align: right;
    }
}

.tc-legal-links {
    display: flex;
    gap: 14px;
    margin-top: 8px;
    justify-content: center;
}

@media(min-width:720px) {
    .tc-legal-links {
        justify-content: flex-end;
    }
}

.tc-legal-links a {
    color: white;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color .18s ease;
}

.tc-legal-links a:hover {
    color: var(--tc-white);
}

.tc-space-y-4>*+* {
    margin-top: 16px;
}

/* Translator UI (placed at end of page) - scoped */
.tc-translate {
    margin-top: 20px;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.tc-translate__label {
    color: var(--tc-muted);
    font-size: 0.92rem;
}

.tc-translate__select {
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--tc-text);
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
}

.tc-translate__reset {
    padding: 8px 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--tc-muted);
    border-radius: 8px;
    cursor: pointer;
    transition: background .18s, color .18s;
}

.tc-translate__reset:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--tc-text);
}

/* Hide the Google Translate UI (we will use hidden combo driven programmatically) - VERY scoped selector */
/* NOTE: we hide only Google's banner/balloon for the site; not touching global elements outside wrapper */
.tc-footer-wrapper .goog-te-banner-frame.skiptranslate,
.tc-footer-wrapper .goog-te-balloon-frame {
    display: none !important;
}

.tc-footer-wrapper .goog-te-combo {
    height: 1px;
    width: 1px;
    opacity: 0;
    position: fixed;
    left: -9999px;
    pointer-events: none;
}

/* Tiny helper -> visually hidden (accessible) */
.tc-visually-hidden {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
    border: 0;
    padding: 0;
    margin: -1px;
}


@media (max-width:576px) {

    .dath {
        display: flex;
        justify-content: space-around;
    }

    .about-foot {
        padding: 5px;
    }

    .services-foot {
        padding: 5px;
    }

    .support-foot {
        padding: 5px;
    }

}

.dath {
    display: flex;
    justify-content: space-between;
}

@media (min-width:1000px) {
    .spacer-foot {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    .dath {
        display: flex;
        justify-content: space-around;
    }

    .about-foot {
        padding: 10px;
    }

    .services-foot {
        padding: 10px;
    }

    .support-foot {
        padding: 10px;
    }
}



.tc-brand__img{
            height: 5.3rem;
            width: auto;
            transition: transform 0.5s var(--ease-tech);
        }