/* Page-specific styles for industry pages */

/* Page Header */
.page-header {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    margin-top: 60px;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #00D4AA;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 800px;
    line-height: 1.6;
}

/* Industry Hero Section */
.industry-hero {
    padding: 80px 0;
    background: white;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.hero-stats .stat {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00D4AA;
    margin-bottom: 5px;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: #666;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Agriculture Visualization */
.agriculture-visualization {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    border-radius: 12px;
    overflow: hidden;
}

.field-grid {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background-image: 
        linear-gradient(rgba(0, 212, 170, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 170, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    border-radius: 8px;
}

.crop-health-indicators {
    position: absolute;
    top: 50px;
    left: 50px;
    width: 20px;
    height: 20px;
    background: #00D4AA;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.crop-health-indicators::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 40px;
    width: 15px;
    height: 15px;
    background: #ff6b6b;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite 0.5s;
}

.crop-health-indicators::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 80px;
    width: 18px;
    height: 18px;
    background: #4ecdc4;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite 1s;
}

.weather-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(135, 206, 235, 0.3) 0%, transparent 50%);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00D4AA;
    font-weight: bold;
}

/* Use Cases Section */
.use-cases {
    padding: 80px 0;
    background: white;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.use-case {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    border-left: 4px solid #00D4AA;
}

.use-case h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.use-case p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.use-case-image {
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
}

.precision-farming-visual {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #e8f5e8, #d4edda);
    position: relative;
}

.precision-farming-visual::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background-image: 
        linear-gradient(rgba(0, 212, 170, 0.2) 2px, transparent 2px),
        linear-gradient(90deg, rgba(0, 212, 170, 0.2) 2px, transparent 2px);
    background-size: 20px 20px;
}

.insurance-visual {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #fff3cd, #ffeaa7);
    position: relative;
}

.insurance-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #ff6b6b;
    border-radius: 50%;
    opacity: 0.7;
}

.sustainability-visual {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #d1ecf1, #bee5eb);
    position: relative;
}

.sustainability-visual::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.3) 0%, transparent 70%);
    border-radius: 8px;
}

/* API Integration Section */
.api-integration {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

.api-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.api-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00D4AA, #00A8CC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.api-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.api-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.api-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.api-icon {
    font-size: 1.2rem;
}

.api-code {
    background: #2d2d2d;
    border-radius: 12px;
    padding: 30px;
}

.code-block h4 {
    color: #00D4AA;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.code-block pre {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    color: #e9ecef;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.4;
}

.code-block code {
    color: #e9ecef;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h2 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .api-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .api-features {
        grid-template-columns: 1fr;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: box-shadow 0.3s ease;
}

.pricing-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid #00D4AA;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #00D4AA;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.price {
    margin-bottom: 10px;
}

.currency {
    font-size: 1.5rem;
    color: #666;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #00D4AA;
}

.period {
    font-size: 1rem;
    color: #666;
}

