@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
/* =====================================================
   ARCHAGENTS - AI AGENCY WEBSITE
   Clean, Minimalist, Black & White, Modern Serif
   ===================================================== */

/* ----- CSS Variables / Design Tokens ----- */
:root {
    /* Colors - Clean Black & White */
    --color-bg: #FAFAFA;
    --color-bg-alt: #F0F0F0;
    --color-text: #0A0A0A;
    --color-text-muted: #555555;
    --color-accent: #0A0A0A;
    --color-white: #FFFFFF;
    --color-border: #E0E0E0;
    
    /* Typography */
    --font-display: "Ubuntu", sans-serif;
    --font-body: "Ubuntu", sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-xxl: 8rem;
    
    /* Sizing */
    --container-max: 1200px;
    --navbar-height: 70px;
    
    /* Effects */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --blur-glass: blur(12px);
    --border-radius: 12px;
    --border-radius-lg: 24px;
}

/* ----- Reset & Base ----- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

li:hover {
    color: var(--color-text-muted);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background-color: #0a2365;
    color: #ffffff;
}

/* ----- Container ----- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ----- Scroll Reveal Masks ----- */
.scroll-mask {
    position: fixed;
    left: 0;
    right: 0;
    height: 100px;
    pointer-events: none;
    z-index: 100;
}

.scroll-mask--top {
    top: 0;
    background: linear-gradient(to bottom, rgb(128, 128, 128) 0%, transparent 100%);
    opacity: 0.3;
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: blur(var(--blur-glass));
}

.scroll-mask--bottom {
    bottom: 0;
    background: linear-gradient(to top, rgb(128, 128, 128) 0%, transparent 100%);
    opacity: 0.3;
    backdrop-filter: var(--blur-glass);
    height: 100px;
    -webkit-backdrop-filter: blur(var(--blur-glass));
}

/* ----- Typography ----- */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-lg);
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
    /* Just a mild gray, you can change this to whatever you want */
}

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: "Ubuntu", sans-serif;
    font-size: 0.97rem;
    font-weight: bolder;
    border-radius: 50px;
    transition: var(--transition-base);
    cursor: pointer;
    background-color: white;
    backdrop-filter: var(--blur-glass);
    color: #072c7e;
    
}
.btn:hover {
    background: none;
    color: white;
    border: 1px solid white;
    box-shadow: 20px 20px 100px white;
    
}

.btn--outline {
    border: 1.5px solid var(--color-white);
    color: var(--color-white);
    background: transparent;
}

.btn--outline:hover {
    background: var(--color-white);
    color: var(--color-text);
}

.btn--filled:hover {
    background: transparent;
    color: var(--color-white);
}

.btn--large {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
    background-image: url();
    color: var(--color-white);
}

.antihero .btn {
    background-color: #011c66;
    color: var(--color-white);
}

.antihero .btn:hover {
    background: none;
    color: #1045AFFC;
    border: 1px solid #1045AFFC;
    box-shadow: 20px 20px 100px #1045AFFC;
}

/* Dark background variant */

/* =====================================================
   NAVBAR
   ===================================================== */
.header {
    position: fixed;
    top: var(--space-sm);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - var(--space-md) * 2);
    max-width: 900px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.navbar__logo {
    height: auto;
    width: 150px;
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.navbar__cta {
    padding: 0.5rem 1.25rem !important;
    color: #ffffff;
    border-radius: 50px;
    background-color: #053399;
}

/* .navbar__cta:hover {
    background-color: white;
    color: linear-gradient(120deg, #004191 0%, #1d6db3 25%, #2563a8 50%, #5a92d4 75%, #e8f1ff 100%);;
} */


.navbar__menu a {
    font-size: 0.9rem;
    font-weight: 500;
    
}


.navbar__burger {
    background: none;
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.navbar__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition-base);
}

/* =====================================================
   HERO SECTION
   ===================================================== */

.hero {
    color: WHITE;
    padding-top: 150px;
    padding-bottom: 0;
    text-align: center;
    background-image: url(../assets/1764010419286.jpg);
    background-repeat: no-repeat;
    
    background-size: cover;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    font-family: "Ubuntu", sans-serif;
    display: inline-block;
    padding: 6px 12px;
    background: none;
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
    margin-bottom: 24px;
}

.hero-title-wrapper {
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    min-height: 2.4em;
    overflow: hidden;
}

