/****************************************************
N21 TECHNOLOGIES - CLEANED SCOPED ZOHO STYLESHEET
Global Overlays, Nav Modifiers, & Hamburger Elements Removed
*****************************************************/

/* --- High-Specificity Scope Reset --- */
.zoho-hero, .zoho-strip, #products, .product-details-area, .zoho-services, .zoho-journey, .zoho-testimonials, .zoho-faq, .zoho-cta {
    box-sizing: border-box !important;
    display: block;
    width: 100% !important;
    float: none !important;
    clear: both !important;
}

.zoho-hero *, .zoho-strip *, #products *, .product-details-area *, .zoho-services *, .zoho-journey *, .zoho-testimonials *, .zoho-faq *, .zoho-cta * {
    box-sizing: border-box !important;
}

/* --- Design Tokens --- */
:root {
    --zoho-primary: #003566;
    --zoho-secondary: #00509d;
    --zoho-accent: #ff3400;
    --zoho-dark-bg: #001d3d;
    --zoho-light-surface: #f5f8ff;
    --text-muted: #666666;
}

/* --- Isolated Container Layout --- */
.zoho-hero .container, #products .container, .product-details-area .container, .zoho-services .container, .zoho-journey .container, .zoho-testimonials .container, .zoho-faq .container, .zoho-cta .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    display: block !important;
    float: none !important;
}

/* --- Hero Layout Engine (CSS Grid Restored) --- */
.zoho-hero {
    position: relative !important;
    min-height: 50vh !important;
    padding: 140px 0 80px 0 !important;
    background: linear-gradient(135deg, var(--zoho-dark-bg) 0%, var(--zoho-primary) 40%, var(--zoho-secondary) 100%) !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
}

.hero-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: radial-gradient(circle at top right, rgba(255, 180, 0, 0.12), transparent 45%) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.zoho-hero-grid {
    display: grid !important;
    grid-template-columns: 1.2fr 0.8fr !important;
    gap: 60px !important;
    align-items: center !important;
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
}

.hero-left {
    color: #ffffff !important;
    display: block !important;
    animation: fadeHero 1s ease-out forwards !important;
}

.hero-right {
    display: block !important;
    position: relative !important;
    animation: fadeHero 1.2s ease-out forwards !important;
}

/* Base Headings & Typography */
.hero-left h1 {
    font-size: 54px !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    color: #ffffff !important;
    margin: 0 0 20px 0 !important;
    text-transform: none !important;
}

.hero-left h1 span {
    color: var(--zoho-accent) !important;
    display: inline !important;
}

.hero-left p {
    font-size: 18px !important;
    line-height: 1.6 !important;
    color: #e2e8f0 !important;
    margin: 0 0 35px 0 !important;
}

/* Main Hero Image Restraints */
.main-hero-img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    max-height: 450px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.3)) !important;
    display: block !important;
}

/* Badge & Buttons */
.partner-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 16px !important;
    border-radius: 30px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin-bottom: 25px !important;
}

.partner-badge i { color: var(--zoho-accent) !important; }

.hero-buttons {
    display: flex !important;
    flex-direction: row !important;
    gap: 15px !important;
    margin-bottom: 45px !important;
}

.primary-btn, .secondary-btn {
    padding: 14px 30px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.25s ease !important;
}

