/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.quicksand-regular {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 40px;
  }
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e8eaed;
    background-color: #1a1a1a;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 123, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 198, 255, 0.1) 0%, transparent 50%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 123, 255, 0.2);
    box-shadow: 0 2px 20px rgba(0, 123, 255, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007BFF 0%, #00C6FF 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.logo h1 {
    color: #e8eaed;
    font-size: 1.6rem;
    font-weight: 600;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #b3b3b3;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #00C6FF;
    background: rgba(0, 198, 255, 0.1);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, #007BFF, #00C6FF);
    transition: all 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
    left: 0;
}

/* Main Content */
main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(0, 123, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(0, 198, 255, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, transparent 0%, rgba(0, 123, 255, 0.05) 50%, transparent 100%);
    color: white;
    padding: 8rem 2rem;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::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"><circle cx="50" cy="50" r="1" fill="rgba(0,198,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    animation: float 20s infinite linear;
    pointer-events: none;
}

@keyframes float {
    0% { transform: translateY(0px) translateX(0px); }
    100% { transform: translateY(-100px) translateX(-100px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #00C6FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #b3b3b3;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #007BFF 0%, #00C6FF 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #00C6FF;
    border: 2px solid #00C6FF;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #007BFF 0%, #00C6FF 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.3);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #1a1a1a;
}

.services h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #e8eaed;
    background: linear-gradient(135deg, #ffffff 0%, #00C6FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: linear-gradient(145deg, #2d2d2d 0%, #1f1f1f 100%);
    border: 1px solid rgba(0, 123, 255, 0.2);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #007BFF, #00C6FF);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.2);
    border-color: rgba(0, 198, 255, 0.4);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #00C6FF;
    font-weight: 600;
}

.service-card p {
    color: #b3b3b3;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(0, 123, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(0, 198, 255, 0.15) 0%, transparent 50%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 123, 255, 0.2);
}

.page-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #00C6FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    font-size: 1.3rem;
    color: #b3b3b3;
}

/* About Page Styles */
.about-content {
    padding: 6rem 0;
    background: #1a1a1a;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #00C6FF;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 2rem;
    color: #b3b3b3;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-stats {
    background: linear-gradient(145deg, #2d2d2d 0%, #1f1f1f 100%);
    border: 1px solid rgba(0, 123, 255, 0.2);
    padding: 2.5rem;
    border-radius: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1rem;
}

.stat h4 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #007BFF 0%, #00C6FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat p {
    color: #b3b3b3;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Contact Page Styles */
.contact-content {
    padding: 6rem 0;
    background: #1a1a1a;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3,
.contact-form h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #00C6FF;
    font-weight: 600;
}

.contact-info p {
    color: #b3b3b3;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    padding: 1.5rem;
    background: linear-gradient(145deg, #2d2d2d 0%, #1f1f1f 100%);
    border: 1px solid rgba(0, 123, 255, 0.2);
    border-radius: 10px;
}

.contact-item h4 {
    color: #00C6FF;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #e8eaed;
    margin: 0;
    font-weight: 500;
}

/* Form Styles */
.contact-form {
    background: linear-gradient(145deg, #2d2d2d 0%, #1f1f1f 100%);
    border: 1px solid rgba(0, 123, 255, 0.2);
    padding: 2.5rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #00C6FF;
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(0, 123, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(26, 26, 26, 0.8);
    color: #e8eaed;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #00C6FF;
    box-shadow: 0 0 0 3px rgba(0, 198, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group select {
    cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border-top: 1px solid rgba(0, 123, 255, 0.2);
    color: #b3b3b3;
    text-align: center;
    padding: 2.5rem 0;
    margin-top: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .logo {
        gap: 0.5rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    main {
        margin-top: 160px;
    }
    
    .page-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .service-card,
    .about-stats,
    .contact-form {
        padding: 2rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .services h2,
    .page-header h2 {
        font-size: 2rem;
    }
} 