/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0e1a;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a2332 25%, #0f1419 50%, #1a2332 75%, #0a0e1a 100%);
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(147, 197, 253, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.08) 1px, transparent 1px);
    background-size: 60px 60px, 90px 90px, 140px 140px;
    animation: particleFloat 25s linear infinite;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-120px) rotate(360deg); }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Main Container */
.main-container {
    position: relative;
    z-index: 1;
    padding: 20px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    animation: fadeInUp 1.2s ease-out;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 0 40px rgba(59, 130, 246, 0.6);
    margin-bottom: 15px;
    letter-spacing: -2px;
    animation: glow 3s ease-in-out infinite alternate;
    background: linear-gradient(135deg, #ffffff 0%, #93c5fd 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #3b82f6;
    text-shadow: 0 0 25px rgba(59, 130, 246, 0.5);
    margin-bottom: 25px;
    animation: slideInRight 1.2s ease-out 0.4s both;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.3rem;
    color: #cbd5e1;
    max-width: 650px;
    margin: 0 auto 35px;
    line-height: 1.7;
    animation: slideInLeft 1.2s ease-out 0.7s both;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out 1s both;
}

.hero-btn {
    padding: 18px 35px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border: none;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.4);
    color: #ffffff;
}

.btn-outline-primary {
    border: 2px solid #3b82f6;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(10px);
}

.btn-outline-primary:hover {
    background: #3b82f6;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.4);
}

/* Section Styles */
.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 25px rgba(59, 130, 246, 0.5);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #cbd5e1;
    font-weight: 400;
    margin-bottom: 35px;
}

.title-underline {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #3b82f6, #93c5fd, transparent);
    margin: 0 auto 25px;
    border-radius: 2px;
    animation: expand 2.5s ease-out;
}

/* Services Section */
.services-section {
    background: rgba(59, 130, 246, 0.02);
    position: relative;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    height: 100%;
}

.service-card:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.2);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 45px rgba(59, 130, 246, 0.4);
}

.service-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 18px;
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.service-card p {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* About Section */
.about-section {
    position: relative;
}

.about-content {
    animation: fadeInUp 1.2s ease-out;
}

.about-text {
    font-size: 1.15rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-stats {
    display: flex;
    gap: 35px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.stat-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #3b82f6;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
    margin-bottom: 8px;
}

.stat-item p {
    color: #cbd5e1;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    animation: fadeInUp 1.2s ease-out 0.4s both;
}

.image-placeholder {
    width: 100%;
    height: 450px;
    background: rgba(59, 130, 246, 0.08);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    color: #3b82f6;
    text-shadow: 0 0 25px rgba(59, 130, 246, 0.6);
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-placeholder:hover {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.5);
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.2);
}

/* Why Choose Us Section */
.why-choose-section {
    background: rgba(59, 130, 246, 0.02);
    position: relative;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    height: 100%;
}

.feature-card:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    font-size: 1.8rem;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

.feature-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.feature-content p {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* Contact Section */
.contact-section {
    position: relative;
}

.contact-container {
    background: rgba(59, 130, 246, 0.05);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 25px;
    padding: 45px 35px;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-container:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 35px 90px rgba(59, 130, 246, 0.2);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 35px;
}

.contact-method {
    display: flex;
    align-items: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
}

.contact-method:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    font-size: 1.8rem;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-method:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.contact-details h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.contact-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-link:hover {
    color: #93c5fd;
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
    transform: translateX(5px);
}

.contact-cta {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.cta-text {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 25px;
    font-weight: 500;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
    border: 2px solid transparent;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
}

.cta-button:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.4);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-button i {
    font-size: 1.2rem;
    animation: rocketPulse 2.5s ease-in-out infinite;
}

/* Footer */
.footer {
    background: rgba(10, 14, 26, 0.95);
    border-top: 1px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(20px);
}

.footer-text {
    color: #cbd5e1;
    font-size: 1rem;
    margin: 0;
}

.footer-link {
    color: #3b82f6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #93c5fd;
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes glow {
    from { 
        text-shadow: 0 0 40px rgba(59, 130, 246, 0.6);
        filter: brightness(1);
    }
    to { 
        text-shadow: 0 0 50px rgba(59, 130, 246, 0.8), 0 0 80px rgba(59, 130, 246, 0.4);
        filter: brightness(1.1);
    }
}

@keyframes expand {
    from { width: 0; }
    to { width: 120px; }
}

@keyframes rocketPulse {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}

/* Contact Page Styles */
.page-header {
    animation: fadeInUp 1.2s ease-out;
}

.page-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #3b82f6;
    text-shadow: 0 0 25px rgba(59, 130, 246, 0.6);
    margin-bottom: 15px;
    animation: slideInRight 1.2s ease-out 0.4s both;
    letter-spacing: -1px;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #cbd5e1;
    font-weight: 400;
    animation: slideInLeft 1.2s ease-out 0.7s both;
}

.contact-form-card {
    background: rgba(59, 130, 246, 0.05);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 25px;
    padding: 45px 35px;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 1.2s ease-out 1s both;
}

.contact-form-card:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 35px 90px rgba(59, 130, 246, 0.2);
}

.form-title {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 35px;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.form-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.1rem;
    text-shadow: 0 0 8px rgba(59, 130, 246, 0.3);
}

.form-control {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(59, 130, 246, 0.3);
    color: #ffffff;
    font-size: 1.1rem;
    padding: 18px 25px;
    border-radius: 12px;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
}

.form-control::placeholder {
    color: #94a3b8;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: #3b82f6;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.3);
    color: #ffffff;
    outline: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

.btn-submit {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border: none;
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    width: 100%;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-submit:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.success-message {
    text-align: center;
    padding: 35px;
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 18px;
    backdrop-filter: blur(15px);
    animation: fadeInUp 0.6s ease-out;
}

.success-message h4 {
    color: #22c55e;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 12px;
    text-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
}

.success-message p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin: 0;
}

.contact-info-section {
    animation: fadeInUp 1.2s ease-out 1.3s both;
}

.contact-info {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    padding: 18px 30px;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
}

.contact-info i {
    color: #3b82f6;
    font-size: 1.3rem;
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
}

.contact-info span {
    color: #ffffff;
    font-weight: 500;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 250px;
    }
    
    .about-stats {
        gap: 25px;
    }
    
    .stat-item h3 {
        font-size: 2.2rem;
    }
    
    .image-placeholder {
        height: 350px;
        font-size: 3.5rem;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .about-text {
        font-size: 1.05rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        min-width: auto;
    }
    
    .image-placeholder {
        height: 300px;
        font-size: 3rem;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-content h3 {
        font-size: 1.2rem;
    }
    
    .contact-container {
        padding: 30px 20px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }
    
    .contact-form-card {
        padding: 35px 25px;
        margin: 0 20px;
    }
    
    .form-title {
        font-size: 1.7rem;
    }
    
    .contact-info {
        padding: 15px 25px;
    }
    
    .contact-info span {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 2rem;
    }
    
    .contact-form-card {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .btn-submit {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }
}