/* Font Definitions */
@font-face {
    font-family: "Museo Sans 500 Medium", serif;
    src: url("../fonts/museo-sans/MuseoSans_500.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Museo Sans 700 Bold", serif;
    src: url("../fonts/museo-sans/MuseoSans_700.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

p {
    font-weight: 400;
}

body {
    font-family: 'Museo Sans 500 Medium', serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 13px;
}

/* Professional Layout */
.minimal-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Header Styles */
.minimal-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(3px);
}

    .minimal-header.scrolled {
        background: rgb(13 13 13 / 50%);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    .minimal-header .minimal-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
        transition: padding 0.3s ease;
    }

    .minimal-header.scrolled .minimal-container {
        padding: 0.75rem 0;
    }

.minimal-logo img {
    height: 70px;
    transition: all 0.3s ease;
}

.minimal-header.scrolled .minimal-logo img {
    height: 55px;
}

.minimal-menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    background: #3b731600;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 1rem;
}

    .minimal-menu-toggle:hover {
        background: rgba(0, 0, 0, 0.05);
        transform: scale(1.1);
    }


.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(../images/bg/2.webp);
    background-size: 120% 120%;
    background-position: right center;
    background-attachment: fixed;
    z-index: 1;
    transition: transform 0.1s ease;
}



