/* banner and nav */
/* =========================================
           Background Elements
           ========================================= */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background-color: #030303;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
}

/* =========================================
           Scope Wrapper
           ========================================= */
.az-portfolio-wrapper {
    background-color: #030303;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
}

/* Ambient Glow for depth */
.az-ambient-glow {
    position: absolute;
    top: 10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(157, 116, 200, 0.12) 0%, transparent 60%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

/* =========================================
           Creative Fragmented Navbar
           ========================================= */
.az-nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1030;
    pointer-events: none;
    transition: all 0.3s ease;
}

.az-nav-wrapper.scrolled {
    background: rgba(3, 3, 3, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1rem 4vw;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.az-nav-element {
    pointer-events: auto;
}

.az-brand-img {
    height: 55px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.az-brand-img:hover {
    transform: scale(1.05);
}

/* The Floating Glass Pill Menu */
.az-pill-menu {
    display: none;
    background: rgba(20, 20, 22, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 0.4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    align-items: center;
    gap: 0.25rem;
}

@media (min-width: 992px) {
    .az-pill-menu {
        display: flex;
    }
}

.az-pill-link {
    color: #A9AFB7;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    transition: all 0.3s ease;
    position: relative;
}

.az-pill-link:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
}

.az-pill-link.active {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 600;
}

.az-pill-link.active::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #9D74C8;
    border-radius: 50%;
    box-shadow: 0 0 8px #9D74C8;
}

/* Creative CTA Button */
.az-nav-cta {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.8rem;
    border-radius: 100px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.az-nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FFFFFF;
    z-index: -1;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.az-nav-cta:hover {
    color: #030303;
    border-color: #FFFFFF;
}

.az-nav-cta:hover::before {
    transform: translateY(0);
}

/* =========================================
           Creative Showcase Layout
           ========================================= */
.az-showcase-container {
    flex: 1;
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 10;
    margin-top: 80px;
}

.az-content-block {
    width: 35%;
    padding-left: 4vw;
    padding-right: 2vw;
    position: relative;
    z-index: 10;
}

.az-display-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 5vw, 5.5rem);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;

    background: linear-gradient(135deg,
            #ffffff 0%,
            #977BB7 45%,
            #977BB7 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}   

.az-accent-text {
    color: #9D74C8;
}

.az-minimal-desc {
    color: #8A939E;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 90%;
}

.az-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #9D74C8;
    color: #FFFFFF;
    padding: 0.8rem 1.8rem;
    border-radius: 100px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #9D74C8;
    margin-top: 20px;
}

.az-cta-main:hover {
    transform: translateX(10px);
    background: transparent;
    color: #9D74C8;
    box-shadow: 0 10px 30px rgba(157, 116, 200, 0.3);
}

.az-arrow-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.az-cta-main:hover .az-arrow-icon {
    background: rgba(157, 116, 200, 0.2);
}

/* Right Content: Immersive Overflow Slider */
.az-slider-block {
    width: 60%;
    height: 400px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.az-portfolio-swiper {
    width: 100%;
    height: 100%;
    overflow: visible !important;
}

.az-slide-card {
    width: 400px;
    height: 400px;
    aspect-ratio: 1 / 1;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    cursor: grab;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    background: #0A0A0F;
    flex-shrink: 0;
}

.az-slide-card:active {
    cursor: grabbing;
}

/* Image Parallax Effect & Full Box Cover */
.az-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.08);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    filter: brightness(0.7) contrast(1.1);
}

.swiper-slide-active .az-slide-img {
    transform: scale(1);
    filter: brightness(1) contrast(1.1);
}

/* Logo Image Cover in 1:1 Box */
.az-slide-logo-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: #0E0E14;
}

/* Overlay details on the image */
.az-slide-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.6rem 1.8rem;
    background: linear-gradient(to top, rgba(3, 3, 5, 0.95) 0%, rgba(3, 3, 5, 0.4) 60%, transparent 100%);
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) 0.15s;
    z-index: 5;
}

.swiper-slide-active .az-slide-details {
    transform: translateY(0);
    opacity: 1;
}

.az-project-tag {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(157, 116, 200, 0.9);
    color: #FFF;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    margin-bottom: 0.5rem;
}

.az-project-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}

/* Custom Swiper Navigation */
.az-nav-controls {
    position: absolute;
    bottom: 5vw;
    left: 4vw;
    display: flex;
    gap: 1rem;
    z-index: 20;
}

