/* MAHAMAYA SOFTWARES LLP - Modern Tech Design */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066ff;
    --primary-dark: #0052cc;
    --secondary-color: #00d4ff;
    --accent-color: #ff6b35;
    --text-primary: #0a0a0a;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #0f172a;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #f59e0b 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

.mahamaya-softwares-llp-container {
    max-width: 100%;
    margin: 0 auto;
    background: var(--bg-primary);
    min-height: 100vh;
    position: relative;
}

/* Navigation */
.mahamaya-softwares-llp-navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.mahamaya-softwares-llp-nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.company-logo {
    display: flex;
    align-items: center;

    img {
        width: 30px;
        margin-right: 10px;
    }

    span {
        font-style: 24px;
        font-weight: 600;
    }
}

.mahamaya-softwares-llp-nav-menu {
    display: flex;
    gap: 48px;
    align-items: center;
}

.mahamaya-softwares-llp-nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s ease;
    position: relative;
    padding: 8px 0;
}

.mahamaya-softwares-llp-nav-link:hover {
    color: var(--primary-color);
}

.mahamaya-softwares-llp-nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.mahamaya-softwares-llp-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.mahamaya-softwares-llp-mobile-menu-toggle {
    display: none;
}

.mahamaya-softwares-llp-menu-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.mahamaya-softwares-llp-menu-icon:hover {
    transform: scale(1.05);
}

/* Main Content */
.mahamaya-softwares-llp-main {
    margin-top: 72px;
}

/* Hero Section */
.mahamaya-softwares-llp-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.mahamaya-softwares-llp-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.mahamaya-softwares-llp-hero-pattern {
    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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.mahamaya-softwares-llp-hero-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.mahamaya-softwares-llp-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mahamaya-softwares-llp-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.mahamaya-softwares-llp-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 500px;
}

.mahamaya-softwares-llp-hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.mahamaya-softwares-llp-btn {
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.mahamaya-softwares-llp-btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.mahamaya-softwares-llp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.mahamaya-softwares-llp-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.mahamaya-softwares-llp-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.mahamaya-softwares-llp-hero-stats {
    display: flex;
    gap: 48px;
}

.mahamaya-softwares-llp-hero-stat {
    text-align: left;
}

.mahamaya-softwares-llp-hero-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.mahamaya-softwares-llp-hero-stat-label {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 500;
}

.mahamaya-softwares-llp-hero-visual {
    position: relative;
}

.mahamaya-softwares-llp-hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-xl);
}

.mahamaya-softwares-llp-hero-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.mahamaya-softwares-llp-hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.mahamaya-softwares-llp-floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.mahamaya-softwares-llp-floating-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: -40px;
    animation: float 6s ease-in-out infinite;
}

.mahamaya-softwares-llp-floating-2 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: -30px;
    animation: float 8s ease-in-out infinite reverse;
}

