:root {
    --primary-color: #6c5ce7;
    --secondary-color: #a8a4e6;
    --light-bg: #ffffff;
    --dark-bg: #1a1a1a;
    --light-text: #ffffff;
    --dark-text: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}

body {
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s, color 0.3s;
}

body.dark-mode {
    background-color: var(--dark-bg);
    color: var(--light-text);
}

body.light-mode {
    background-color: var(--light-bg);
    color: var(--dark-text);
}


nav {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--light-text);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.theme-toggle {
    cursor: pointer;
    color: var(--light-text);
}

.info-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: white;
}

.info-header {
    text-align: center;
    margin-bottom: 4rem;
}

.info-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    margin-top: 3rem;
    background: linear-gradient(45deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.info-header p {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    opacity: 0.9;
    font-weight: 600;
}

.section-divider {
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #5a5a5a, transparent);
    margin: 1rem auto;
    margin-top: 2.5rem;
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

.process-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.process-card:hover {
    transform: translateY(-10px);
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(45deg, #ff3366, #ff6b6b);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.process-card i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(20deg, #a390b4, #3c2057);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.process-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.info-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-box {
    flex: 1;
    min-width: 300px;
}

.info-box h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box ul li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 1.1rem;
    gap: 0.5rem;
}

.info-box ul li nav {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 1.1rem;
    gap: 0.5rem;
}

.info-box ul li:before {
    content: "•";
    color: #703881;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(20deg, #a390b4, #3c2057);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    background-image: url('https://source.unsplash.com/random/1920x1080?dark,portrait');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.hero h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    margin: 2rem auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    opacity: 0.9;
    font-weight: 600;
}

.cta-button {
    padding: .8rem 1.8rem;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

.cta-button.primary {
    background: linear-gradient(45deg, #ff3366, #ff6b6b);
    color: white;
    border: none;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cta-button.primary:hover {
    background: linear-gradient(45deg, #ff6b6b, #ff3366);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: rgba(108, 92, 231, 0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}


.preview-gallery {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.preview-gallery h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--light-text);
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}


.pricing {
    padding: 4rem 2rem;
    background: rgba(108, 92, 231, 0.05);
}

.pricing-title {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--primary-color);
    color: var(--light-text);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem 0;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.pricing-card ul li {
    margin: 0.5rem 0;
    font-weight: 600;
}

.pricing-card ul li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 900;
}

.pricing-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: var(--light-text);
    border-radius: 25px;
    text-decoration: none;
    transition: transform 0.3s;
}

.pricing-button:hover {
    transform: scale(1.05);
}


.process {
    padding: 4rem 2rem;
}

.process h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 900;
    font-size: 2.3rem;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.process-info {
    text-align: center;
    position: relative;
}

.process-info h3 {
    font-size: 1.5rem;
    font-weight: 900;
}

.process-info p {
    font-size: 1rem;
    font-weight: 600;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--light-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.process-step i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}


.equipment {
    padding: 4rem 2rem;
    background: rgba(108, 92, 231, 0.05);
}

.equipment h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.equipment-category {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.equipment-category i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.equipment-category ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.equipment-category ul li {
    margin: 0.5rem 0;
}


.faq {
    padding: 4rem 2rem;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}


.blog-preview {
    padding: 4rem 2rem;
    background: rgba(108, 92, 231, 0.05);
}

.blog-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.blog-content {
    padding: 1.5rem;
}

.blog-card h3 {
    margin-bottom: 0.5rem;
}

.date {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    margin-top: 1rem;
    transition: transform 0.3s;
}

.read-more:hover {
    transform: translateX(10px);
}


@media (max-width: 1024px) {
    .pricing-grid,
    .process-timeline,
    .equipment-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid,
    .process-timeline,
    .equipment-grid,
    .blog-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
        margin: 0.5rem 0;
    }

    .info-footer {
        flex-direction: column;
        text-align: center;
    }
    
    .info-box ul li {
        justify-content: center;
    }
    
    .contact-button {
        width: 100%;
        justify-content: center;
    }
}


footer {
    background: rgba(0, 0, 0, 0.9);
    color: var(--light-text);
    padding: 3rem 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--light-text);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}


.testimonials {
    padding: 4rem 2rem;
    background: rgba(108, 92, 231, 0.05);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: .3rem;
    font-size: 2rem;
}
.testimonials p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: .8rem;
    color: #888;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.author {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.rating {
    color: #ffd700;
}


.statistics {
    padding: 4rem 2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
}

.stat-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}


.services {
    padding: 4rem 2rem;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    margin-top: 1rem;
    padding: 0;
}

.service-card ul li {
    margin: 0.5rem 0;
}


.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://source.unsplash.com/random/1920x1080?camera');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--light-text);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.primary-button, .secondary-button {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s;
}

.primary-button {
    background: var(--primary-color);
    color: var(--light-text);
}

.secondary-button {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--light-text);
}

.primary-button:hover, .secondary-button:hover {
    transform: scale(1.05);
}


@media (max-width: 968px) {
    .testimonial-grid,
    .stat-container,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonial-grid,
    .stat-container,
    .services-grid {
        grid-template-columns: 1fr;
    }
}