@font-face {
    font-family: 'Stolzl';
    src: url('public/fonts/stolzl-100.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Stolzl';
    src: url('public/fonts/stolzl-300.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Stolzl';
    src: url('public/fonts/stolzl-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Stolzl';
    src: url('public/fonts/stolzl-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Stolzl';
    src: url('public/fonts/stolzl-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Stolzl';
    src: url('public/fonts/stolzl-book.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Stolzl', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #FAF9F9;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #6C6C6C;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #4A2073;
}

.nav-links a.active {
    color: #4A2073;
    font-weight: 500;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #4A2073;
    border-radius: 1px;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #4A2073;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    margin-top: 60px;
    padding: 60px 0;
    background: #FAF9F9;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 600px;
    object-fit: contain;
}

.service-tags {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.tag {
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.tag-teal {
    background: rgba(52, 152, 219, 0.9);
}

.tag-purple {
    background: rgba(155, 89, 182, 0.9);
}

.hero-right {
    text-align: left;
    color: #4A2073;
}

.hero-brand {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 500;
    color: #4A2073;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-tagline {
    font-family: 'Stolzl', 'Arial', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #4A2073;
    margin: 0 0 30px 0;
    line-height: 1.3;
    max-width: 400px;
}

.hero-lines {
    display: flex;
    flex-direction: row;
    gap: 8px;
    max-width: 400px;
    align-items: center;
}

.line {
    height: 4px;
    
}

.line-1 {
    width: 60px;
    background: #6EB3AF;
    border-radius: 10px;
}

.line-2 {
    width: 80px;
    background: #4A2073;
    border-radius: 10px;
}

.line-3 {
    width: 60px;
    background: #6EB3AF;
    border-radius: 10px;
}

.line-4 {
    width: 80px;
    background: #4A2073;
    border-radius: 10px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #0A867F 0%, #750C9C 30%, #9714C8 68%, #9714C8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
}

.highlight-blue {
    background: inherit;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-purple {
    background: inherit;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.about-illustration {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Who We Are Section */
.who-we-are {
    padding: 100px 0;
    background: #6EB3AF2E;
}

.who-content {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 60px;
    align-items: center;
}

.who-illustration {
    width: 100%;
    height: 350px;
    object-fit: fill;
}

.who-text h2 {
    font-size: 2.5rem;
    font-weight: 450;
    margin-bottom: 30px;
    color: #6f42c1;
}

.who-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

/* Our Products Section */
.our-products {
    padding: 100px 0;
    background: #fff;
}

.product-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-text h2 {
    font-size: 2.5rem;
    font-weight: 450;
    margin-bottom: 30px;
    color: #4A2073;
}

.product-highlight {
    background: linear-gradient(135deg, #0A867F11 0%, #750C9C11 30%, #9714C811 68%, #9714C811 100%);
    border-left: 4px solid #6f42c1;
    padding: 30px;
    border-radius: 12px;
    margin-top: 20px;
}

.product-highlight h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0A867F 0%, #750C9C 30%, #9714C8 68%, #9714C8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-highlight p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.product-illustration {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 12px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 450;
    margin-bottom: 60px;
    color: #4A2073;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    margin-bottom: 30px;
}

.service-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin: 0 auto;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #4A2073;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Values Section */
.values {
    padding: 100px 0;
    background: #6EB3AF2E;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 60px;
}


.value-img {
    width: 100%;
    height: 391px;
    object-fit: cover;
}

.value-card h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin: 30px 30px 20px 0px;
    color: #18172A;
}

.value-card p {
    padding: 0px 30px 20px 0px;
    color: #18172A;
    line-height: 1.7;
    font-size: 1rem;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: #fff;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    font-weight: 500;
    color: #2c3e50;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-toggle {
    font-size: 1.2rem;
    color: #6f42c1;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
}

.faq-answer p {
    padding: 20px 30px;
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.faq-item.active .faq-question {
    background: #e9ecef;
}

/* Footer */
.footer {
    background: url('public/images/footer.png') center center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr;
    gap: 40px;
    align-items: start;
}

.footer-logo .logo-text {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}


.footer-nav-section h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: #A3FFFA;
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 1;
}

.contact-info p {
    margin-bottom: 8px;
    opacity: 0.9;
    font-size: 0.95rem;
}

.contact-link {
    color: #A3FFFA;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #FFD700;
    text-decoration: underline;
}



/* Mobile Header Responsive Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: #FAF9F9;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 20px 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 10px 20px;
        display: block;
        width: 200px;
        text-align: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0 20px 0;
        min-height: 60vh;
        margin-top: 70px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 0 15px;
    }
    
    .hero-left {
        order: 2;
    }
    
    .hero-right {
        order: 1;
        text-align: center;
    }
    
    .hero-image {
        height: 300px;
        width: 100%;
        object-fit: contain;
    }
    
    .hero-brand {
        font-size: 2.5rem;
        -webkit-text-stroke: 1.5px #4A2073;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
        margin-bottom: 20px;
        max-width: 100%;
        line-height: 1.4;
    }
    
    .hero-lines {
        justify-content: center;
        max-width: 100%;
    }
    
    .about-content,
    .who-content,
    .product-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .service-tags {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }
    
    .about-text h2,
    .who-text h2,
    .product-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 20px 0 15px 0;
        min-height: 50vh;
        margin-top: 60px;
    }
    
    .hero-content {
        gap: 20px;
        padding: 0 10px;
    }
    
    .hero-image {
        height: 250px;
    }
    
    .hero-brand {
        font-size: 1.8rem;
        -webkit-text-stroke: 1px #4A2073;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }
    
    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .hero-lines {
        gap: 6px;
    }
    
    .line {
        height: 3px;
    }
    
    .about-text h2,
    .who-text h2,
    .product-text h2 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .qr-code {
        flex-direction: column;
        text-align: center;
    }
}