.hero-text {
    font-family: "Ubuntu", sans-serif;
    grid-area: 1 / 1;
    font-size: 3.2rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: white;
    text-align: center;

    width: auto;

    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);

    will-change: opacity, filter;
    transition: opacity 0.8s ease-out,
        filter 0.8s ease-out,
        transform 0.8s ease-out;

    opacity: 0;
    filter: blur(12px);

    contain: layout paint;
}

.hero-text.active {
    opacity: 1;
    filter: blur(0);
    transform: scale(1) translate3d(0, 0, 0);
}

.hero-subtitle {
    font-family: "Ubuntu", sans-serif;
    font-size: 14.4px;
    color: white;

    margin-top: 36px;
    margin-bottom: 35px;

    max-width: 600px;
    margin-left: auto;
    margin-right: auto;

    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;

    overflow-wrap: break-word;
    white-space: normal;
    min-width: 0;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    max-width: 1000px;
    margin: 30px auto 40px auto;
    border: 1px solid white;
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: var(--space-md);
    max-width: 800px;
    
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-md);
}

.hero__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: var(--space-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* =====================================================
   RESULTS SECTION (Bento Grid)
   ===================================================== */
.results {
    padding: var(--space-xxl) 0;
    background: white;
    padding-top: 3rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.bento-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    transition: var(--transition-base);
}

.bento-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.bento-card--large {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-card--wide {
    grid-column: span 2;
}

.bento-card__metric {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1;
    display: block;
    margin-bottom: var(--space-xs);
}

.bento-card__label {
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: var(--space-xs);
}

.bento-card__desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.sec2 {
    margin-top: 25px;
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services {
    padding: var(--space-xxl) 0;
    background-image: url(/assets/20251217_225659.png);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.service-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    transition: var(--transition-base);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-alt);
    border-radius: var(--border-radius);
    margin-bottom: var(--space-md);
    color: var(--color-text);
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.service-card__desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* =====================================================
   PROCESS SECTION
   ===================================================== */
.process {
    padding: var(--space-xxl) 0;
    background: var(--color-bg);
}

.process-list {
    max-width: 800px;
    margin: 0 auto;
}

.process-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--color-border);
}

.process-item:last-child {
    border-bottom: none;
}

.process-item__number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a22658a;
    line-height: 1;
    min-width: 80px;
}

.process-item__content {
    flex: 1;
}

.process-item__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.process-item__desc {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* =====================================================
   TESTIMONIALS SECTION
   ===================================================== */
.testimonials {
    padding: var(--space-xxl) 0;
    background-image: url(/assets/20251217_225659.png);
    overflow: hidden;
}

.testimonials-carousel {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    align-items: center;
    padding: var(--space-md) 0;
    transition: transform var(--transition-slow);
}

.testimonial-card {
    flex: 0 0 350px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: all var(--transition-slow);
    filter: blur(2px);
    opacity: 0.5;
    transform: scale(0.9);
}

.testimonial-card.active {
    filter: blur(0);
    opacity: 1;
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.testimonial-card__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto var(--space-sm);
    border: 3px solid var(--color-bg-alt);
}

.testimonial-card__name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-card__role {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: var(--space-sm);
}

.testimonial-card__quote {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    font-style: italic;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.testimonials-nav__btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text);
    transition: var(--transition-base);
}

.testimonials-nav__btn:hover {
    background: #0a2365;
    color: var(--color-white);
    border-color: #0a2365;
}

/* =====================================================
   ANTIHERO SECTION
   ===================================================== */
.antihero {
    padding: var(--space-xxl) 0;
    background: var(--color-bg);
    text-align: center;
}

.antihero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
    color: #0a2365;
}