.primary-btn { background: var(--zoho-accent) !important; color: #000000 !important; }
.primary-btn:hover { transform: translateY(-2px) !important; box-shadow: 0 8px 20px rgba(255, 180, 0, 0.3) !important; }
.secondary-btn { border: 1.5px solid #ffffff !important; color: #ffffff !important; background: transparent !important; }
.secondary-btn:hover { background: #ffffff !important; color: var(--zoho-primary) !important; }

/* Stats Engine */
.hero-stats {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px !important;
    width: 100% !important;
}

.hero-stats > div {
    flex: 1 !important;
    padding: 15px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
}

.hero-stats h3 {
    font-size: 26px !important;
    font-weight: 700 !important;
    color: var(--zoho-accent) !important;
    margin: 0 0 4px 0 !important;
}

.hero-stats p {
    font-size: 13px !important;
    color: #cbd5e1 !important;
    margin: 0 !important;
    line-height: 1.3 !important;
}

/* Floating Ecosystem Icons */
.logo-float {
    position: absolute !important;
    width: 54px !important;
    height: 54px !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
    font-size: 20px !important;
    z-index: 3 !important;
}
.logo1 { top: 10%; left: -5%; animation: floatLogo 4s ease-in-out infinite !important; }
.logo2 { top: 45%; right: -5%; animation: floatLogo 4.5s ease-in-out infinite 0.5s !important; }
.logo3 { bottom: 5%; left: 5%; animation: floatLogo 5s ease-in-out infinite 1s !important; }

/* --- Value Proposition Strip --- */
.zoho-strip {
    background: var(--zoho-accent) !important;
    color: #000000 !important;
    font-weight: 700 !important;
    text-align: center !important;
    padding: 16px 20px !important;
    font-size: 13.5px !important;
    letter-spacing: 0.5px !important;
}

/* --- Section Headers --- */
.section-header {
    text-align: center !important;
    max-width: 700px !important;
    margin: 0 auto 50px auto !important;
    display: block !important;
}

.section-header h2 {
    font-size: 36px !important;
    font-weight: 700 !important;
    color: var(--zoho-dark-bg) !important;
    margin: 0 0 12px 0 !important;
}

.section-header p {
    font-size: 16px !important;
    color: var(--text-muted) !important;
    margin: 0 !important;
}

/* --- Product Grid --- */
#products {
    padding: 90px 0 !important;
    background: var(--zoho-light-surface) !important;
}

.zoho-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 25px !important;
    justify-content: center !important;
    width: 100% !important;
}

.zoho-card {
    background: #ffffff !important;
    padding: 35px 25px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02) !important;
    border: 1px solid #eef2f6 !important;
    flex: 1 1 calc(33.333% - 25px) !important;
    min-width: 290px !important;
    max-width: 380px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
}