.minimal-btn {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
    border: 1px solid #b6ff7f;
    padding: 2rem;
    font-size: 12px;
}

    .minimal-btn::before {
        background-image: linear-gradient(140.65deg, #97ea24 8.63%, #eaff57 48.92%, #76ff00 92.57%);
        border-radius: 50%;
        clip-path: circle(50% at 50% 50%) padding-box;
        content: "";
        inset: 0;
        -webkit-mask: radial-gradient(transparent 66%, #000 67%, #000 100%);
        mask: radial-gradient(transparent 66%, #000 67%, #000 100%);
        position: absolute;
        transition: opacity .6s ease, opacity .6s ease .6s;
    }

    .minimal-btn:hover::before {
        left: 100%;
    }

    .minimal-btn:hover {
        background: #333;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        color: #fff;
    }

/* Sections - More sophisticated spacing */
.minimal-section {
    padding: 120px 0;
    position: relative;
    background: #ffffff;
}

    .minimal-section:nth-child(even) {
        background: #fafafa;
    }

    .minimal-section h2 {
        font-size: 3.5rem;
        margin-bottom: 3rem;
        color: #1a1a1a;
        font-weight: 600;
        line-height: 1.2;
        letter-spacing: -0.01em;
        overflow: hidden;
    }

        .minimal-section h2 span,
        .we-deliver-text h2 span,
        .blog-header h2 span,
        .contact-left h2 span,
        .about-left h2 span {
            display: inline-block;
            transform: translateX(-100%);
            opacity: 0;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .minimal-section h2.animate span,
        .we-deliver-text h2.animate span,
        .blog-header h2.animate span,
        .contact-left h2.animate span,
        .about-left h2.animate span {
            transform: translateX(0);
            opacity: 1;
        }

            .minimal-section h2.animate span:nth-child(1),
            .we-deliver-text h2.animate span:nth-child(1),
            .blog-header h2.animate span:nth-child(1),
            .contact-left h2.animate span:nth-child(1),
            .about-left h2.animate span:nth-child(1) {
                transition-delay: 0.1s;
            }

            .minimal-section h2.animate span:nth-child(2),
            .we-deliver-text h2.animate span:nth-child(2),
            .blog-header h2.animate span:nth-child(2),
            .contact-left h2.animate span:nth-child(2) {
                transition-delay: 0.2s;
            }

            .minimal-section h2.animate span:nth-child(3),
            .we-deliver-text h2.animate span:nth-child(3),
            .blog-header h2.animate span:nth-child(3),
            .contact-left h2.animate span:nth-child(3) {
                transition-delay: 0.3s;
            }

            .minimal-section h2.animate span:nth-child(4),
            .we-deliver-text h2.animate span:nth-child(4),
            .blog-header h2.animate span:nth-child(4),
            .contact-left h2.animate span:nth-child(4) {
                transition-delay: 0.4s;
            }

            .minimal-section h2.animate span:nth-child(5),
            .we-deliver-text h2.animate span:nth-child(5),
            .blog-header h2.animate span:nth-child(5),
            .contact-left h2.animate span:nth-child(5) {
                transition-delay: 0.5s;
            }

            .minimal-section h2.animate span:nth-child(6),
            .we-deliver-text h2.animate span:nth-child(6),
            .blog-header h2.animate span:nth-child(6),
            .contact-left h2.animate span:nth-child(6) {
                transition-delay: 0.6s;
            }

            .minimal-section h2.animate span:nth-child(7),
            .we-deliver-text h2.animate span:nth-child(7),
            .blog-header h2.animate span:nth-child(7),
            .contact-left h2.animate span:nth-child(7) {
                transition-delay: 0.7s;
            }

            .minimal-section h2.animate span:nth-child(8),
            .we-deliver-text h2.animate span:nth-child(8),
            .blog-header h2.animate span:nth-child(8),
            .contact-left h2.animate span:nth-child(8) {
                transition-delay: 0.8s;
            }

            .minimal-section h2.animate span:nth-child(9),
            .we-deliver-text h2.animate span:nth-child(9),
            .blog-header h2.animate span:nth-child(9),
            .contact-left h2.animate span:nth-child(9) {
                transition-delay: 0.9s;
            }

            .minimal-section h2.animate span:nth-child(10),
            .we-deliver-text h2.animate span:nth-child(10),
            .blog-header h2.animate span:nth-child(10),
            .contact-left h2.animate span:nth-child(10) {
                transition-delay: 1.0s;
            }

            .minimal-section h2.animate span:nth-child(11),
            .we-deliver-text h2.animate span:nth-child(11),
            .blog-header h2.animate span:nth-child(11),
            .contact-left h2.animate span:nth-child(11) {
                transition-delay: 1.1s;
            }

            .minimal-section h2.animate span:nth-child(12),
            .we-deliver-text h2.animate span:nth-child(12),
            .blog-header h2.animate span:nth-child(12),
            .contact-left h2.animate span:nth-child(12) {
                transition-delay: 1.2s;
            }

            .minimal-section h2.animate span:nth-child(13),
            .we-deliver-text h2.animate span:nth-child(13),
            .blog-header h2.animate span:nth-child(13),
            .contact-left h2.animate span:nth-child(13) {
                transition-delay: 1.3s;
            }

            .minimal-section h2.animate span:nth-child(14),
            .we-deliver-text h2.animate span:nth-child(14),
            .blog-header h2.animate span:nth-child(14),
            .contact-left h2.animate span:nth-child(14) {
                transition-delay: 1.4s;
            }

            .minimal-section h2.animate span:nth-child(15),
            .we-deliver-text h2.animate span:nth-child(15),
            .blog-header h2.animate span:nth-child(15),
            .contact-left h2.animate span:nth-child(15) {
                transition-delay: 1.5s;
            }

            .minimal-section h2.animate span:nth-child(16),
            .we-deliver-text h2.animate span:nth-child(16),
            .blog-header h2.animate span:nth-child(16),
            .contact-left h2.animate span:nth-child(16) {
                transition-delay: 1.6s;
            }

            .minimal-section h2.animate span:nth-child(17),
            .we-deliver-text h2.animate span:nth-child(17),
            .blog-header h2.animate span:nth-child(17),
            .contact-left h2.animate span:nth-child(17) {
                transition-delay: 1.7s;
            }

            .minimal-section h2.animate span:nth-child(18),
            .we-deliver-text h2.animate span:nth-child(18),
            .blog-header h2.animate span:nth-child(18),
            .contact-left h2.animate span:nth-child(18) {
                transition-delay: 1.8s;
            }

            .minimal-section h2.animate span:nth-child(19),
            .we-deliver-text h2.animate span:nth-child(19),
            .blog-header h2.animate span:nth-child(19),
            .contact-left h2.animate span:nth-child(19) {
                transition-delay: 1.9s;
            }

            .minimal-section h2.animate span:nth-child(20),
            .we-deliver-text h2.animate span:nth-child(20),
            .blog-header h2.animate span:nth-child(20),
            .contact-left h2.animate span:nth-child(20) {
                transition-delay: 2.0s;
            }

            .minimal-section h2.animate span:nth-child(21),
            .we-deliver-text h2.animate span:nth-child(21),
            .blog-header h2.animate span:nth-child(21),
            .contact-left h2.animate span:nth-child(21) {
                transition-delay: 2.1s;
            }

            .minimal-section h2.animate span:nth-child(22),
            .we-deliver-text h2.animate span:nth-child(22),
            .blog-header h2.animate span:nth-child(22),
            .contact-left h2.animate span:nth-child(22) {
                transition-delay: 2.2s;
            }

            .minimal-section h2.animate span:nth-child(23),
            .we-deliver-text h2.animate span:nth-child(23),
            .blog-header h2.animate span:nth-child(23),
            .contact-left h2.animate span:nth-child(23) {
                transition-delay: 2.3s;
            }

    .minimal-section p {
        font-size: 1.2rem;
        color: #666;
        margin-bottom: 3rem;
        max-width: 800px;
        line-height: 1.8;
    }

/* Grid Layout - More sophisticated */
.minimal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.minimal-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

    .minimal-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #1a1a1a, #666);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .minimal-card:hover::before {
        transform: scaleX(1);
    }

    .minimal-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    }

    .minimal-card h3 {
        font-family: 'Museo Sans 500 Medium', serif;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        color: #1a1a1a;
        font-weight: 600;
    }

    .minimal-card p {
        color: #666;
        line-height: 1.7;
        font-size: 1rem;
        margin-bottom: 0;
    }

/* Footer - More sophisticated */
.minimal-footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 0 40px;
    position: relative;
}

    .minimal-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    }

