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

:root {
    /* Light Theme Colors */
    --primary: #0066FF;
    --primary-light: #3385FF;
    --primary-dark: #0052CC;
    --secondary: #00D4AA;
    --secondary-light: #33DDBA;
    --accent: #FF6B6B;
    --dark: #1A1A2E;
    --dark-light: #2D3047;
    --light: #FFFFFF;
    --light-gray: #F8F9FA;
    --gray: #6C757D;
    --gray-light: #E9ECEF;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-light: linear-gradient(135deg, var(--light-gray), var(--light));
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 102, 255, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 102, 255, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 102, 255, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 102, 255, 0.2);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary-light), transparent);
    opacity: 0.1;
    animation: float 20s infinite linear;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    background: linear-gradient(135deg, var(--primary), transparent);
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    background: linear-gradient(135deg, var(--secondary), transparent);
    animation-delay: 5s;
    animation-direction: reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    background: linear-gradient(135deg, var(--accent), transparent);
    animation-delay: 10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 20%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    animation-delay: 15s;
}

.grid-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 102, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition-normal);
}

.glass-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--dark);
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
}

.logo-icon {
    width: 60px;
    height: 60px;
}

.logo-highlight {
    color: var(--secondary);
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-2px);
}

.nav-link.support-btn {
    background: var(--secondary);
    color: var(--light);
}

.nav-link.support-btn:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

.nav-toggle:hover {
    background: var(--gray-light);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

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

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
}

.title-line {
    display: block;
    margin-bottom: 10px;
}

.typing-text {
    color: var(--dark);
    position: relative;
}

.typing-text::after {
    content: '|';
    position: absolute;
    right: -8px;
    color: var(--primary);
    animation: blink 1s infinite;
}

.hero-description {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.highlight {
    color: var(--primary);
    font-weight: 600;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--secondary);
    opacity: 0.3;
    z-index: -1;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--light);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border-color: var(--gray-light);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-block:hover {
    transform: translateY(-2px);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    color: black;
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
}


/* About Section */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.mv-card {
    background: var(--light-gray);
    padding: 25px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary);
    transition: var(--transition-normal);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.mv-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.mv-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.mv-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

/* Features */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    border: 1px solid transparent;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.5rem;
}

.feature-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.feature-content p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

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

.app-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-light);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.app-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.app-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-text {
    background: var(--secondary);
    color: var(--light);
    padding: 6px 15px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: var(--secondary);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

.app-header {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 25px;
}

.app-icon-large {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 2.5rem;
}

.app-icon-img {
    width: 80px;
    height: 80px;
}

.app-info {
    flex: 1;
}

.app-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.app-subtitle {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 10px;
}

.app-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.app-rating i {
    color: #FFC107;
    font-size: 0.9rem;
}

.rating-text {
    color: var(--gray);
    font-size: 0.9rem;
    margin-left: 10px;
}

.app-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--light-gray);
    padding: 8px 15px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--dark);
}

.feature-tag i {
    color: var(--primary);
}

.app-description {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Support Section */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.support-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-light);
    transition: var(--transition-normal);
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.support-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 2.5rem;
    margin: 0 auto 25px;
}

.app-support-icon-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-full);
    
}

.support-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.support-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.support-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--gray);
}

.support-list i {
    color: var(--secondary);
}

/* Hero Visual - Enhanced */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-device {
    position: relative;
    width: 280px;
    height: 500px;
    background: var(--light);
    border-radius: 40px;
    box-shadow: 
        0 20px 60px rgba(0, 102, 255, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    animation: float-device 6s ease-in-out infinite;
    overflow: hidden;
}

.device-frame {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid var(--primary-light);
    border-radius: 42px;
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
}

.device-screen {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, #1a237e 0%, #311b92 100%);
    border-radius: 25px;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Status Bar */
.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light);
    font-size: 0.8rem;
    font-weight: 600;
}

.status-time {
    font-family: 'Orbitron', monospace;
    letter-spacing: 1px;
}

.status-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.status-network {
    display: flex;
    align-items: center;
    gap: 5px;
    animation: networkPulse 3s infinite;
}

.status-network i {
    color: var(--secondary);
}

.network-type {
    font-size: 0.7rem;
    opacity: 0.9;
}

.status-battery {
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-battery i {
    color: #4CAF50;
}

.battery-percent {
    font-size: 0.7rem;
    opacity: 0.9;
}

/* Screen Content */
.screen-content {
    flex: 1;
    padding: 30px;
    text-align: center;
    color: var(--light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.app-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    animation: bounce 3s infinite;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.app-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #00D4FF, #00FFAA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

/* Signal Bars - Enhanced */
.signal-bars {
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 30px;
    height: 40px;
    position: relative;
}

.signal-bars::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.bar {
    width: 10px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.4));
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: all 0.3s ease;
    animation: barFluctuate 2s infinite;
}

.bar.active {
    background: linear-gradient(to top, var(--secondary), #00FFAA);
    box-shadow: 0 0 10px rgba(0, 212, 170, 0.5);
}

.bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, transparent, rgba(255, 255, 255, 0.2));
    border-radius: 4px 4px 0 0;
}

