/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #000 0%, #1a0000 50%, #000 100%);
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 0, 0, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 0, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 40%, rgba(255, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px, 120px 120px;
    animation: particleFloat 20s linear infinite;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 0, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 15s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 51, 51, 0.3);
    transition: all 0.3s ease;
}

.navbar-brand .brand-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff3333;
    text-shadow: 0 0 15px rgba(255, 51, 51, 0.6);
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #ff3333 !important;
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.6);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ff3333;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* 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 1s ease-out;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 51, 51, 0.8);
    margin-bottom: 10px;
    letter-spacing: 3px;
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 600;
    color: #ff3333;
    text-shadow: 0 0 20px rgba(255, 51, 51, 0.6);
    margin-bottom: 20px;
    animation: slideInRight 1s ease-out 0.3s both;
}

.hero-description {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-btn {
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
}

.btn-primary {
    background: linear-gradient(45deg, #ff3333, #ff6666);
    border: none;
    color: #fff;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #ff6666, #ff3333);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 51, 51, 0.4);
    color: #fff;
}

.btn-outline-primary {
    border: 2px solid #ff3333;
    color: #ff3333;
    background: transparent;
}

.btn-outline-primary:hover {
    background: #ff3333;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 51, 51, 0.4);
}

/* Section Styles */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 51, 51, 0.6);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    font-weight: 400;
    margin-bottom: 30px;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff3333, transparent);
    margin: 0 auto 20px;
    border-radius: 2px;
    animation: expand 2s ease-out;
}

/* Services Section */
.services-section {
    background: rgba(255, 51, 51, 0.02);
    position: relative;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 51, 51, 0.2);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
}

.service-card:hover {
    background: rgba(255, 51, 51, 0.1);
    border-color: rgba(255, 51, 51, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 51, 51, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff3333, #ff6666);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 10px 25px rgba(255, 51, 51, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(255, 51, 51, 0.4);
}

.service-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.5);
}

.service-card p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* About Section */
.about-section {
    position: relative;
}

.about-content {
    animation: fadeInUp 1s ease-out;
}

.about-text {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.stat-item h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff3333;
    text-shadow: 0 0 15px rgba(255, 51, 51, 0.6);
    margin-bottom: 5px;
}

.stat-item p {
    color: #ccc;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: rgba(255, 51, 51, 0.1);
    border: 2px solid rgba(255, 51, 51, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #ff3333;
    text-shadow: 0 0 20px rgba(255, 51, 51, 0.6);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    background: rgba(255, 51, 51, 0.15);
    border-color: rgba(255, 51, 51, 0.5);
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 51, 51, 0.2);
}

/* Why Choose Us Section */
.why-choose-section {
    background: rgba(255, 51, 51, 0.02);
    position: relative;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 51, 51, 0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
}

.feature-card:hover {
    background: rgba(255, 51, 51, 0.1);
    border-color: rgba(255, 51, 51, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 51, 51, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff3333, #ff6666);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 51, 51, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(255, 51, 51, 0.4);
}

.feature-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.5);
}

.feature-content p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact-section {
    position: relative;
}

.contact-container {
    background: rgba(255, 51, 51, 0.05);
    border: 2px solid rgba(255, 51, 51, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(255, 51, 51, 0.1);
    transition: all 0.3s ease;
}

.contact-container:hover {
    background: rgba(255, 51, 51, 0.08);
    border-color: rgba(255, 51, 51, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(255, 51, 51, 0.2);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 51, 51, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-method:hover {
    background: rgba(255, 51, 51, 0.1);
    border-color: rgba(255, 51, 51, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 51, 51, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff3333, #ff6666);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 51, 51, 0.3);
    transition: all 0.3s ease;
}

.contact-method:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 51, 51, 0.4);
}

.contact-details h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.5);
}

.contact-link {
    color: #ff3333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.contact-link:hover {
    color: #ff6666;
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.6);
    transform: translateX(5px);
}

.contact-cta {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 51, 51, 0.2);
}

.cta-text {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 20px;
    font-weight: 500;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #ff3333, #ff6666);
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 51, 51, 0.3);
    border: 2px solid transparent;
}

.cta-button:hover {
    background: linear-gradient(45deg, #ff6666, #ff3333);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 51, 51, 0.4);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-button i {
    font-size: 1.1rem;
    animation: rocketPulse 2s ease-in-out infinite;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid rgba(255, 51, 51, 0.3);
}

.footer-text {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

.footer-link {
    color: #ff3333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #ff6666;
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.6);
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes glow {
    from { text-shadow: 0 0 30px rgba(255, 51, 51, 0.8); }
    to { text-shadow: 0 0 40px rgba(255, 51, 51, 1), 0 0 60px rgba(255, 51, 51, 0.6); }
}

@keyframes expand {
    from { width: 0; }
    to { width: 100px; }
}

@keyframes rocketPulse {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(3px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 200px;
    }
    
    .about-stats {
        gap: 20px;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .image-placeholder {
        height: 300px;
        font-size: 3rem;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        min-width: auto;
    }
    
    .image-placeholder {
        height: 250px;
        font-size: 2.5rem;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-content h3 {
        font-size: 1.1rem;
    }
    
    .contact-container {
        padding: 25px 15px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Contact Page Styles */
.page-header {
    animation: fadeInUp 1s ease-out;
}

.page-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff3333;
    text-shadow: 0 0 20px rgba(255, 51, 51, 0.6);
    margin-bottom: 10px;
    animation: slideInRight 1s ease-out 0.3s both;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    font-weight: 400;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.contact-form-card {
    background: rgba(255, 51, 51, 0.05);
    border: 2px solid rgba(255, 51, 51, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(255, 51, 51, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.contact-form-card:hover {
    background: rgba(255, 51, 51, 0.08);
    border-color: rgba(255, 51, 51, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(255, 51, 51, 0.2);
}

.form-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(255, 51, 51, 0.5);
}

.form-label {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    font-size: 1rem;
    text-shadow: 0 0 5px rgba(255, 51, 51, 0.3);
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 51, 51, 0.3);
    color: #fff;
    font-size: 1rem;
    padding: 15px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
}

.form-control::placeholder {
    color: #ccc;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ff6666;
    box-shadow: 0 0 20px rgba(255, 51, 51, 0.3);
    color: #fff;
    outline: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: linear-gradient(45deg, #ff3333, #ff6666);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    width: 100%;
    margin-top: 10px;
}

.btn-submit:hover {
    background: linear-gradient(45deg, #ff6666, #ff3333);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 51, 51, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.success-message {
    text-align: center;
    padding: 30px;
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.5s ease-out;
}

.success-message h4 {
    color: #00ff00;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.success-message p {
    color: #ccc;
    font-size: 1rem;
    margin: 0;
}

.contact-info-section {
    animation: fadeInUp 1s ease-out 1.2s both;
}

.contact-info {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 51, 51, 0.1);
    border: 2px solid rgba(255, 51, 51, 0.3);
    border-radius: 50px;
    padding: 15px 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-info:hover {
    background: rgba(255, 51, 51, 0.15);
    border-color: rgba(255, 51, 51, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 51, 51, 0.2);
}

.contact-info i {
    color: #ff3333;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.6);
}

.contact-info span {
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .contact-form-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .contact-info {
        padding: 12px 20px;
    }
    
    .contact-info span {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .contact-form-card {
        padding: 25px 15px;
    }
    
    .form-title {
        font-size: 1.3rem;
    }
    
    .btn-submit {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 8px;
        padding: 15px;
    }
} 