.minimal-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.minimal-footer h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
}

.minimal-footer ul {
    list-style: none;
}

    .minimal-footer ul li {
        margin-bottom: 0.8rem;
    }

        .minimal-footer ul li a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

            .minimal-footer ul li a:hover {
                color: white;
                padding-left: 5px;
            }

.minimal-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.9rem;
}

/* Back to Top Button - More sophisticated */
.minimal-back-to-top {
    position: fixed;
    bottom: 40px;
    right: 2.4rem;
    width: 60px;
    height: 60px;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 50%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

    .minimal-back-to-top:hover {
        background: #333;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    }

    .minimal-back-to-top.visible {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

/* AI Assistant Button */
.ai-assistant-btn {
    position: fixed;
    bottom: 40px;
    left: 2.4rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    animation: aiPulse 3s infinite;
    z-index: 1000;
}

    .ai-assistant-btn:hover {
        background: linear-gradient(135deg, #45a049, #4CAF50);
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 30px rgba(76, 175, 80, 0.4);
    }

@keyframes aiPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
    }

    50% {
        box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3), 0 0 0 10px rgba(76, 175, 80, 0.1);
    }
}

/* Responsive AI button */
@media (max-width: 1024px) {
    .hero-background {
        background-size: cover;
        background-position: left;
    }
    .minimal-section p {
        margin-bottom: 1rem;
    }
    .minimal-grid{
        margin-top: 1rem;
        gap: 0.5rem;
    }
    .minimal-section{
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .minimal-logo img {
        width: 250px;
        object-fit: contain;
    }

    .ai-assistant-btn {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .minimal-back-to-top {
        bottom: 30px;
        right: 1rem;
    }

    .minimal-container {
        padding: 0 30px;
    }
}
