* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --bg-dark-1: #0b1220; /* deep navy */
    --bg-dark-2: #0f1724; /* darker gradient */
    --accent: #0ea5a4; /* teal accent */
    --accent-2: #86efac; /* soft green for hover */
    --muted: #98a2b3;
   
    --header-gradient: linear-gradient(135deg, #7c3aed 0%, #10b981 100%);
    --panel-bg: linear-gradient(180deg, rgba(2,6,23,0.03), rgba(2,6,23,0.01));
    --theme-gradient: linear-gradient(to right, #71e2de, #8ce4dc, #a2e5db, #b6e7dc, #c8e8df, #d2e9de, #dbeadf, #e3ebe2, #e9ebe0, #efebdf, #f6ebe0, #fcebe3);
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #1f2937; /* main body text */
    overflow-x: hidden;
    /* Apply user's theme gradient as the page background */
    background: var(--theme-gradient);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {    
    background:var(--theme-gradient);
    padding: 0.9rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: none; /* Hidden by default */
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease;
}

/* Add new class for scroll shadow */
.navbar.scrolled {
    box-shadow: 0 2px 12px rgba(0,0,0,0.12); /* Visible only when scrolled */
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color:#000509;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #000509;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: var(--accent);
}

.get-trial-btn {
    background: var(--accent);
    color: #062024;
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.12s ease;
}

.get-trial-btn:hover {
    background: var(--accent-2);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
}

/* Mobile menu expanded state */
.nav-menu.mobile,
.nav-menu.active {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: absolute;
    right: 20px;
    top: calc(100% + 6px);
    /* match navbar opacity for consistency when dropdown is open */
    background: rgba(15,23,36,0.96);
    padding: 12px 14px;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
    min-width: 200px;
}

.nav-menu.active a {
    padding: 8px 6px;
    color: #e6eef8;
}

/* Hamburger active state (X icon) */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    background:var(--theme-gradient);
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
    color: #e6eef8;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.15;
    color: #000509;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.6rem;
    font-weight: 400;
    color: #000509;
}

.feature-rotator {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.feature-text {
    font-size: 1.05rem;
    font-weight: 700;
    color: #000509;
    padding: 10px 14px;
    border-radius: 8px;
    background: rgba(255,255,255,0.03);
    min-width: 220px;
    display: inline-block;
    text-align: left;
}

.feature-text.fade-out {
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.feature-text.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background: var(--accent);
    color: #062024;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.12s ease, filter 0.12s ease;
    font-size: 1rem;
}

.btn-primary:hover {
    filter: brightness(1.03);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #000509;
    border: 2px solid rgba(230,238,248,0.18);
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.06);
    color: var(--accent);
    box-shadow: 0 10px 24px rgba(2,6,23,0.08);
}

/* Shiny sweep effect for buttons (subtle) */
.btn-primary,
.btn-secondary,
.get-trial-btn {
    position: relative;
    overflow: hidden;
}

.btn-primary::after,
.btn-secondary::after,
.get-trial-btn::after {
    content: "";
    position: absolute;
    top: -60%;
    left: -80%;
    width: 40%;
    height: 220%;
    background: linear-gradient(120deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.06) 40%, rgba(255,255,255,0.02) 60%, rgba(255,255,255,0));
    transform: translateX(0) skewX(-22deg);
    transition: transform 0.6s cubic-bezier(.2,.9,.3,1);
    pointer-events: none;
}

.btn-primary:hover::after,
.btn-secondary:hover::after,
.get-trial-btn:hover::after {
    transform: translateX(260%) skewX(-22deg);
}

/* Ensure button text remains above the shine */
.btn-primary, .btn-secondary, .get-trial-btn { z-index: 1; }
.btn-primary * , .btn-secondary * { position: relative; z-index: 2; }

/* Hero Image */
.hero-img {
    width: 100%;
    height: 520px; 
    object-fit: contain;
    border-radius: 10px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.2); */
}

.placeholder-image {
    background: rgba(255,255,255,0.1);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.placeholder-image p {
    font-size: 2rem;
    font-weight: 600;
}

/* Partners Section */
.partners {
    padding: 4rem 0;
    background: #f8fafc;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2.6rem;
    color: #0f1724;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.partner-item {
    background: #fff;
    padding: 1rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(12,20,32,0.06);
    transition: transform 0.25s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-item img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    border-radius: 8px;
}

.partner-item:hover {
    transform: translateY(-5px);
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.2rem;
    color: #fff;
    font-weight: 500;
}

/* No Waiting Section */
.no-waiting {
    padding: 4rem 0;
    background: #fff;
}

.no-waiting-content {
    text-align: center;
}

.section-subtitle {
    font-size: 1.5rem;
    margin: 1rem 0;
    color: #666;
}

.no-waiting-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Use Cases Section */
.use-cases {
    padding: 4rem 0;
    background: #f8f9fa;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.use-case-item {
    background: #fff;
    padding: 0;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.use-case-item:hover {
    transform: translateY(-5px);
}

.use-case-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.use-case-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.use-case-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 1.5rem 1.5rem 0.5rem;
    color: #333;
    padding-top: 0;
}

.use-case-item p {
    color: #666;
    line-height: 1.6;
    margin: 0 1.5rem 1.5rem;
    padding-bottom: 0;
}

/* Hardware Section */
.hardware {
    padding: 4rem 0;
    background: #fff;
}

.hardware-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    background: #f8f9fa;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: #666;
}

