
header.masthead {
    padding-top: 20px;
}
h1{
    font-weight: 500;
}
section{
    padding: 0px 0;
}
/* Hero Section */
/* Hero Section */
.hero {
    background: #13a89e;
    padding: 80px 40px;
    min-height: 400px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    color: white;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    color: white;
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    text-align: right;
}
/* Fade in and slide from right animation */
.animate-fade-in {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInSlide 0.8s ease-out forwards;
}

@keyframes fadeInSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Optional: Add a subtle floating animation after page load */
.hero-image img {
    max-width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
    animation-delay: 0.8s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}


/* Responsive: stack on mobile */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-image {
        text-align: center;
    }
}
/* Container */
.container.borderless {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* Section Styles */
section {
    margin-bottom: 30px;
}

#hardware {
    background: white;
    padding: 60px 0;
    border-radius: 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

    #hardware .section-intro,
    #hardware h2,
    #hardware .section-divider,
    #hardware .hardware-grid {
        padding-left: 20px;
        padding-right: 20px;
    }

section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: #13a89e;
    margin-bottom: 20px;
    border-radius: 2px;
}

.section-intro {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.8;
}

/* Hardware Cards */
.hardware-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.hardware-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.hardware-card:hover {
    box-shadow: 0 10px 30px rgba(19, 168, 158, 0.15);
    transform: translateY(-5px);
    border-color: #13a89e;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f5f5f5;
}

.card-icon {
    width: 60px;
    height: 60px;
    /*background: #13a89e;*/
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(19, 168, 158, 0.2);
}

.card-brand {
    font-size: 13px;
    color: #13a89e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.card-description {
    color: #666;
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.7;
}

