/* Import Professional Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* Color Variables */
:root {
    --primary-color: #00D4AA;
    --primary-dark: #00A8CC;
    --secondary-color: #1a1a1a;
    --accent-color: #4CAF50;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #999999;
    --background-white: #ffffff;
    --background-light: #f8f9fa;
    --background-dark: #0a0a0a;
    --border-color: rgba(0, 0, 0, 0.1);
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    --gradient-dark: linear-gradient(135deg, var(--background-dark), var(--secondary-color));
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 400;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    height: 60px;
}

.nav-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    height: 32px;
    width: 32px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.logo-spin {
    animation: spin 0.8s ease-in-out;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.company-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.get-api-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 18px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.get-api-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.25);
}

.login-btn {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: var(--background-light);
    border-color: var(--primary-color);
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    transition: color 0.3s ease;
    display: block;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Dropdown Styles */
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--background-white);
    min-width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-section {
    margin-bottom: 16px;
}

.dropdown-section:last-child {
    margin-bottom: 0;
}

.dropdown-section h4 {
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 6px;
}

.dropdown-content a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 6px 0;
    font-size: 13px;
    transition: color 0.3s ease;
    border-radius: 4px;
    padding-left: 10px;
}

.dropdown-content a:hover {
    color: var(--primary-color);
    background-color: var(--background-light);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-image: url('hero_image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    max-width: 1400px;
    width: 100%;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.earth-gif {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.earth-gif:hover {
    transform: scale(1.05);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-primary, .btn-secondary {
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 180px;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 212, 170, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Insights Section */
.insights-section {
    padding: 120px 0;
    background: var(--background-white);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.3rem;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    margin-top: 80px;
}

.insight-card {
    text-align: center;
    padding: 40px 30px;
}

.insight-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.satellite-visualization, .high-res-visualization, .analytics-visualization {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.satellite-visualization {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(0, 168, 204, 0.1));
}

.high-res-visualization {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15), rgba(0, 168, 204, 0.15));
}

.analytics-visualization {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.2), rgba(0, 168, 204, 0.2));
}

.satellite-icon, .zoom-icon, .data-icon {
    font-size: 3rem;
    z-index: 2;
}

.orbit-ring {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.insight-card h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 600;
}

.insight-card p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1rem;
}

.location-tag {
    background: var(--background-light);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Action Section */
.action-section {
    padding: 120px 0;
    background: var(--background-light);
}

.action-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.action-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
}

.highlight {
    color: var(--primary-color);
}

.action-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.action-visual {
    position: relative;
    height: 400px;
}

.earth-visualization {
    position: relative;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe {
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: 50%;
    position: relative;
    animation: rotate 30s linear infinite;
}

.satellite-network {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: rotate 20s linear infinite reverse;
}

.data-points {
    position: absolute;
    width: 100%;
    height: 100%;
}

.data-points::before,
.data-points::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.data-points::before {
    top: 20%;
    left: 30%;
    animation-delay: 0.5s;
}

.data-points::after {
    bottom: 30%;
    right: 25%;
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background: var(--background-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.testimonial-card {
    background: var(--background-light);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px var(--shadow-light);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info strong {
    color: var(--text-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.industry-tag {
    background: var(--gradient-primary);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* SDA Section */
.sda-section {
    padding: 120px 0;
    background: var(--background-light);
}

.section-description {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.sda-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.sda-card {
    background: var(--background-white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.sda-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px var(--shadow-light);
}

.sda-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.sda-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 600;
}

.sda-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Platform Section */
.platform-section {
    padding: 120px 0;
    background: var(--background-white);
}

.platform-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.platform-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
}

.platform-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.platform-visual {
    position: relative;
    height: 400px;
}

.platform-dashboard {
    background: var(--background-light);
    border-radius: 16px;
    padding: 20px;
    height: 100%;
    border: 1px solid var(--border-color);
}

.dashboard-header {
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 8px;
    margin-bottom: 20px;
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: calc(100% - 60px);
}

.chart-area {
    flex: 1;
    background: var(--background-white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.data-panels {
    display: flex;
    gap: 10px;
    height: 60px;
}

.panel {
    flex: 1;
    background: var(--background-white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

/* Industries Section */
.industries-section {
    padding: 120px 0;
    background: var(--background-light);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 80px;
}

.industry-card {
    background: var(--background-white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px var(--shadow-light);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.industry-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 600;
}

.industry-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: var(--gradient-dark);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.cta-section .btn-primary:hover {
    background: var(--primary-dark);
}

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

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
    background: var(--background-dark);
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 30px;
    width: 30px;
    margin-right: 10px;
}

.footer-company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--secondary-color);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 16px;
        height: 55px;
    }
    
    .nav-menu {
        gap: 16px;
    }
    
    .nav-link {
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .logo-img {
        height: 28px;
        width: 28px;
    }
    
    .company-name {
        font-size: 18px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        justify-content: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .action-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .platform-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .sda-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .dropdown-content {
        min-width: 250px;
        left: -50px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 12px 16px;
    }
    
    .nav-menu {
        margin-top: 12px;
        gap: 12px;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .earth-gif {
        max-width: 250px;
        max-height: 250px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .insight-card, .testimonial-card, .sda-card, .industry-card {
        padding: 30px 20px;
    }
    
    .dropdown-content {
        min-width: 200px;
        left: -100px;
    }
}