.price-description {
    color: #666;
    font-size: 0.9rem;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-footer {
    text-align: center;
}

/* API Features Section */
.api-features-section {
    padding: 80px 0;
    background: white;
}

/* Getting Started Section */
.getting-started {
    padding: 80px 0;
    background: #f8f9fa;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step {
    text-align: center;
    padding: 40px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00D4AA, #00A8CC);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Code Examples Section */
.code-examples {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

.code-tabs {
    margin-top: 60px;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.tab-btn {
    background: #2d2d2d;
    color: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn.active {
    background: #00D4AA;
    color: white;
}

.tab-btn:hover {
    background: #3d3d3d;
}

.tab-btn.active:hover {
    background: #00D4AA;
}

.tab-content {
    background: #2d2d2d;
    border-radius: 12px;
    padding: 30px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel h4 {
    color: #00D4AA;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.tab-panel pre {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    color: #e9ecef;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.faq-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #00D4AA;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design for API Pages */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: white;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
    font-weight: 700;
}

.mission-statement {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
}

.mission-values {
    display: grid;
    gap: 30px;
}

.value h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #00D4AA;
    font-weight: 600;
}

.value p {
    color: #666;
    line-height: 1.6;
}

.mission-visual {
    position: relative;
    height: 400px;
}

.earth-visualization {
    position: relative;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #00D4AA, #00A8CC);
    border-radius: 50%;
    position: relative;
    animation: rotate 20s linear infinite;
}

.satellite-network {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(0, 212, 170, 0.3);
    border-radius: 50%;
    animation: rotate 15s linear infinite reverse;
}

.satellite-network::before,
.satellite-network::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #00D4AA;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.satellite-network::before {
    top: 20px;
    left: 30px;
    animation-delay: 0.5s;
}

.satellite-network::after {
    bottom: 30px;
    right: 25px;
    animation-delay: 1s;
}

.data-streams {
    position: absolute;
    width: 100%;
    height: 100%;
}

.data-streams::before,
.data-streams::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #00D4AA, transparent);
    animation: dataFlow 3s ease-in-out infinite;
}

.data-streams::before {
    top: 10%;
    left: 20%;
    animation-delay: 0.5s;
}

.data-streams::after {
    top: 30%;
    right: 20%;
    animation-delay: 1.5s;
}

@keyframes dataFlow {
    0%, 100% { opacity: 0; transform: translateY(-20px); }
    50% { opacity: 1; transform: translateY(20px); }
}

/* Company Story Section */
.company-story {
    padding: 80px 0;
    background: #f8f9fa;
}

.story-timeline {
    margin-top: 60px;
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #00D4AA;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: #00D4AA;
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    margin: 0 30px;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Technology Section */
.technology-section {
    padding: 80px 0;
    background: white;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.tech-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    border-left: 4px solid #00D4AA;
    transition: box-shadow 0.3s ease;
}

.tech-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.tech-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.tech-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tech-features {
    list-style: none;
}

.tech-features li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.tech-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00D4AA;
    font-weight: bold;
}

/* Leadership Section */
.leadership-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.leader-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.leader-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.leader-photo {
    margin-bottom: 20px;
}

.placeholder-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #00D4AA, #00A8CC);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.leader-card h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #333;
}

.leader-title {
    color: #00D4AA;
    font-weight: 600;
    margin-bottom: 15px;
}

.leader-bio {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00D4AA;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        padding-left: 60px;
    }
    
    .timeline-year {
        position: absolute;
        left: -30px;
        margin: 0;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .leadership-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .mission-text h2 {
        font-size: 2rem;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .leader-card {
        padding: 20px;
    }
    
    .placeholder-photo {
        width: 100px;
        height: 100px;
        font-size: 1.5rem;
    }
}

/* Login Section */
.login-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.login-form-container {
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 700;
}

.login-header p {
    color: #666;
    font-size: 1.1rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input {
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #00D4AA;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-label input {
    margin-right: 8px;
}

.forgot-password {
    color: #00D4AA;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-btn-full {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.login-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.login-footer p {
    color: #666;
    font-size: 0.9rem;
}

.login-footer a {
    color: #00D4AA;
    text-decoration: none;
    font-weight: 600;
}

.login-footer a:hover {
    text-decoration: underline;
}

.login-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-graphic {
    position: relative;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.satellite-orbit-login {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(0, 212, 170, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.data-points-login {
    position: absolute;
    width: 100%;
    height: 100%;
}

.data-points-login::before,
.data-points-login::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #00D4AA;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.data-points-login::before {
    top: 20%;
    left: 30%;
    animation-delay: 0.5s;
}

.data-points-login::after {
    bottom: 30%;
    right: 25%;
    animation-delay: 1s;
}

.login-text {
    text-align: center;
    color: #333;
    z-index: 2;
}

.login-text h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #00D4AA;
    font-weight: 600;
}

.login-text p {
    color: #666;
    line-height: 1.6;
    max-width: 250px;
}

/* Responsive Design for Login */
@media (max-width: 768px) {
    .login-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .login-form-container {
        padding: 40px 30px;
    }
    
    .login-header h1 {
        font-size: 2rem;
    }
    
    .login-graphic {
        width: 300px;
        height: 300px;
    }
    
    .satellite-orbit-login {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .login-section {
        padding: 80px 0 60px;
    }
    
    .login-form-container {
        padding: 30px 20px;
    }
    
    .login-header h1 {
        font-size: 1.8rem;
    }
    
    .form-group input {
        padding: 12px 15px;
    }
    
    .login-btn-full {
        padding: 15px;
    }
    
    .login-graphic {
        width: 250px;
        height: 250px;
    }
    
    .satellite-orbit-login {
        width: 200px;
        height: 200px;
    }
}

/* Government Visualization */
.government-visualization {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #e8f4f8, #f0f8ff);
    border-radius: 12px;
    overflow: hidden;
}

.city-grid {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background-image: 
        linear-gradient(rgba(0, 212, 170, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 170, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    border-radius: 8px;
}

.infrastructure-monitoring {
    position: absolute;
    top: 50px;
    left: 50px;
    width: 20px;
    height: 20px;
    background: #00D4AA;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.infrastructure-monitoring::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 40px;
    width: 15px;
    height: 15px;
    background: #ff6b6b;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite 0.5s;
}

.infrastructure-monitoring::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 80px;
    width: 18px;
    height: 18px;
    background: #4ecdc4;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite 1s;
}

.data-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0, 168, 204, 0.2) 0%, transparent 50%);
}

.smart-city-visual {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #e8f4f8, #d1ecf1);
    position: relative;
}

.smart-city-visual::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background-image: 
        linear-gradient(rgba(0, 212, 170, 0.2) 2px, transparent 2px),
        linear-gradient(90deg, rgba(0, 212, 170, 0.2) 2px, transparent 2px);
    background-size: 25px 25px;
}

.public-safety-visual {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #fff3cd, #ffeaa7);
    position: relative;
}

.public-safety-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #ff6b6b;
    border-radius: 50%;
    opacity: 0.7;
}

.resource-management-visual {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #d1ecf1, #bee5eb);
    position: relative;
}

.resource-management-visual::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.3) 0%, transparent 70%);
    border-radius: 8px;
}