.antihero__subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    padding: var(--space-xl) 0 var(--space-lg);
    background-image: url(../assets/1764010419286.jpg);
    color: var(--color-white);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer__logo {
    height: auto;
    width: 3.5rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.footer__tagline {
    font-size: 0.95rem;
    opacity: 0.7;
    max-width: 280px;
}

.footer__links h4 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
    opacity: 0.5;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer__links a {
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer__links a:hover {
    opacity: 1;
}

.footer__bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer__bottom p {
    font-size: 0.85rem;
    opacity: 0.5;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

/* Tablet */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-card--large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --space-lg: 3rem;
        --space-xl: 4rem;
        --space-xxl: 5rem;
    }
    
    .header {
        width: calc(100% - var(--space-sm) * 2);
    }
    
    .navbar__menu {
        display: flex;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
        position: absolute;
        top: calc(100% + var(--space-sm));
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: var(--blur-glass);
        -webkit-backdrop-filter: var(--blur-glass);
        border-radius: var(--border-radius-lg);
        box-shadow: var(--shadow-lg);
        padding: var(--space-md);
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
        
        
    }
    
    .navbar__menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        /* Slide into place */
    }
    
    .navbar__cta {
        margin-top: var(--space-xs);
    }
    
    .navbar__burger {
        display: flex;
    }
    
    .navbar__burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .navbar__burger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .navbar__burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .results {
        padding: var(--space-xxl) 0;
        background: white;
        padding-top: 1rem;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-card--large,
    .bento-card--wide {
        grid-column: span 1;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-item {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .process-item__number {
        min-width: auto;
    }
    
    .testimonial-card {
        flex: 0 0 280px;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        text-align: center;
    }
    
    .footer__tagline {
        max-width: 100%;
        text-align: center;
    }
    
    .footer__links h4 {
        margin-bottom: 2px;
    }
    
    .footer__logo {
        margin: auto;
    }
    
    /* Small Mobile */
    @media (max-width: 480px) {
        .hero__ctas {
            flex-direction: column;
            align-items: center;
        }
        
        .btn {
            width: 100%;
            max-width: 280px;
        }
        
        .scroll-mask {
            height: 80px;
        }
    }
}

/* The hidden state */

/* Ensure these containers aren't collapsing */
section {
    min-height: 100px;
}


/* Container */
/* Wrapper to hold everything together */
.trust-section-wrapper {
    margin-top: 40px;
    /* Space from the Hero Button */
    margin-bottom: 30px;
    /* Space before "Your Next Hire" graphic */
    width: 100%;
}

/* The Subtitle Styling */
.trust-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    /* 50% opacity white */
    font-family: "Ubuntu", sans-serif;
    /* Or use your custom font */
    font-size: 0.75rem;
    /* Small text (~12px) */
    text-transform: uppercase;
    letter-spacing: 2px;
    /* Wide spacing looks premium */
    margin-top: 20px;
    /* Space between logos and text */
    font-weight: 500;
}

/* --- REUSE THE PREVIOUS MARQUEE CSS BELOW --- */

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Removed padding here, controlling it in wrapper */
    background: transparent;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 50px;
    /* Adjusted gap for mobile */
    animation: scroll 40s linear infinite;
    /* Slower is more elegant */
}

/* Make sure logos are sized correctly for mobile */
.tech-logo {
    height: 22px;
    /* Slightly smaller looks cleaner on mobile */
    width: auto;
    opacity: 0.6;
    /* Slightly more visible */
    transition: opacity 0.3s ease;
    filter: grayscale(100%) brightness(0) invert(1);
}

.tech-logo:hover {
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    
    100% {
        transform: translateX(-50%);
    }
}

.fade-mask-left,
.fade-mask-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    /* Smaller mask for mobile screens */
    z-index: 2;
    pointer-events: none;
}

.fade-mask-left {
    left: 0;
    background: linear-gradient(to right, #FFFFFF17, transparent);
    /* Match your BG */
}

.fade-mask-right {
    right: 0;
    background: linear-gradient(to left, #FFFFFF17, transparent);
    /* Match your BG */
}

.floating-audit-btn {
    position: fixed;
    font-size: 17px;
    bottom: 20px;
    right: 20px;
    background-image: url(../assets/1764010419286.jpg);
    /* White background for contrast */
    color: white;
    /* Your Dark Blue brand color for text */
    padding: 15px 30px;
    border-radius: 50px;
    /* Makes it a pill shape */
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 50px rgba(255, 255, 255, 0.3);
    /* Drop shadow for depth */
    z-index: 9999;
    /* Ensures it sits on top of everything */
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.43);
}

.floating-audit-btn:hover {
    transform: translateY(-2px);
    /* Slight lift on hover */
}

.floating-audit-btn img {
    filter: grayscale(100%) brightness(0) invert(1);
    height: auto;
    width: 25px;
}
.btnmain{
    opacity: 0.8;
}
a.button,
button {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

a.button:focus,
a.button:active,
button:focus,
button:active {
  background-color: inherit;
  box-shadow: none;
  outline: none;
}

a.button:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
}

.g{
    font-size: 3rem;
}