.tab-btn:hover,
.tab-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.hardware-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.hardware-item {
    background: #f8f9fa;
    padding: 0;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.hardware-item:hover {
    transform: translateY(-5px);
}

.hardware-img {
    width: 100%;
    height: 250px;
    object-fit:contain;
    display: block;
}

.hardware-item h4 {
    padding: 1.5rem 1.5rem 0.5rem;
    margin: 0;
}

.hardware-item p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
}

.hardware-placeholder {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hardware-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.hardware-item p {
    color: #666;
}

.hardware-item.hidden {
    display: none;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: var(--panel-bg);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.service-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: #fff;
}

.about-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.about-section h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-section p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--bg-dark-1);
    color: #cbd5e1;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    position: relative;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 10px;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #000;
}

.modal-content h2 {
    margin-bottom: 1rem;
    color: #333;
}

.modal-content p {
    color: #666;
    margin-bottom: 1rem;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-content input,
.modal-content textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.modal-content textarea {
    resize: vertical;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Hardware carousel modal styles */
.carousel-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    align-items: center;
    justify-content: center;
}
.carousel-modal.visible { display: flex; }
.carousel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
}
.carousel-content {
    position: relative;
    max-width: 1000px;
    width: min(92%, 1000px);
    margin: 0 auto;
    z-index: 2;
    display: grid;
    grid-template-columns: 64px 1fr 64px;
    gap: 12px;
    align-items: center;
}
.carousel-slide {
    grid-column: 2 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}
.carousel-slide img {
    max-width: 100%;
    max-height: calc(100vh - 160px);
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.45);
    background: #111;
}
.carousel-close,
.carousel-prev,
.carousel-next {
    background: rgba(255,255,255,0.06);
    border: none;
    color: #fff;
    padding: 10px 14px;
    font-size: 26px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.12s ease;
}
.carousel-close { position: absolute; right: 8px; top: 8px; z-index: 3; background: transparent; font-size: 32px; }
.carousel-prev:hover, .carousel-next:hover, .carousel-close:hover { transform: translateY(-3px); background: rgba(255,255,255,0.12); }
.carousel-prev, .carousel-next { height: 56px; width: 56px; display: inline-flex; align-items: center; justify-content: center; }
.carousel-counter { grid-column: 2 / 3; text-align: center; color: #fff; margin-top: 10px; font-weight: 600; }

@media (max-width: 640px) {
    .carousel-content { grid-template-columns: 48px 1fr 48px; }
    .carousel-prev, .carousel-next { height: 44px; width: 44px; font-size: 20px; }
}

/* Image Responsive Styles */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: -1;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid,
    .use-cases-grid,
    .services-grid,
    .hardware-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .get-trial-btn {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-img {
        height: 300px;
    }
    
    .use-case-img,
    .hardware-img {
        height: 200px;
    }
    
    .partner-item img {
        height: 80px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid,
    .use-cases-grid,
    .services-grid,
    .hardware-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

/* Utility classes moved from inline styles */
.center-note {
    text-align: center;
    margin-bottom: 1rem;
}

.partners-padding {
    padding-top: 1rem;
}

.section-bottom {
    margin-bottom: 2rem;
}

/* Active link styling for navbar */
.nav-menu a.active-link {
    color: var(--accent);
    font-weight: 700;
}

/* Page-specific layout for cloned pages */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0 4rem;
}

.product-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Card hover elevation & unified transitions */
.product-card,
.service-item,
.use-case-item,
.partner-item,
.hardware-item,
.resource-card {
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    will-change: transform;
}

.product-card:hover,
.service-item:hover,
.use-case-item:hover,
.partner-item:hover,
.hardware-item:hover,
.resource-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 18px 40px rgba(2,6,23,0.16);
}

.product-card h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.product-card p {
    color: #666;
    line-height: 1.6;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.resource-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.resource-list {
    list-style: disc inside;
    color: #444;
}

.reseller-info {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 2rem;
    align-items: start;
    margin: 2rem 0 4rem;
}

.benefits ul {
    list-style: disc inside;
    color: #444;
}

.contact-form {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.contact-form .form-group {
    margin-bottom: 0.75rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 600;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
}

.contact-form button[type="submit"] {
    margin-top: 0.5rem;
    background: #667eea;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .products-grid,
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .reseller-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .products-grid,
    .work-grid {
        grid-template-columns: 1fr;
    }
}