.az-btn-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.az-btn-nav:hover {
    background: #FFFFFF;
    color: #030303;
    transform: scale(1.05);
}

/* =========================================
           Mobile Responsiveness (Hero)
           ========================================= */
@media (max-width: 991px) {
    .az-showcase-container {
        flex-direction: column;
        justify-content: center;
        padding-top: 3rem;
        margin-top: 60px;
    }

    .az-content-block {
        width: 100%;
        padding: 0 5vw;
        margin-bottom: 2.5rem;
    }

    .az-slider-block {
        width: 100%;
        height: 340px;
        padding-left: 5vw;
    }

    .az-slide-card {
        width: 320px;
        height: 320px;
    }

    .az-nav-controls {
        bottom: auto;
        top: -55px;
        right: 5vw;
        left: auto;
    }

    .az-nav-cta {
        display: none;
    }
}

@media (max-width: 576px) {
    .az-slider-block {
        height: 290px;
    }

    .az-slide-card {
        width: 270px;
        height: 270px;
    }
    
    .az-project-title {
        font-size: 1.15rem;
    }
    
    .az-slide-details {
        padding: 1.2rem 1.3rem;
    }
}

/* =========================================
           About Us Section
           ========================================= */
.az-about-section {
    position: relative;
    padding: 2rem 4vw;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: radial-gradient(circle at 80% 20%, rgba(157, 116, 200, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(157, 116, 200, 0.05) 0%, transparent 45%);
}

.az-about-container {
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
}

/* Section Header */
.az-about-header-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: flex-end;
    margin-bottom: 4.5rem;
}

.az-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: #9D74C8;
    background: rgba(157, 116, 200, 0.1);
    border: 1px solid rgba(157, 116, 200, 0.25);
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
}

.az-about-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.1;
    color: #FFFFFF;
    margin: 0;
}

.az-about-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #E2E8F0;
    margin-bottom: 1rem;
}

.az-about-lead strong {
    color: #FFFFFF;
}

.az-about-subtext {
    font-size: 1rem;
    line-height: 1.65;
    color: #8A939E;
    margin: 0;
}

/* Metrics Grid */
.az-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4.5rem;
}

.az-metric-card {
    background: rgba(18, 18, 20, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem 1.6rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.az-metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(157, 116, 200, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.az-metric-card:hover {
    transform: translateY(-6px);
    border-color: rgba(157, 116, 200, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(157, 116, 200, 0.1);
}

.az-metric-card:hover::before {
    opacity: 1;
}

.az-metric-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.az-metric-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    background: linear-gradient(135deg, #FFFFFF 30%, #9D74C8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.az-metric-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(157, 116, 200, 0.1);
    border: 1px solid rgba(157, 116, 200, 0.2);
    color: #9D74C8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.az-metric-card:hover .az-metric-icon {
    background: #9D74C8;
    color: #FFFFFF;
    transform: rotate(6deg) scale(1.05);
}

.az-metric-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.az-metric-sub {
    font-size: 0.86rem;
    color: #8A939E;
    line-height: 1.5;
    margin: 0;
}

/* Bento Wrapper: Founder & Pillars */
.az-bento-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 1.75rem;
    margin-bottom: 4.5rem;
}

.az-bento-founder {
    background: linear-gradient(145deg, rgba(24, 24, 28, 0.85) 0%, rgba(12, 12, 14, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.az-founder-badge {
    align-self: flex-start;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #9D74C8;
    background: rgba(157, 116, 200, 0.12);
    border: 1px solid rgba(157, 116, 200, 0.25);
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    margin-bottom: 2rem;
}

.az-founder-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
}

.az-founder-role {
    font-size: 0.95rem;
    color: #9D74C8;
    font-weight: 500;
    display: block;
    margin-bottom: 1.75rem;
}

.az-founder-quote {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #B5BAC1;
    font-style: italic;
    margin: 0 0 2.5rem 0;
    position: relative;
    padding-left: 1.25rem;
    border-left: 2px solid #9D74C8;
}

.az-founder-stats-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 1rem 1.5rem;
}

.az-strip-item {
    display: flex;
    flex-direction: column;
}

.az-strip-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #717D8A;
    margin-bottom: 0.2rem;
}

.az-strip-val {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #FFFFFF;
}

.az-strip-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.08);
}

/* Bento Pillars */
.az-bento-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.az-pillar-card {
    background: rgba(18, 18, 20, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 2.2rem 1.8rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.az-pillar-card:hover {
    background: rgba(24, 24, 28, 0.8);
    border-color: rgba(157, 116, 200, 0.3);
    transform: translateY(-4px);
}

.az-pillar-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #9D74C8;
    background: rgba(157, 116, 200, 0.1);
    border: 1px solid rgba(157, 116, 200, 0.2);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.az-pillar-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
}

.az-pillar-desc {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #8A939E;
    margin: 0;
}

/* Call to Action Banner */
.az-about-cta-banner {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 24, 38, 0.9) 0%, rgba(14, 14, 18, 0.95) 100%);
    border: 1px solid rgba(157, 116, 200, 0.25);
    border-radius: 24px;
    padding: 3rem 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.az-cta-glow {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(157, 116, 200, 0.25) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}

.az-cta-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
}