.specs-list {
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.specs-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.specs-list li:last-child {
    border-bottom: none;
}

.spec-label {
    color: #666;
}

.spec-value {
    color: #333;
    font-weight: 600;
}

.compatibility-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(19, 168, 158, 0.1);
    border-radius: 20px;
    color: #13a89e;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.check-icon {
    width: 20px;
    height: 20px;
    background: #13a89e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(19, 168, 158, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: rgba(19, 168, 158, 0.15);
    transform: scale(1.05);
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.feature-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Integration Box */
.integration-box {
    background: linear-gradient(135deg, #f8fafb 0%, rgba(19, 168, 158, 0.05) 100%);
    border: 1px solid rgba(19, 168, 158, 0.1);
    border-radius: 16px;
    padding: 50px;
    text-align: center;
    margin-top: 50px;
}

.integration-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.integration-description {
    font-size: 17px;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sync-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.sync-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.sync-feature:hover {
    box-shadow: 0 5px 15px rgba(19, 168, 158, 0.1);
    transform: translateY(-2px);
}

.sync-icon {
    font-size: 32px;
}

.protocols-section {
    margin-top: 50px;
    padding: 50px;
    background: white;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.protocol-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.protocol-tag {
    padding: 12px 24px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.protocol-tag:hover {
    border-color: #13a89e;
    color: #13a89e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(19, 168, 158, 0.15);
}

/* Partner Card */
/* Partner Card */
.partner-card {
    background: rgba(25, 142, 191, 1);
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 50px;
    margin-top: 50px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.partner-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.partner-logo-section {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f5f5f5;
}

.partner-logo {
    width: 100px;
    height: 100px;
    background: #2c3e50;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    flex-shrink: 0;
}

.partner-logo img {
    max-width: 100%;
    height: auto;
}

.partner-name {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.partner-tagline {
    font-size: 15px;
    color: white;
}

.partner-description p {
    font-size: 16px;
    color: white;
    line-height: 1.8;
    margin-bottom: 30px;
}

.partner-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.partner-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
    word-wrap: break-word;
}

.partner-feature:hover {
    background: rgba(19, 168, 158, 0.05);
}

.feature-icon-small {
    width: 24px;
    height: 24px;
    background: #13a89e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.partner-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-top: 30px;
    border-top: 2px solid #f5f5f5;
}

.btn-partner {
    padding: 15px 40px;
    background: #13a89e;
    color: white;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-partner:hover {
    background: #0f8a82;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(19, 168, 158, 0.3);
}

.partner-contact {
    font-size: 15px;
    color: white;
    white-space: nowrap;
}

.partner-contact a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.partner-contact a:hover {
    color: #0f8a82;
}
/* CTA Section */
.cta-section {
    background: #13a89e;
    color: white;
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-description {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn {
    padding: 15px 35px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: white;
    color: #13a89e;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #13a89e;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    section h2 {
        font-size: 28px;
    }

    .hero {
        padding: 50px 20px;
    }

    .container.borderless {
        padding: 40px 20px;
    }

    .hardware-grid {
        grid-template-columns: 1fr;
    }

    .integration-box,
    .partner-card,
    .cta-section {
        padding: 30px 20px;
    }

    .partner-logo-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .protocols-section {
        padding: 30px 20px;
    }
}

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            animation: fadeIn 0.3s ease;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: white;
            border-radius: 12px;
            width: 95%;
            max-width: 1400px;
            max-height: 90vh;
            overflow: hidden;
            animation: slideIn 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .modal-header {
            background: linear-gradient(to right, #4a90e2, #5ca3f5);
            color: white;
            padding: 20px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-header h2 {
            font-size: 24px;
            color: white;
            margin: 0;
            text-align: left;
        }

        .close-btn {
            background: none;
            border: none;
            color: white;
            font-size: 32px;
            cursor: pointer;
            line-height: 1;
            padding: 0;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s ease;
        }

        .close-btn:hover {
            transform: rotate(90deg);
        }

        .modal-body {
            overflow-x: auto;
            overflow-y: auto;
            padding: 20px;
        }
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1000px;
    table-layout: fixed; /* 🔑 THIS fixes equal-width columns */
}
 
        .comparison-table th,
        .comparison-table td {
            padding: 15px;
            text-align: center;
            border: 1px solid #ddd;
        }

        .comparison-table th {
            background: #90c97e;
            font-weight: 600;
            color: #000;
            font-size: 14px;
        }

        .comparison-table td {
            font-size: 14px;
            color: #333;
        }

        .comparison-table td:first-child {
            text-align: center;
            font-weight: 500;
            background: #fafafa;
            color: #000;
        }

        .model-header {
            background: #90c97e !important;
            color: #000 !important;
            font-weight: 600 !important;
        }

        .main-chip-row td {
            background: #ffeb3b;
            font-weight: 500;
        }

        .device-image {
            padding: 10px;
        }

        .device-image1 img {
            max-height: 150px;
            height: auto;
            display: block;
            margin: 0 auto;
        }
        .device-image2 img {
            max-height: 140px;
            height: auto;
            display: block;
            margin: 0 auto;
        }
        .device-image3 img {
            max-height: 150px;
            height: auto;
            display: block;
            margin: 0 auto;
        }
        .device-image4 img {
            max-height: 150px;
            height: auto;
            display: block;
            margin: 0 auto;
        }    
        .device-image5 img {
            max-height: 150px;
            height: auto;
            display: block;
            margin: 0 auto;
        }                         
        .feature-yes {
            color: #008000;
            font-weight: 400;
        }

        .feature-no {
            color: #ff0000;
            font-weight: 400;
        }

        .feature-optional {
            color: #ffa500;
            font-weight: 400;
        }

        .feature-ready {
            color: #008000;
            font-weight: 400;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 32px;
            }

            .modal-content {
                width: 98%;
                max-height: 95vh;
            }

            .modal-header {
                padding: 15px 20px;
            }

            .modal-header h2 {
                font-size: 18px;
            }

            .modal-body {
                padding: 10px;
            }

            .comparison-table th,
            .comparison-table td {
                padding: 10px 8px;
                font-size: 12px;
            }
        }


.center-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-image img {
  transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.6s ease;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Hover effect */
.center-image img:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* Fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/*section 3*/
/*section 3 - Compact Version*/
/* Overview Section */
.overview-section {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.overview-title {
    text-align: center;
    color: #2d3748;
    font-size: 1.4em;
    margin-bottom: 25px;
}

.overview-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.overview-box {
    min-width: 100px;
    padding: 15px 12px;
    border-radius: 12px;
    border: 2px solid;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.overview-box:hover {
    transform: translateY(-3px);
}

.user-box {
    background: #b2dfdb;
    border-color: #00897b;
}

.device-box {
    background: #c8e6c9;
    border-color: #66bb6a;
}

.api-box {
    background: #b2dfdb;
    border-color: #00897b;
}

.hrms-box {
    background: #c8e6c9;
    border-color: #66bb6a;
}

.enduser-box {
    background: #b2dfdb;
    border-color: #00897b;
}

.overview-icon {
    font-size: 1.8em;
    margin-bottom: 6px;
}

.overview-label {
    font-weight: bold;
    font-size: 0.9em;
    color: #004d40;
    margin-bottom: 3px;
}

.overview-subtitle {
    font-size: 0.75em;
    color: #00695c;
}

.overview-arrow {
    font-size: 1.5em;
    color: #00897b;
    font-weight: bold;
}

/* Main Flow */

.main-flow {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    /*gap: 40px; margin-bottom: 40px;margin-left: 280px;*/
    align-items: center;
    justify-content: center;
    
}

/* Device Hub - REDUCED SIZE */
.device-hub {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-circle {
    background: #00897b;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 137, 123, 0.4);
    position: relative;
    z-index: 1;
}

.hub-title {
    color: white;
    font-size: 1.3em;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
}

/* Device Bubbles - REDUCED SIZE */
.device-bubbles {
    position: absolute;
    width: 180px;
    height: 320px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.device-bubble {
    position: absolute;
    background: #b2dfdb;
    border-radius: 50%;
    width: 75px;
    height: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 3px solid white;
}

.bubble-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.bubble-left {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.bubble-right {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.bubble-bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.device-icon {
    font-size: 1.8em;
    margin-bottom: 3px;
}

.device-label {
    font-size: 0.65em;
    font-weight: 600;
    color: #004d40;
    text-align: center;
    line-height: 1.2;
}

/* Router/MQTT Circle - REDUCED SIZE */
.router-circle {
    background: #00897b;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(0, 137, 123, 0.4);
    margin: 0 auto;
}

.router-icon {
    font-size: 2.5em;
    color: white;
    margin-bottom: 6px;
}

.router-title {
    color: white;
    font-size: 1.1em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
}

.router-subtitle {
    color: white;
    font-size: 0.7em;
    text-align: center;
    line-height: 1.3;
    opacity: 0.95;
}

/* Cloud System - REDUCED SIZE */
.cloud-system {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.cloud-shape {
    background: #00897b;
    border-radius: 90px;
    width: 230px;
    height: 145px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 137, 123, 0.4);
    position: relative;
}

.cloud-shape::before {
    content: '';
    position: absolute;
    background: #00897b;
    border-radius: 50%;
    width: 85px;
    height: 85px;
    top: -30px;
    left: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.cloud-shape::after {
    content: '';
    position: absolute;
    background: #00897b;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    top: -22px;
    right: 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.cloud-icon {
    font-size: 2.8em;
    color: white;
    position: relative;
    z-index: 1;
}

.cloud-title {
    color: white;
    font-size: 1.2em;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-align: center;
    line-height: 1.3;
}

/* Features Box - REDUCED SIZE */
.features-box {
    background: #b2dfdb;
    border-radius: 12px;
    padding: 18px 22px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    min-width: 220px;
}

.features-note {
    color: #00695c;
    font-size: 0.75em;
    margin-bottom: 12px;
    text-align: center;
    font-weight: 600;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #004d40;
    font-size: 0.85em;
}

.feature-bullet {
    width: 6px;
    height: 6px;
    background: #00897b;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Connection Arrows - REDUCED SIZE */
.connection {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.arrow-line {
    display: flex;
    align-items: center;
    gap: 4px;
}

.arrow-dots {
    display: flex;
    gap: 2px;
}

.dot {
    width: 5px;
    height: 5px;
    background: linear-gradient(90deg, #9c27b0, #e91e63);
    border-radius: 50%;
}

.arrow-head {
    font-size: 1.5em;
    color: #e91e63;
}

.connection-label {
    background: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.7em;
    font-weight: 600;
    color: #00695c;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid #b2dfdb;
}

/* Bottom Section */
.bottom-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.vertical-connection {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.vertical-dots {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.arrow-up {
    font-size: 1.5em;
    color: #00897b;
}

.arrow-down {
    font-size: 1.5em;
    color: #4caf50;
}

.data-hub {
    background: #00897b;
    border-radius: 50%;
    width: 170px;
    height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(0, 137, 123, 0.4);
}

.data-devices {
    display: flex;
    gap: 20px;
    align-items: center;
}

.data-bubble {
    background: #b2dfdb;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 3px solid white;
}

.data-icon {
    font-size: 2.2em;
    margin-bottom: 6px;
}

.data-label {
    font-size: 0.75em;
    font-weight: 600;
    color: #004d40;
    text-align: center;
}
 /* Scenarios Section */

.scenarios-section {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    margin-bottom: 40px;
    margin-left: -20px;
    margin-right: -20px;            
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 15px;
    align-items: stretch; /* Ensures all cards stretch to same height */
}

.scenario-card {
    background: linear-gradient(#fdcc52, #fdc539);
    border: 2px solid #facc15;
    border-radius: 16px;
    padding: 25px 20px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%; /* Makes all cards same height */
}

.scenario-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    border-color: #eab308;
}

.scenario-number {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1em;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(13, 148, 136, 0.4);
}

.scenario-icon {
    font-size: 3em;
    text-align: center;
    margin-bottom: 15px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
    display: flex;
    justify-content: center;
    flex-shrink: 0; /* Prevents icon from shrinking */
}

.scenario-icon svg {
    width: 80px;
    height: 80px;
}

.scenario-title {
    color: #065f46;
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    flex-shrink: 0; /* Prevents title from shrinking */
}

.scenario-description {
    color: #047857;
    font-size: 0.9em;
    text-align: center;
    margin-bottom: 18px;
    line-height: 1.5;
    flex-shrink: 0; /* Prevents description from shrinking */
    min-height: 3em; /* Ensures consistent description height */
}

.scenario-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto; /* Pushes features to bottom */
}

.scenario-feature {
    color: #065f46;
    font-size: 0.85em;
    padding: 8px 12px;
    background: white;
    border-radius: 8px;
    border-left: 3px solid #0d9488;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
        
@media (max-width: 1100px) {
            .main-flow {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .connection {
                transform: rotate(90deg);
                margin: 10px 0;
            }
            
            .connection-label {
                transform: rotate(-90deg);
                white-space: nowrap;
            }
            
            .device-hub {
                margin: 20px auto;
            }
            
            .hub-circle,
            .router-circle {
                width: 140px;
                height: 140px;
            }
            
            .cloud-shape {
                width: 200px;
                height: 120px;
            }
        }
        
        @media (max-width: 768px) {

    .hero-content {
        flex-direction: column;
    }
    
    .hero-image {
        text-align: center;
    }
    
    .hero {
        padding-top: 80px;
    }            
            .overview-flow {
                flex-direction: column;
            }
            
            .overview-arrow {
                transform: rotate(90deg);
            }
            
            .main-flow {
                padding: 20px 10px;
            }
            
            .hub-circle {
                width: 120px;
                height: 120px;
            }
            
            .device-bubbles {
                width: 120px;
                height: 240px;
            }
            
            .device-bubble {
                width: 60px;
                height: 60px;
            }
            
            .device-icon {
                font-size: 1.4em;
            }
            
            .device-label {
                font-size: 0.6em;
            }
            
            .router-circle {
                width: 120px;
                height: 120px;
            }
            
            .router-icon {
                font-size: 2em;
            }
            
            .router-title {
                font-size: 0.95em;
            }
            
            .router-subtitle {
                font-size: 0.65em;
            }
            
            .cloud-shape {
                width: 180px;
                height: 110px;
            }
            
            .cloud-shape::before {
                width: 70px;
                height: 70px;
                top: -25px;
                left: 25px;
            }
            
            .cloud-shape::after {
                width: 60px;
                height: 60px;
                top: -20px;
                right: 30px;
            }
            
            .cloud-icon {
                font-size: 2.2em;
            }
            
            .cloud-title {
                font-size: 1em;
            }
            
            .features-box {
                min-width: auto;
                width: 100%;
                padding: 15px 18px;
            }
            
            .feature-item {
                font-size: 0.8em;
            }
            
            .connection-label {
                font-size: 0.65em;
                padding: 5px 10px;
            }
            
            .scenarios-grid {
                grid-template-columns: 1fr;
            }
            
            .data-hub {
                width: 140px;
                height: 140px;
            }
            
            .data-bubble {
                width: 80px;
                height: 80px;
            }
            
            .data-icon {
                font-size: 1.8em;
            }
    .partner-card {
        padding: 30px 20px;
        margin-left: -20px;
        margin-right: -20px;
        border-radius: 0;
    }
    .partner-contact {
        font-size: 14px;
        white-space: normal;
        text-align: center;
        line-height: 1.6;
    }
    .partner-logo-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .partner-features {
        grid-template-columns: 1fr;
    }

    .partner-feature {
        padding: 12px 15px;
        font-size: 13px;
    }       
   .hide-mobile {
      display: none;
   }
}


/* Partners Hero Section position: relative;*/
.partners-hero {
    background: #13a89e;
    padding: 80px 40px;
    
    color: white;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.partners-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.partners-hero h1 {
    color: white;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
}

.partners-hero-subtitle {
    color: white;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.partners-hero-cta {
    display: inline-block;
    padding: 14px 32px;
    background: #4a7cff;
    color: white;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(74, 124, 255, 0.3);
}

.partners-hero-cta:hover {
    background: #3a6ce6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 124, 255, 0.4);
}

.cta-icon {
    display: none;
}

.partners-benefits {
    display: none;
}