.mahamaya-softwares-llp-floating-3 {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 20px;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Services Preview */
.mahamaya-softwares-llp-services-preview {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.mahamaya-softwares-llp-container-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.mahamaya-softwares-llp-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.mahamaya-softwares-llp-section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.mahamaya-softwares-llp-section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.mahamaya-softwares-llp-section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.mahamaya-softwares-llp-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.mahamaya-softwares-llp-service-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mahamaya-softwares-llp-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.mahamaya-softwares-llp-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.mahamaya-softwares-llp-service-icon-container {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.mahamaya-softwares-llp-service-icon {
    width: 48px;
    height: 48px;
    filter: brightness(0) invert(1);
}

.mahamaya-softwares-llp-service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.mahamaya-softwares-llp-service-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.mahamaya-softwares-llp-service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mahamaya-softwares-llp-service-feature {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* About Preview */
.mahamaya-softwares-llp-about-preview {
    padding: 120px 0;
    background: white;
}

.mahamaya-softwares-llp-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mahamaya-softwares-llp-about-desc {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.mahamaya-softwares-llp-about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mahamaya-softwares-llp-about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.mahamaya-softwares-llp-about-feature-icon {
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.mahamaya-softwares-llp-about-feature-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.mahamaya-softwares-llp-about-feature-text p {
    color: var(--text-secondary);
    font-size: 14px;
}

.mahamaya-softwares-llp-about-card {
    background: var(--gradient-primary);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--shadow-xl);
}

.mahamaya-softwares-llp-about-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* CTA Section */
.mahamaya-softwares-llp-cta {
    padding: 120px 0;
    background: var(--gradient-dark);
    color: white;
    text-align: center;
}

.mahamaya-softwares-llp-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.mahamaya-softwares-llp-cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.mahamaya-softwares-llp-cta-desc {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.mahamaya-softwares-llp-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.mahamaya-softwares-llp-btn-large {
    padding: 20px 40px;
    font-size: 16px;
}

.mahamaya-softwares-llp-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.mahamaya-softwares-llp-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Footer */
.mahamaya-softwares-llp-footer {
    background: var(--bg-dark);
    color: white;
    padding: 80px 0 32px;
}

.mahamaya-softwares-llp-footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 48px;
}

.mahamaya-softwares-llp-footer-brand {
    max-width: 400px;
}

.mahamaya-softwares-llp-footer-desc {
    margin: 24px 0 32px;
    color: #94a3b8;
    line-height: 1.6;
}

.mahamaya-softwares-llp-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mahamaya-softwares-llp-footer-email {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
}

.mahamaya-softwares-llp-footer-address {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 14px;
}

.mahamaya-softwares-llp-footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.mahamaya-softwares-llp-footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.mahamaya-softwares-llp-footer-link {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s ease;
    font-size: 14px;
}

.mahamaya-softwares-llp-footer-link:hover {
    color: var(--secondary-color);
}

.mahamaya-softwares-llp-footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 32px;
    text-align: center;
}

.mahamaya-softwares-llp-copyright {
    color: #94a3b8;
    font-size: 14px;
}

/* Cookie Banner */
.mahamaya-softwares-llp-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    color: white;
    padding: 24px;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 1px solid #334155;
}

.mahamaya-softwares-llp-cookie-banner.show {
    transform: translateY(0);
}

.mahamaya-softwares-llp-cookie-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.mahamaya-softwares-llp-cookie-text {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #94a3b8;
}

.mahamaya-softwares-llp-cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mahamaya-softwares-llp-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .mahamaya-softwares-llp-hero-title {
        font-size: 3rem;
    }

    .mahamaya-softwares-llp-about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .mahamaya-softwares-llp-footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .mahamaya-softwares-llp-nav-menu {
        display: none;
    }

    .mahamaya-softwares-llp-mobile-menu-toggle {
        display: block;
    }

    .mahamaya-softwares-llp-hero {
        padding: 80px 0;
        min-height: auto;
    }

    .mahamaya-softwares-llp-hero-title {
        font-size: 2.5rem;
    }

    .mahamaya-softwares-llp-hero-stats {
        justify-content: center;
        gap: 32px;
    }

    .mahamaya-softwares-llp-section-title {
        font-size: 2.5rem;
    }

    .mahamaya-softwares-llp-cta-title {
        font-size: 2.5rem;
    }

    .mahamaya-softwares-llp-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .mahamaya-softwares-llp-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .mahamaya-softwares-llp-cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .mahamaya-softwares-llp-cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .mahamaya-softwares-llp-hero-title {
        font-size: 2rem;
    }

    .mahamaya-softwares-llp-section-title {
        font-size: 2rem;
    }

    .mahamaya-softwares-llp-cta-title {
        font-size: 2rem;
    }

    .mahamaya-softwares-llp-hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .mahamaya-softwares-llp-services-grid {
        grid-template-columns: 1fr;
    }

    .mahamaya-softwares-llp-footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}