/* Professional Business Website Styles for Sinkhwal Services */

body {
    margin: 0;
    padding: 0;
    background: black;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    overflow-x: hidden;
    padding: 20px;
    line-height: 1.6;
}

.glow-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(37, 99, 235, 0), rgba(37, 99, 235, 0.6), rgba(37, 99, 235, 0));
    opacity: 0;
    animation: glow 2s forwards;
}

@keyframes glow {
    from { opacity: 0; }
    to { opacity: 1; }
}

.title {
    font-size: 4rem;
    background: linear-gradient(45deg, #2563eb, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: fade-in 2s forwards, title-animate 4s infinite alternate;
    margin: 20px 0 10px 0;
    font-weight: 700;
}

.subtitle {
    font-size: 1.8rem;
    color: #60a5fa;
    margin: 10px 0 40px 0;
    opacity: 0;
    animation: fade-in 2s 0.5s forwards;
    font-weight: 300;
    max-width: 800px;
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes title-animate {
    from { transform: scale(1); }
    to { transform: scale(1.02); }
}

.particles {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

/* Hero Call-to-Action */
.hero-cta {
    display: flex;
    gap: 20px;
    margin: 40px 0 60px 0;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fade-in 2s 1s forwards;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.cta-button.primary {
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(37, 99, 235, 0.5);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

.cta-icon {
    font-size: 1.2rem;
}

/* Services Section */
.services-section {
    margin: 80px 0;
    width: 100%;
    max-width: 1200px;
    z-index: 10;
    position: relative;
}

.services-title {
    font-size: 3rem;
    margin-bottom: 50px;
    background: linear-gradient(45deg, #2563eb, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-weight: 700;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    border-radius: 25px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    backdrop-filter: blur(15px);
    cursor: pointer;
    transition: all 0.4s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(37, 99, 235, 0.15);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.3);
    border-color: rgba(37, 99, 235, 0.5);
}

.service-card.featured {
    border: 2px solid #2563eb;
    background: rgba(37, 99, 235, 0.1);
}

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

.service-card h3 {
    color: #60a5fa;
    margin: 15px 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.service-card p {
    color: #e5e7eb;
    font-size: 1.1rem;
    margin: 20px 0;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 25px 0;
}

.feature-tag {
    background: rgba(37, 99, 235, 0.2);
    color: #93c5fd;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid rgba(37, 99, 235, 0.3);
    white-space: nowrap;
}

.service-cta {
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    width: 100%;
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #f59e0b, #d97706);
    color: white;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* About Section */
.about-section {
    min-height: 100vh;
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-title {
    font-size: 3.5rem;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #2563eb, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-weight: 700;
}

.about-text {
    text-align: left;
    line-height: 1.8;
    font-size: 1.2rem;
    color: #f1f5f9;
}

.about-text p {
    margin-bottom: 25px;
}

.about-text strong {
    color: #60a5fa;
    font-weight: 600;
}

.expertise-showcase {
    margin: 40px 0;
    padding: 30px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.expertise-showcase h3 {
    color: #60a5fa;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

.expertise-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.expertise-item {
    background: rgba(37, 99, 235, 0.2);
    color: white;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 0.95rem;
    border: 1px solid rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.expertise-item:hover {
    background: rgba(37, 99, 235, 0.3);
    transform: scale(1.05);
}

.value-proposition {
    margin: 40px 0;
}

.value-proposition h3 {
    color: #60a5fa;
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

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

.value-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(37, 99, 235, 0.1);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.value-item h4 {
    color: #60a5fa;
    margin: 15px 0 10px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.value-item p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cta-text {
    font-size: 1.1rem;
    color: #e2e8f0;
    text-align: center;
    margin: 40px 0 30px 0;
    font-weight: 500;
}

.contact-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-btn.primary {
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.contact-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(37, 99, 235, 0.5);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

.btn-icon {
    font-size: 1.2rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(15, 23, 42, 0.9));
    width: 100%;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #2563eb, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: #94a3b8;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-method {
    background: rgba(255, 255, 255, 0.08);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-method:hover {
    background: rgba(37, 99, 235, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.2);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-method h3 {
    color: #60a5fa;
    margin: 15px 0 10px 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-method p {
    color: white;
    font-size: 1.2rem;
    margin: 10px 0;
    font-weight: 500;
}

.contact-status {
    color: #94a3b8;
    font-size: 0.9rem;
    font-style: italic;
}

.business-hours {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.business-hours h3 {
    color: #60a5fa;
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 600;
}

.hours-grid {
    display: grid;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(37, 99, 235, 0.2);
}

.day {
    color: #e2e8f0;
    font-weight: 500;
}

.time {
    color: #94a3b8;
}

/* Service Modal Styles */
.service-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.service-modal-content {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.95));
    margin: 2% auto;
    padding: 40px;
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 25px;
    width: 90%;
    max-width: 800px;
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 60px rgba(37, 99, 235, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.close-service {
    color: #94a3b8;
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 25px;
    top: 20px;
    transition: color 0.3s ease;
}

.close-service:hover {
    color: #60a5fa;
}

.service-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(37, 99, 235, 0.2);
}

.service-modal-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.service-modal-content h2 {
    color: #60a5fa;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-modal-description {
    color: #e2e8f0;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.modal-section {
    margin: 30px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.modal-section h3 {
    color: #60a5fa;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
}

.feature-list, .process-list, .benefits-list {
    list-style: none;
    padding: 0;
}

.feature-list li, .process-list li, .benefits-list li {
    color: #e2e8f0;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.feature-list li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.process-list li:before {
    content: "→";
    color: #60a5fa;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.benefits-list li:before {
    content: "★";
    color: #f59e0b;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    background: rgba(37, 99, 235, 0.2);
    color: #93c5fd;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    border: 1px solid rgba(37, 99, 235, 0.3);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.module-item {
    background: rgba(37, 99, 235, 0.1);
    color: #93c5fd;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(37, 99, 235, 0.3);
    font-weight: 500;
}

.pricing-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    background: rgba(37, 99, 235, 0.1) !important;
}

.pricing-info, .timeline-info {
    text-align: center;
}

.pricing-info h4, .timeline-info h4 {
    color: #60a5fa;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.pricing-info p, .timeline-info p {
    color: #e2e8f0;
    font-size: 1.1rem;
    font-weight: 500;
}

.demo-section {
    text-align: center;
    background: rgba(16, 185, 129, 0.1) !important;
    border-color: rgba(16, 185, 129, 0.3) !important;
}

.demo-button {
    display: inline-block;
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.demo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.modal-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.modal-cta {
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.modal-cta.primary {
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.modal-cta.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(37, 99, 235, 0.5);
}

.modal-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

/* Animations */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fade-in-up 0.8s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.3rem;
    }
    
    .services-title {
        font-size: 2.2rem;
    }
    
    body {
        padding: 20px 10px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        font-size: 3rem;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .about-text {
        font-size: 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-modal-content {
        margin: 5% auto;
        width: 95%;
        padding: 25px 20px;
    }
    
    .service-modal-content h2 {
        font-size: 2rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-cta {
        width: 100%;
    }
    
    .pricing-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}