 :root {
            --primary-blue: #4A90E2;
            --secondary-blue: #2C3E50;
            --light-blue: #E3F2FD;
            --accent-blue: #5DADE2;
            --text-dark: #2C3E50;
            --text-gray: #5D6D7E;
            --white: #ffffff;
            --light-gray: #F8F9FA;
}

.category-iot-esim-wholesale-solutions .sections.nav-sections{ margin-bottom:0px!important;}
 .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
  .page-main, .breadcrumbs{ display:none;}     
        .iot-header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            color: white;
            padding:100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
	/*
        .iot-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }*/

        .header-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .header-text {
            text-align: left;
        }

        .iot-header h1 {
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .iot-header p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        .header-image {
            text-align: center;
        }

        .header-image img {
            width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-top: 60px;
            grid-column: 1 / -1;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 25px;
            font-weight: 700;
            display: block;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 16px;
            opacity: 0.8;
        }
        

        /* Main Content */
        .main {
            padding: 80px 0;
        }

        .section {
            margin-bottom: 100px;
        }

        .section-title {
            text-align: center;
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #2c3e50;
        }

        .section-subtitle {
            text-align: center;
            font-size: 22px;
            color: #666;
            margin-bottom: 60px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Industries Grid */
        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .industry-card {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #e9ecef;
        }

        .industry-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .industry-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #4A90E2, #357ABD);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            font-size: 2rem;
            color: white;
        }

        .industry-card h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .industry-card p {
            color: #666;
            line-height: 1.6;
			font-size:16px;
        }

        /* Features Section */
        .features {
            background: white;
            padding: 80px 0;
            border-radius: 20px;
            margin: 60px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .features-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 60px;
        }

        .features-image img {
            width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .features-text .feature {
            margin-bottom: 30px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }

        .feature {
            text-align: center;
        }

        .feature-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #4A90E2, #357ABD);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 2.5rem;
            color: white;
        }

        .feature h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .feature p {
            color: #666;
            line-height: 1.6;
			font-size:16px;
        }

        /* Pricing Section */
        .pricing {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 80px 0;
            border-radius: 20px;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .pricing-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
        }
		
		.pricing-grid-text{ font-size:12px;}
		.pricing-text-term{ font-size:14px;}

        .pricing-card .data-amount {
            font-size: 22px;
            font-weight: 700;
            color: #4A90E2;
            margin-bottom: 10px;
        }

        .pricing-card .price {
            font-size: 18px;
            color: #666;
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            border-radius: 20px;
            margin: 60px 0;
        }

        .cta-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .cta-text {
            text-align: left;
        }

        .cta h2 {
            font-size: 38px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .cta p {
            font-size: 16px;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .cta-image img {
            width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: flex-start;
            flex-wrap: wrap;
        }

        .btn {
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
            border: 2px solid transparent;
        }

        .btn-primary {
            background: white;
            color: #4A90E2;
        }

        .btn-primary:hover {
            background: #f8f9fa;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border-color: white;
        }

        .btn-secondary:hover {
            background: white;
            color: #4A90E2;
        }

        /* Contact Section */
        .contact {
            background: white;
            padding: 80px 0;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .contact-method {
            text-align: center;
            padding: 30px;
            border-radius: 15px;
            border: 2px solid #e9ecef;
            transition: border-color 0.3s;
        }

        .contact-method:hover {
            border-color: #4A90E2;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #4A90E2, #357ABD);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 1.5rem;
        }

        .contact-method h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #2c3e50;
        }

        .contact-method p {
            color: #666;
            margin-bottom: 15px;
        }

        .contact-method a {
            color: #4A90E2;
            text-decoration: none;
            font-weight: 600;
        }        

        /* Responsive */
        @media (max-width: 768px) {
			.nav-sections{ margin-bottom:0px;}
            .header-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .header-text {
                text-align: center;
            }

            .iot-header h1 {
                font-size: 2.5rem;
            }

            .iot-header p {
                font-size: 1.1rem;
            }

            .stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .nav-content {
                flex-direction: column;
                gap: 20px;
            }
            
            .section-title {
                font-size: 2rem;
            }

            .industries-grid {
                grid-template-columns: 1fr;
            }

            .features-content {
                grid-template-columns: 1fr;
            }

            .cta-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .cta-text {
                text-align: center;
            }

            .cta-buttons {
                justify-content: center;
            }
        }