.az-cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.az-cta-desc {
    color: #A9AFB7;
    font-size: 1rem;
    margin: 0;
}

.az-about-cta-banner .az-cta-main {
    margin-top: 0;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

/* Responsive Breakpoints */
@media (max-width: 1199px) {
    .az-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .az-bento-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .az-about-header-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .az-bento-pillars {
        grid-template-columns: 1fr;
    }

    .az-about-cta-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 2.25rem 2rem;
    }
}

@media (max-width: 576px) {
    .az-about-section {
        padding: 5rem 4vw;
    }

    .az-metrics-grid {
        grid-template-columns: 1fr;
    }

    .az-bento-founder {
        padding: 2rem 1.5rem;
    }

    .az-founder-stats-strip {
        flex-direction: column;
        gap: 1rem;
    }

    .az-strip-divider {
        display: none;
    }
}

/* =========================================
           Mobile Drawer Navigation
           ========================================= */
.az-mobile-drawer {
    position: fixed;
    top: 70px;
    left: 4vw;
    right: 4vw;
    background: rgba(15, 15, 18, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    display: none;
    flex-direction: column;
    gap: 0.8rem;
    z-index: 1040;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.az-mobile-drawer.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.az-mobile-link {
    color: #A9AFB7;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.az-mobile-link:hover {
    color: #FFFFFF;
    background: rgba(157, 116, 200, 0.15);
}

.az-mobile-cta {
    background: #9D74C8;
    color: #FFFFFF !important;
    text-align: center;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* =========================================
           Continuous Logo Marquee Section
           ========================================= */
.az-logo-marquee-section {
    position: relative;
    padding: 3.5rem 0;
    background: rgba(8, 8, 10, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    z-index: 10;
}

.az-marquee-intro {
    margin-bottom: 1.8rem;
}

.az-marquee-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #717D8A;
    font-weight: 600;
}

.az-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.az-marquee-track {
    display: flex;
    width: max-content;
    gap: 1.75rem;
    animation: azMarquee 30s linear infinite;
}

/* Hover Stop: Pauses marquee when mouse enters */
.az-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes azMarquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.az-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.az-logo-badge {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #9AA2AC;
    background: rgba(20, 20, 24, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.65rem 1.6rem;
    border-radius: 100px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
}

.az-logo-item:hover .az-logo-badge {
    color: #FFFFFF;
    border-color: rgba(157, 116, 200, 0.5);
    background: rgba(157, 116, 200, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(157, 116, 200, 0.2);
}

/* =========================================
           Shared Section Typography
           ========================================= */
.az-section-top {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.az-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: #FFFFFF;
}

.az-section-subtitle {
    font-size: 1.05rem;
    color: #8A939E;
    line-height: 1.6;
    margin-top: 0.75rem;
}

/* =========================================
           Website Portfolio (Hover Scroll)
           ========================================= */
.az-portfolio-section {
    position: relative;
    padding: 2rem 4vw;
    z-index: 10;
}

.az-web-card {
    background: #0B0B0E;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.az-web-card:hover {
    border-color: rgba(157, 116, 200, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(157, 116, 200, 0.15);
}

.az-browser-bar {
    background: #141418;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.az-browser-dots {
    display: flex;
    gap: 6px;
}

.az-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.az-dot-red { background: #FF5F56; }
.az-dot-yellow { background: #FFBD2E; }
.az-dot-green { background: #27C93F; }

.az-browser-address {
    font-family: monospace;
    font-size: 0.75rem;
    color: #6C7682;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.25rem 1rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.az-live-badge {
    font-size: 0.7rem;
    font-weight: 600;
    color: #27C93F;
    background: rgba(39, 201, 63, 0.12);
    border: 1px solid rgba(39, 201, 63, 0.25);
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
}

/* Full-height Frame with Hover Scroll Effect */
.az-web-frame {
    height: 380px;
    overflow: hidden;
    position: relative;
    background: #050507;
}

.az-web-img {
    width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transform: translateY(0);
    transition: transform 6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* On Card Hover: Webpage smoothly scrolls down to the bottom */
.az-web-card:hover .az-web-img {
    transform: translateY(calc(-100% + 380px));
}

.az-scroll-hint {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(3, 3, 5, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #A9AFB7;
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.az-web-card:hover .az-scroll-hint {
    opacity: 0;
}

.az-web-meta {
    padding: 1.5rem 1.6rem;
    background: #0B0B0E;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.az-web-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 0 0.25rem 0;
}

.az-web-category {
    font-size: 0.85rem;
    color: #8A939E;
    margin: 0;
}

.az-web-tags {
    display: flex;
    gap: 0.5rem;
}

.az-tag-sm {
    font-size: 0.72rem;
    color: #9D74C8;
    background: rgba(157, 116, 200, 0.1);
    border: 1px solid rgba(157, 116, 200, 0.2);
    padding: 0.25rem 0.65rem;
    border-radius: 100px;
}

/* =========================================
           Poster Design Section (Lightbox)
           ========================================= */
.az-posters-section {
    position: relative;
    padding: 2rem 4vw;
    background: radial-gradient(circle at 50% 50%, rgba(157, 116, 200, 0.04) 0%, transparent 60%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 10;
}

.az-poster-card {
    background: rgba(18, 18, 22, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.az-poster-card:hover {
    transform: translateY(-8px);
    border-color: rgba(157, 116, 200, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 25px rgba(157, 116, 200, 0.2);
}

.az-poster-img-wrap {
    height: 420px;
    overflow: hidden;
    position: relative;
}

.az-poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.az-poster-card:hover .az-poster-img {
    transform: scale(1.08);
}

.az-poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 3, 5, 0.45);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.az-poster-card:hover .az-poster-overlay {
    opacity: 1;
}

.az-zoom-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #9D74C8;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(157, 116, 200, 0.4);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.az-poster-card:hover .az-zoom-btn {
    transform: scale(1);
}

.az-poster-caption {
    padding: 1.25rem 1.5rem;
    background: #0E0E12;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.az-poster-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9D74C8;
    display: block;
    margin-bottom: 0.35rem;
}

.az-poster-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}

/* =========================================
           Logofolio Scroll Section (Square Design)
           ========================================= */
.az-logo-showcase-section {
    position: relative;
    padding: 6.5rem 0;
    background: #050508;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    z-index: 10;
}

.az-logo-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1.5rem 0;
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.az-logo-scroll-track {
    display: flex;
    gap: 1.8rem;
    width: max-content;
    animation: azLogoScrollMarquee 38s linear infinite;
}

.az-logo-scroll-track:hover {
    animation-play-state: paused;
}

@keyframes azLogoScrollMarquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.az-logo-img-card {
    flex-shrink: 0;
    width: 190px;
    height: 190px;
    aspect-ratio: 1 / 1;
    background: #0F0F14;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 1.25rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    user-select: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    position: relative;
}

.az-logo-img-card:hover {
    transform: translateY(-8px) scale(1.04);
    border-color: rgba(157, 116, 200, 0.6);
    background: #15151C;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 30px rgba(157, 116, 200, 0.25);
}

.az-logo-scroll-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.az-logo-img-card:hover .az-logo-scroll-img {
    transform: scale(1.05);
}

/* =========================================
           2 Local Reels Video Section
           ========================================= */
.az-reels-section {
    position: relative;
    padding: 2rem 4vw;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: radial-gradient(circle at 20% 30%, rgba(157, 116, 200, 0.06) 0%, transparent 60%),
                radial-gradient(circle at 80% 70%, rgba(157, 116, 200, 0.05) 0%, transparent 60%);
    z-index: 10;
}

.az-reel-card {
    position: relative;
    background: #000000;
    border: 3px solid rgba(255, 255, 255, 0.12);
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.8), 0 0 35px rgba(157, 116, 200, 0.15);
    aspect-ratio: 9 / 16;
    max-height: 680px;
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.az-reel-card:hover {
    border-color: rgba(157, 116, 200, 0.6);
    transform: translateY(-8px);
    box-shadow: 0 45px 90px rgba(0, 0, 0, 0.9), 0 0 45px rgba(157, 116, 200, 0.3);
}

.az-reel-phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 18px;
    background: #0E0E12;
    border-radius: 20px;
    z-index: 20;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.az-reel-player-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.az-reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Play/Pause Overlay Icon */
.az-reel-center-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.9;
}

.az-reel-card.playing .az-reel-center-play {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.2);
}

.az-play-icon-glow {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: rgba(157, 116, 200, 0.85);
    backdrop-filter: blur(10px);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 35px rgba(157, 116, 200, 0.8);
}

/* Floating Sound Toggle Button */
.az-reel-top-bar {
    position: absolute;
    top: 24px;
    left: 20px;
    right: 20px;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.az-reel-sound-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 20;
}

.az-reel-sound-btn:hover {
    background: #9D74C8;
    transform: scale(1.08);
}

/* Progress Bar */
.az-reel-progress-track {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 20;
}

.az-reel-progress-fill {
    height: 100%;
    width: 0%;
    background: #9D74C8;
    transition: width 0.1s linear;
}

/* Upload Helper Notification */
.az-reel-upload-hint {
    background: rgba(20, 20, 26, 0.7);
    border: 1px dashed rgba(157, 116, 200, 0.35);
    border-radius: 100px;
    padding: 0.9rem 1.8rem;
    display: inline-block;
    color: #8A939E;
    font-size: 0.9rem;
    margin: 0 auto;
}

.az-hint-badge {
    color: #27C93F;
    background: rgba(39, 201, 63, 0.12);
    border: 1px solid rgba(39, 201, 63, 0.25);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.7rem;
    border-radius: 100px;
    margin-right: 0.6rem;
}

.az-reel-upload-hint code {
    color: #9D74C8;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

/* =========================================
           Footer & Contact Section
           ========================================= */
.az-footer-section {
    position: relative;
    padding: 6rem 4vw 3rem 4vw;
    background: #050507;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    z-index: 10;
}

.az-footer-cta-box {
    background: linear-gradient(135deg, rgba(28, 22, 35, 0.9) 0%, rgba(12, 12, 16, 0.95) 100%);
    border: 1px solid rgba(157, 116, 200, 0.3);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.az-footer-cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #FFFFFF;
}

.az-footer-cta-desc {
    font-size: 1.05rem;
    color: #8A939E;
    margin: 0;
    line-height: 1.7;
}

.az-footer-bottom-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.az-footer-logo {
    height: 48px;
    object-fit: contain;
}

.az-footer-tagline {
    font-size: 0.95rem;
    color: #8A939E;
    line-height: 1.65;
    max-width: 320px;
}

.az-footer-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
}

.az-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.az-footer-list a {
    color: #8A939E;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.az-footer-list a:hover {
    color: #9D74C8;
}

.az-footer-muted {
    color: #6C7682;
    font-size: 0.9rem;
}

/* Footer Social Icons & Quick Connect */
.az-footer-socials {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.az-footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #A9AFB7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.az-footer-social-btn:hover {
    background: #9D74C8;
    color: #FFFFFF;
    border-color: #9D74C8;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(157, 116, 200, 0.4);
}

.az-footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #8A939E;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.az-footer-contact-link svg {
    color: #9D74C8;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.az-footer-contact-link:hover {
    color: #FFFFFF;
    transform: translateX(3px);
}

.az-footer-contact-link:hover svg {
    transform: scale(1.15);
}

.az-footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.az-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    padding: 0.8rem 1.6rem;
    border-radius: 100px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    margin-top: 20px;
}

.az-cta-secondary:hover {
    background: rgba(157, 116, 200, 0.15);
    border-color: #9D74C8;
    color: #9D74C8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(157, 116, 200, 0.25);
}

.az-footer-copyright-bar {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #6C7682;
}

.az-back-to-top {
    color: #9D74C8;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.az-back-to-top:hover {
    color: #FFFFFF;
}

/* =========================================
           Lightbox Modal Styles
           ========================================= */
.az-lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.az-lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.az-lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 3, 5, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.az-lightbox-container {
    position: relative;
    z-index: 10;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.az-lightbox-modal.active .az-lightbox-container {
    transform: scale(1);
}

.az-lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.az-lightbox-close:hover {
    background: #9D74C8;
}

.az-lightbox-content {
    background: #0E0E12;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
    max-width: 800px;
    max-height: 82vh;
}

.az-lightbox-img {
    max-width: 100%;
    max-height: 68vh;
    object-fit: contain;
    display: block;
    background: #050507;
}

.az-lightbox-details {
    padding: 1.25rem 1.75rem;
    background: #0E0E12;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.az-lightbox-cat {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9D74C8;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.az-lightbox-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

/* =========================================
           Video Modal Styles
           ========================================= */
.az-video-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.az-video-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.az-video-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 3, 5, 0.94);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
}

.az-video-modal-container {
    position: relative;
    z-index: 10;
    width: 90vw;
    max-width: 1000px;
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.az-video-modal.active .az-video-modal-container {
    transform: scale(1);
}

.az-video-modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.az-video-modal-close:hover {
    background: #9D74C8;
}

.az-video-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #000000;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

.az-video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================
           Additional Responsive Adjustments
           ========================================= */
@media (max-width: 991px) {
    .az-footer-bottom-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .az-footer-brand-col {
        grid-column: span 2;
    }

    .az-video-thumbnail-wrap {
        height: 380px;
    }

    .az-video-caption-bottom {
        left: 1.5rem;
        right: 1.5rem;
        bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .az-footer-bottom-grid {
        grid-template-columns: 1fr;
    }

    .az-footer-brand-col {
        grid-column: span 1;
    }

    .az-footer-cta-box {
        padding: 2.25rem 1.5rem;
    }

    .az-video-thumbnail-wrap {
        height: 280px;
    }

    .az-play-pulse-btn {
        width: 70px;
        height: 70px;
    }

    .az-play-icon-circle {
        width: 60px;
        height: 60px;
    }

    .az-footer-copyright-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* =========================================
   Why Choose Azrohn Section
   ========================================= */
.az-why-section {
    position: relative;
    padding: 7rem 4vw;
    background: radial-gradient(circle at 50% 20%, rgba(157, 116, 200, 0.08) 0%, transparent 65%),
                radial-gradient(circle at 80% 80%, rgba(157, 116, 200, 0.05) 0%, transparent 60%),
                #040407;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 10;
    overflow: hidden;
}

.az-why-header {
    max-width: 820px;
    margin: 0 auto;
}

.az-why-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #FFFFFF;
}

.az-why-tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    font-weight: 600;
    color: #9D74C8;
    line-height: 1.4;
}

.az-why-lead {
    font-size: 1.02rem;
    color: #8A939E;
    line-height: 1.7;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.az-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-top: 3.5rem;
}

.az-why-card {
    position: relative;
    background: rgba(14, 14, 19, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem 2.2rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.az-why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(157, 116, 200, 0.5);
    background: rgba(20, 20, 28, 0.85);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(157, 116, 200, 0.2);
}

.az-why-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(157, 116, 200, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.az-why-card:hover .az-why-card-glow {
    opacity: 1;
}

.az-why-watermark {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: all 0.35s ease;
}

.az-why-card:hover .az-why-watermark {
    color: rgba(157, 116, 200, 0.12);
    transform: scale(1.08);
}

.az-why-card-content {
    position: relative;
    z-index: 2;
}

.az-why-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(157, 116, 200, 0.12);
    border: 1px solid rgba(157, 116, 200, 0.25);
    color: #9D74C8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.6rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.az-why-card:hover .az-why-icon-wrap {
    background: #9D74C8;
    color: #FFFFFF;
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 10px 25px rgba(157, 116, 200, 0.4);
}

.az-why-num {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9D74C8;
    display: block;
    margin-bottom: 0.4rem;
}

.az-why-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.85rem;
    line-height: 1.3;
}

.az-why-card-desc {
    font-size: 0.95rem;
    color: #8A939E;
    line-height: 1.65;
    margin: 0;
}

/* Bottom Conversion Strip */
.az-why-footer-strip {
    background: linear-gradient(135deg, rgba(25, 20, 32, 0.8) 0%, rgba(11, 11, 15, 0.9) 100%);
    border: 1px solid rgba(157, 116, 200, 0.25);
    border-radius: 20px;
    padding: 2.2rem 2.8rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.az-why-strip-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #FFFFFF;
}

.az-why-strip-sub {
    font-size: 0.95rem;
    color: #8A939E;
}

/* Responsive adjustments for Why Choose Us */
@media (max-width: 1199px) {
    .az-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .az-why-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .az-why-section {
        padding: 5rem 4vw;
    }

    .az-why-card {
        padding: 2rem 1.6rem;
    }

    .az-why-footer-strip {
        padding: 1.8rem 1.5rem;
        text-align: center;
    }
}