.card-icon-wrap {
    height: 60px !important;
    width: 100% !important;
    margin-bottom: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.card-icon-wrap img {
    max-height: 100% !important;
    max-width: 100% !important;
    object-fit: contain !important;
    display: block !important;
}

.zoho-card h3 {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: var(--zoho-primary) !important;
    margin: 0 0 12px 0 !important;
}

.zoho-card p {
    font-size: 14.5px !important;
    line-height: 1.55 !important;
    color: var(--text-muted) !important;
    margin: 0 0 25px 0 !important;
    flex-grow: 1 !important;
}

.card-link {
    color: var(--zoho-secondary) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.zoho-card:hover {
    transform: translateY(-5px) !important;
    border-color: var(--zoho-accent) !important;
    box-shadow: 0 15px 30px rgba(0, 53, 102, 0.08) !important;
}

/* --- Section Dividers --- */
.section-divider {
    border: 0 !important;
    height: 1px !important;
    background: rgba(0, 53, 102, 0.08) !important;
    margin: 20px 0 !important;
}

/* --- Product Profiles & Dynamic Tables --- */
.product-details-area {
    padding: 80px 0 !important;
    background: #ffffff !important;
}

.product-detail-section {
    margin-bottom: 90px !important;
    scroll-margin-top: 120px !important;
    display: block !important;
}

.product-detail-section:last-child { margin-bottom: 0 !important; }
.product-detail-header { margin-bottom: 30px !important; }

.title-with-icon {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    margin-bottom: 14px !important;
}

.title-with-icon img {
    width: 44px !important;
    height: 44px !important;
    object-fit: contain !important;
}

.title-with-icon h2 {
    font-size: 30px !important;
    font-weight: 700 !important;
    color: var(--zoho-dark-bg) !important;
    margin: 0 !important;
}

.product-detail-header p {
    font-size: 15.5px !important;
    line-height: 1.65 !important;
    color: var(--text-muted) !important;
    margin: 0 !important;
}

.table-container {
    width: 100% !important;
    overflow-x: auto !important;
    border-radius: 10px !important;
    border: 1px solid #eef2f6 !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.01) !important;
    margin-top: 25px !important;
}

.comparison-table {
    width: 100% !important;
    border-collapse: collapse !important;
    font-size: 14.5px !important;
    background: #ffffff !important;
    min-width: 650px !important;
}

.comparison-table th {
    background: var(--zoho-primary) !important;
    color: #ffffff !important;
    padding: 16px 20px !important;
    font-weight: 600 !important;
    border: none !important;
}

.comparison-table th:first-child { background: var(--zoho-dark-bg) !important; width: 25%; }

.comparison-table td {
    padding: 15px 20px !important;
    border-bottom: 1px solid #eef2f6 !important;
    color: #4a5568 !important;
}

.comparison-table tr:nth-child(even) td { background: #fafbfc !important; }
.status-no { color: #e53e3e !important; }

/* --- Services Block --- */
.zoho-services { padding: 90px 0 !important; background: #ffffff !important; }

.services-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 25px !important;
}

.service-tile {
    flex: 1 1 calc(33.333% - 25px) !important;
    min-width: 260px !important;
    padding: 35px 25px !important;
    background: #ffffff !important;
    border: 1px solid #eef2f6 !important;
    border-radius: 10px !important;
    text-align: center !important;
}

.service-tile i { font-size: 38px !important; color: var(--zoho-secondary) !important; margin-bottom: 18px !important; }
.service-tile h3 { font-size: 19px !important; margin: 0 0 12px 0 !important; color: var(--zoho-dark-bg) !important; }
.service-tile p { font-size: 14px !important; color: var(--text-muted) !important; margin: 0 !important; }

/* --- Deployment Framework Journey --- */
.zoho-journey { padding: 90px 0 !important; background: var(--zoho-light-surface) !important; }
.journey-timeline { position: relative; max-width: 800px; margin: 0 auto; padding: 10px 0; }
.journey-timeline::before {
    content: '' !important; position: absolute !important; left: 27px !important; top: 0 !important; bottom: 0 !important;
    width: 2px !important; background: rgba(0, 80, 157, 0.15) !important;
}
.timeline-block { display: flex !important; gap: 25px; margin-bottom: 35px; position: relative; }
.timeline-icon {
    width: 56px !important; height: 56px !important; background: #ffffff !important; border: 2px solid var(--zoho-secondary) !important;
    border-radius: 50% !important; display: flex !important; align-items: center !important; justify-content: center !important;
    color: var(--zoho-secondary) !important; font-size: 18px !important; flex-shrink: 0 !important; z-index: 2 !important;
}
.timeline-content { background: #ffffff !important; padding: 25px; border-radius: 10px; flex-grow: 1; text-align: left; }
.timeline-content h3 { font-size: 19px !important; margin: 0 0 8px 0 !important; color: var(--zoho-primary) !important; }
.timeline-content p { font-size: 14.5px !important; color: var(--text-muted) !important; margin: 0 !important; line-height: 1.5; }

/* --- Testimonials Framework --- */
.zoho-testimonials { padding: 90px 0 !important; background: #ffffff !important; }
.testimonials-wrap { display: flex !important; flex-direction: row !important; flex-wrap: wrap !important; gap: 30px !important; }
.testimonial-card {
    flex: 1 1 calc(50% - 30px) !important; min-width: 290px !important;
    background: var(--zoho-light-surface) !important; padding: 35px !important; border-radius: 12px !important;
}
.testimonial-card .stars { color: var(--zoho-accent) !important; margin-bottom: 14px; }
.testimonial-card p { font-size: 15.5px !important; font-style: italic !important; margin: 0 0 20px 0 !important; line-height: 1.6; }
.testimonial-card .user-info h4 { font-size: 15px !important; margin: 0 !important; color: var(--zoho-primary) !important; }
.testimonial-card .user-info span { font-size: 13px !important; color: var(--text-muted) !important; }

/* --- FAQ Rules --- */
.zoho-faq { padding: 90px 0 !important; background: var(--zoho-light-surface) !important; }
.faq-accordion-group { max-width: 750px !important; margin: 0 auto !important; }
.faq-item { background: #ffffff !important; border-radius: 8px !important; margin-bottom: 14px !important; border: 1px solid #eef2f6 !important; }
.faq-question { padding: 20px 25px !important; display: flex !important; justify-content: space-between !important; align-items: center !important; cursor: pointer; }
.faq-question h3 { font-size: 16px !important; margin: 0 !important; color: var(--zoho-dark-bg) !important; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 25px 20px 25px !important; font-size: 14.5px !important; color: var(--text-muted) !important; margin: 0 !important; line-height: 1.6; }

/* --- CTA Layer --- */
.zoho-cta { padding: 100px 20px !important; text-align: center !important; background: linear-gradient(135deg, var(--zoho-primary), var(--zoho-secondary)) !important; color: #ffffff !important; }
.zoho-cta h2 { font-size: 40px !important; margin: 0 0 15px 0 !important; color: #ffffff !important; font-weight: 700; }
.zoho-cta p { font-size: 18px !important; margin: 0 0 35px 0 !important; color: #cbd5e1 !important; }
.zoho-cta a {
    padding: 16px 40px !important; background: var(--zoho-accent) !important; color: #000000 !important;
    text-decoration: none !important; border-radius: 6px !important; font-weight: 700 !important; display: inline-flex !important; align-items: center !important; gap: 8px !important;
    transition: all 0.3s ease !important;
}
.zoho-cta a:hover { transform: translateY(-3px) !important; box-shadow: 0 12px 25px rgba(255, 180, 0, 0.35) !important; }

/* --- WhatsApp Floating Action Launcher --- */
.whatsapp-floating-trigger {
    position: fixed !important; bottom: 30px !important; right: 30px !important; width: 56px !important; height: 56px !important;
    background: #25d366 !important; color: #ffffff !important; border-radius: 50% !important; display: flex !important;
    align-items: center !important; justify-content: center !important; font-size: 28px !important; z-index: 99999 !important; text-decoration: none !important;
}

/* --- Interactive Intersection Reveal --- */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-up.show { opacity: 1 !important; transform: translateY(0) !important; }

/****************************************************
ANIMATION KEYFRAMES DEFINITIONS
*****************************************************/
@keyframes fadeHero {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes floatLogo {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/****************************************************
RESPONSIVE MEDIA QUERIES
*****************************************************/
@media (max-width: 992px) {
    .zoho-hero { min-height: auto !important; padding-top: 120px !important; }
    .zoho-hero-grid { grid-template-columns: 1fr !important; gap: 40px !important; text-align: center !important; }
    .hero-left { max-width: 100% !important; }
    .hero-buttons { justify-content: center !important; }
    .hero-stats { justify-content: center !important; }
    .hero-left h1 { font-size: 40px !important; }
    .main-hero-img { max-width: 80% !important; margin: 0 auto !important; }
    .logo-float { display: none !important; }
    .zoho-card, .service-tile { flex: 1 1 calc(50% - 25px) !important; }
    .testimonials-wrap { flex-direction: column !important; }
    .testimonial-card { width: 100% !important; }
}

@media (max-width: 768px) {
    .zoho-hero { padding: 110px 0 60px 0 !important; }
    .hero-left h1 { font-size: 32px !important; }
    .hero-stats { flex-direction: column !important; gap: 12px !important; }
    .zoho-card, .service-tile { flex: 1 1 100% !important; max-width: 100% !important; }
    .section-header h2 { font-size: 28px !important; }
    .zoho-cta h2 { font-size: 28px !important; }
    .title-with-icon h2 { font-size: 24px !important; }
}