.bar:nth-child(1) { 
    height: 12px; 
    animation-delay: 0.1s;
}
.bar:nth-child(2) { 
    height: 18px; 
    animation-delay: 0.2s;
}
.bar:nth-child(3) { 
    height: 24px; 
    animation-delay: 0.3s;
}
.bar:nth-child(4) { 
    height: 18px; 
    animation-delay: 0.4s;
}
.bar:nth-child(5) { 
    height: 12px; 
    animation-delay: 0.5s;
}

/* Network Stats */
.network-stats {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}


.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--light);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transition: all 0.5s ease;
}

#downloadSpeed {
    color: #00FFAA;
}

#uploadSpeed {
    color: #00D4FF;
}

#pingValue {
    color: #FFD700;
}

/* Device Navigation */
.device-nav {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 5px;
    background: transparent;
    border: none;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-btn.active {
    color: var(--light);
    background: rgba(0, 212, 170, 0.1);
}

.nav-btn.active::before {
    transform: scaleX(1);
}

.nav-btn:hover {
    color: var(--light);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-btn i {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.nav-btn span {
    font-weight: 500;
}

/* Orbiting Dots - Enhanced */
.orbiting-dots {
    position: absolute;
    width: 450px;
    height: 450px;
    pointer-events: none;
}

.dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    animation: orbit 8s linear infinite;
    box-shadow: 0 0 20px var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dot::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--light);
    border-radius: 50%;
}

.dot-1 {
    top: 0;
    left: calc(50% - 10px);
    animation-delay: 0s;
}

.dot-2 {
    top: calc(50% - 10px);
    left: 0;
    animation-delay: 2.66s;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.dot-3 {
    top: calc(50% - 10px);
    left: calc(100% - 20px);
    animation-delay: 5.33s;
    background: linear-gradient(135deg, var(--accent), var(--primary));
}

/* New Animations */
@keyframes networkPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@keyframes barFluctuate {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    25% {
        transform: translateY(-2px);
        opacity: 0.8;
    }
    50% {
        transform: translateY(0);
        opacity: 1;
    }
    75% {
        transform: translateY(2px);
        opacity: 0.9;
    }
}

@keyframes float-device {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    25% { 
        transform: translateY(-15px) rotate(1deg); 
    }
    50% { 
        transform: translateY(0) rotate(0deg); 
    }
    75% { 
        transform: translateY(-10px) rotate(-1deg); 
    }
}

@keyframes orbit {
    0% { 
        transform: rotate(0deg) translateX(200px) rotate(0deg) scale(1);
    }
    50% { 
        transform: rotate(180deg) translateX(200px) rotate(-180deg) scale(1.1);
    }
    100% { 
        transform: rotate(360deg) translateX(200px) rotate(-360deg) scale(1);
    }
}

@keyframes bounce {
    0%, 100% { 
        transform: translateY(0); 
    }
    25% { 
        transform: translateY(-8px); 
    }
    50% { 
        transform: translateY(0); 
    }
    75% { 
        transform: translateY(-4px); 
    }
}

/* Responsive */
@media (max-width: 768px) {
    .floating-device {
        width: 250px;
        height: 450px;
    }
    
    .device-screen {
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 20px;
    }
    
    .app-name {
        font-size: 1.8rem;
    }
    
    .network-stats {
        padding: 15px;
    }
    
    .device-nav {
        padding: 8px;
    }
    
    .nav-btn {
        padding: 8px 4px;
        font-size: 0.65rem;
    }
    
    .nav-btn i {
        font-size: 1rem;
    }
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.contact-subtitle {
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.founder-icon-img{
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: var(--radius-full);
    object-fit: cover;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--light-gray);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-text p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: var(--light-gray);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.3rem;
    transition: var(--transition-normal);
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.form-group label i {
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-md);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    background: var(--light);
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--light);
}

.footer-tagline {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--light);
}

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

.footer-column li {
    margin-bottom: 15px;
}

.footer-column a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-normal);
}

.footer-column a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-column a i {
    font-size: 0.9rem;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-badges {
    display: flex;
    gap: 15px;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--light);
    border: none;
    border-radius: var(--radius-full);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

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

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 102, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 102, 255, 0); }
}

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

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(200px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(200px) rotate(-360deg); }
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeLeft 0.8s ease forwards;
}

.animate-fade-right {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeRight 0.8s ease forwards;
}

[data-delay="0.1s"] { animation-delay: 0.1s; }
[data-delay="0.2s"] { animation-delay: 0.2s; }
[data-delay="0.3s"] { animation-delay: 0.3s; }
[data-delay="0.4s"] { animation-delay: 0.4s; }
[data-delay="0.5s"] { animation-delay: 0.5s; }
[data-delay="0.6s"] { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--light);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-normal);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .apps-grid {
        grid-template-columns: 1fr;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 14px 24px;
    }
}