* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}

body {
    background: #000000;
    color: white;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 35% 60%, rgba(181, 52, 34, 0.3) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 20%, rgba(181, 52, 34, 0.2) 0%, transparent 20%),
        radial-gradient(ellipse at 85% 75%, rgba(181, 52, 34, 0.2) 0%, transparent 30%);
    pointer-events: none;
    z-index: -1;
}

/* Navigation */
.agora-main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.agora-nav-wrapper {
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.agora-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.agora-logo img {
    width: 120px;
    height: 80px;
}

.agora-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff9784;
    line-height: 1;
}

.agora-logo-subtitle {
    font-size: 0.7rem;
    color: #999;
    margin-top: -2px;
    letter-spacing: 0.1em;
}

.agora-nav-menu {
    display: flex;
    gap: 2.5rem;
}

.agora-nav-item {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.agora-nav-item:hover {
    color: #ed654c;
}

.agora-nav-contact-btn {
    background: #ed654c;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.agora-nav-contact-btn:hover {
    background: #fe7a4d;
}

/* Mobile Navigation */
.agora-mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    cursor: pointer;
    z-index: 1001;
}

.agora-hamburger {
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.agora-mobile-menu-toggle.active .agora-hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.agora-mobile-menu-toggle.active .agora-hamburger:nth-child(2) {
    opacity: 0;
}

.agora-mobile-menu-toggle.active .agora-hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.agora-mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    z-index: 999;
    flex-direction: column;
    gap: 1.5rem;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.agora-mobile-menu.active {
    display: flex;
}

.agora-mobile-nav-item {
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 400;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.agora-mobile-nav-item:hover {
    background: rgba(255, 107, 53, 0.1);
    color: #ff9784;
}

.agora-mobile-contact {
    background: #ff9784;
    color: white !important;
    font-weight: 600;
    margin-top: 1rem;
}

.agora-mobile-contact:hover {
    background: rgb(181,52,34) !important;
}

/* Mobile Responsive Rules */
@media (max-width: 768px) {
    .agora-nav-menu,
    .agora-nav-contact-btn {
        display: none;
    }

    .agora-mobile-menu-toggle {
        display: flex;
    }

    .agora-nav-wrapper {
        padding: 0 1rem;
    }

    .agora-logo img {
        width: 100px;
        height: 67px;
    }
}

@media (max-width: 480px) {
    .agora-mobile-menu {
        padding: 1.5rem;
        top: 60px;
        max-height: calc(100vh - 60px);
    }

    .agora-mobile-nav-item {
        font-size: 1.1rem;
        padding: 0.875rem;
    }

    .agora-logo img {
        width: 80px;
        height: 53px;
    }
}



/* Contact Section */
.agora-contact-section {
    padding: 6rem 2rem;
    padding-top: 3rem;
    background: transparent;
    position: relative;
    text-align: center;
}

.agora-contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.agora-contact-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ff9784;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.agora-contact-label i {
    color: #ed654c;
    font-size: 1.1rem;
}

.agora-contact-title {
    font-size: 3rem;
    font-weight: 400;
    color: white;
    margin-bottom: 4rem;
}

.agora-contact-options {
    position: relative;
    width: 100%;
    display: flex;
    gap: 4rem;
    justify-content: center;
    align-items: flex-start;
}

.agora-contact-option {
    flex: 1;
    width: 100%;
    max-width: 511px;
    height: max-content;
    min-height: 315px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.agora-option-title {
    font-size: 48px;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.agora-option-description {
    font-size: 20px;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.agora-book-call-btn {
    background: #ed654c;
    color: white;
    border: none;
    width: 250px;
    height: 48px;
    padding: 11px 10px;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.agora-book-call-btn:hover {
    background: #ff9784;
}

.agora-email-btn {
    background: #4F52FF;
    color: white;
    border: none;
    width: 250px;
    height: 48px;
    padding: 11px 10px;
    margin-top: 23px;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

.agora-email-btn:hover {
    background: rgb(79,82,255, 0.7);
}

@media (max-width: 768px) {
    .agora-contact-options {
        flex-direction: column;
        gap: 48px;
        align-items: center;
    }

    .agora-contact-title {
        font-size: 2.25rem;
    }

    .agora-option-title {
        font-size: 1.75rem;
    }
}



/* Bottom Section */
.agora-hero-bottom {
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.agora-hero-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background: radial-gradient(circle at 80% 30%, rgba(74, 144, 226, 0.4) 0%, rgba(64, 64, 64, 0) 80%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.agora-hero-bottom-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.agora-hero-bottom-left {
    position: absolute;
    flex: 1;
    left: 85px;
    min-width: 538px;
}

.agora-hero-bottom-logo {
    position: relative;
    width: 120px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    margin-bottom: 2rem;
}

.agora-hero-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.agora-hero-bottom-tagline {
    font-size: 2rem;
    color: #cccccc;
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.agora-hero-bottom-title {
    font-size: 4rem;
    text-align: left;
    color: white;
    font-weight: 600;
    margin-bottom: 2rem;
}

.agora-hero-bottom-contact-btn {
    background: #4F52FF;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.agora-hero-bottom-contact-btn:hover {
    background: rgb(79,82,255, 0.8);
}

.agora-hero-bottom-printer {
    position: relative;
    flex: 0 0 400px;
    height: 500px;
    transform: translateX(10%);
    margin-left: auto;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}


/* AI Ready Section */
.ai-ready-wrapper {
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin: 4rem auto;
    margin-top: 0;
    border-radius: 16px;
    padding: 4rem 2rem;
    z-index: 2;
}

.ai-ready-title {
    font-size: 2rem;
    line-height: 1.5;
}

.ai-ready-text {
    margin: 1.5rem 0;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.ai-ready-btn {
    background: #4F52FF;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.ai-ready-btn:hover {
    background: rgb(79,82,255, 0.7);
}


/* Footer Section */
.agora-footer {
    background: #000000;
    padding: 3rem 2rem 2rem;
}

.agora-footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.agora-footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.agora-footer-menu {
    display: flex;
    gap: 6rem;
    flex: 1;
    justify-content: center;
}

.agora-footer-left {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.agora-footer-right {
    display: flex;
    flex-direction: column;
}

.agora-footer-row {
    min-width: 600px;
    display: flex;
    justify-content: space-between;
}

.agora-footer-column {
    display: flex;
    flex-direction: column;
}

.agora-footer-column-title {
    font-size: 1.125rem;
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.agora-footer-link {
    color: #616161;
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.agora-footer-link:hover {
    color: #ff9784;
}

.agora-footer-bottom {
    display: none;
}

.agora-footer-logo-bottom {
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.8rem;
}

.agora-footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-position: top;
}

.agora-footer-social {
    display: flex;
    gap: 1rem;
}

.agora-social-icon {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cccccc;
    transition: all 0.3s ease;
    font-size: 1.25rem;
    text-decoration: none;
}

.agora-social-icon:hover {
    background: #ff9784;
    color: white;
}

.agora-footer-canadian {
    width: 120px;
    height: 120px;
}

.agora-canadian-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.agora-footer-partnered, .agora-footer-solutions {
    color: #999;
    height: 32px;
    position: relative;
    margin: 2rem 0;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.agora-footer-partnered:hover, .agora-footer-solutions:hover {
    color: #ccc;
}

.agora-footer-partnered {
    margin-right: 16px;
}

.agora-footer-solutions {
    margin-right: 48px;
}

.h-partner {
    height: 32px;
    position: absolute;
    transform: translate(0, -8px);
}

.odoo-soln {
    height: 50px;
    position: absolute;
    transform: translate(-12px, -10px);
}

@media (max-width: 1440px) {
    .agora-hero-bottom-left, .agora-hero-bottom-printer {
        width: 100%;
        max-width: 500px;
        transform: translateX(-10%);
    }
    .agora-hero-bottom-title {
        font-size: 3rem;
    }
}

@media (max-width: 1020px) {
    .agora-hero-bottom-wrapper {
        justify-content: center;
        gap: 3rem;
        text-align: center;
    }

    .agora-hero-bottom-left, .agora-hero-bottom-printer {
        width: 100%;
        max-width: 400px;
    }

    .agora-hero-bottom-left {
        transform: translate(-10%, 0%);
        align-items: flex-start;
        text-align: left;
    }

    .agora-hero-bottom-printer {
        flex: 0 0 800px;
        max-width: 800px;
    }

    .agora-hero-bottom-printer img {
        width: 100%;
        height: 100%;
        transform: translate(27%, 10%);
    }

    .agora-footer-menu {
        flex-direction: column;
        gap: 2rem;
    }

    .agora-footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .agora-hero-bottom-title {
        font-size: 2rem;
    }

    .agora-footer-row {
        width: 100%;
        min-width: 0;
        gap: 0;
        justify-content: space-around;
    }

    .agora-footer-column {
        text-align: center;
        align-items: center;
    }

    .agora-hero-bottom-wrapper {
        align-items: flex-start;
    }

    .agora-contact-section {
        padding: 0;
    }

    .agora-contact-section::before {
        display: none;
    }

    .agora-book-call-btn, .agora-email-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .agora-hero-bottom-wrapper {
        height: 300px;
        align-items: center;
    }
    .agora-hero-bottom-printer {
        display: none;
    }
    .agora-hero-bottom-left {
        width: 100%;
        min-width: 0;
        max-width: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        transform: none;
        left: 0;
    }

    .agora-hero-bottom-tagline {
        font-size: 1.5rem;
    }
    .agora-hero-bottom-title {
        font-size: 1.75rem;
    }
    .agora-erp-card-section, .agora-web-card-section {
        gap: 0;
    }

    .agora-footer-row {
        flex-direction: column;
    }
    .agora-footer-column {
        margin-bottom: 1rem;
    }
    .agora-footer-column-title, .agora-footer-link {
        margin-bottom: 0.5rem;
    }
}