.slider-container {
    position: relative;
    overflow: hidden;
}

.slide {
    display: none;
    animation: fadeIn 0.5s;
}

.slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.geometric-shape {
    position: absolute;
    opacity: 0.03;
}

.circle-shape {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
}

.triangle-shape {
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 260px solid #0ea5e9;
}

.square-shape {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    transform: rotate(45deg);
}

.parallax-section {
    background-image: url('https://images.unsplash.com/photo-1565043589221-1a6fd9ae45c7?w=1920&h=800&fit=crop');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.product-card {
    position: relative;
    width: 360px;
    height: 420px;
}

.product-image-box {
    position: absolute;
    width: 360px;
    height: 360px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
}

.product-card:hover .product-image-box {
    transform: translateY(-10px);
}

.product-info-box {
    position: absolute;
    bottom: 40px;
    right: 0;
    width: 240px;
    background: white;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-info-box {
    opacity: 1;
    transform: translateY(-10px);
}

.cta-section {
    background-image: url('https://images.unsplash.com/photo-1621905251918-48416bd8575a?w=1920&h=600&fit=crop');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer-bokeh {
    position: relative;
    background-image: url('./images/bg.jpg');
    background-size: cover;
    background-position: center;
}

.footer-bokeh::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.92);
}

.header-cutout {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 5% 100%);
    height: 50%;
}

.cta-cutout {
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    height: 50%;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.marquee {
    animation: marquee 20s linear infinite;
    font-family: 'Montserrat', 'Arial', 'Helvetica', sans-serif;
    letter-spacing: 0.15em;
    font-weight: 800;
}

.marquee span {
    text-transform: uppercase;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Sticky Header Styles */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Hero slider adjustments */
    .slider-container {
        height: 300px;
    }
    
    /* Improve image display on mobile */
    .slide img {
        object-fit: contain;
        object-position: center;
    }
    
    /* About section adjustments */
    .grid.md\:grid-cols-2.gap-12 {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* Quality & Services adjustments */
    .grid.md\:grid-cols-3.gap-8 {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .quality-service-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Products section adjustments */
    .flex.justify-center.gap-8.items-center {
        flex-direction: column;
        gap: 32px;
    }
    
    .product-card {
        width: 280px;
        height: 340px;
    }
    
    .product-image-box {
        width: 240px;
        height: 280px;
    }
    
    .product-info-box {
        width: 200px;
        padding: 16px;
    }
    
    /* CTA section adjustments */
    .flex.flex-col.md\:flex-row.items-center.justify-between.gap-8.md\:h-56 {
        flex-direction: column;
        height: auto;
        padding: 32px 0;
        gap: 24px;
    }
    
    .cta-text {
        margin-bottom: 0;
        text-align: center;
        width: 100%;
        padding: 0 16px;
    }
    
    .contact-card {
        position: relative;
        width: 100%;
        max-width: 350px;
        padding: 24px;
        margin: 24px auto 0;
        text-align: center;
        clip-path: none;
        right: auto !important;
        bottom: auto !important;
    }
    
    .contact-icon {
        margin: 0 auto 16px;
    }
    
    .contact-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    /* Contact section adjustments */
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .map-container {
        min-height: 300px;
        height: 300px;
    }
    
    /* Marquee adjustments */
    .marquee span {
        font-size: 2rem;
        padding: 0 32px;
        letter-spacing: 0.1em;
    }
    
    /* Footer adjustments */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        padding: 24px 16px;
        text-align: center;
    }
    
    /* Mobile menu adjustments */
    #mobile-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        z-index: 50;
    }
    
    #mobile-menu a,
    #mobile-menu button {
        display: block;
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
        padding: 0.75rem;
    }
    
    #mobile-menu.flex {
        display: flex;
    }
    
    #mobile-menu.hidden {
        display: none;
    }
}

/* Desktop styles */
@media (min-width: 769px) {
    .md\:block {
        display: block;
    }
    
    .md\:flex {
        display: flex;
    }
    
    .sticky-header {
        top: -120px;
        transition: top 0.3s ease;
    }
    
    .sticky-header.show {
        top: 0;
    }
}

@media (max-width: 480px) {
    /* Further adjustments for small screens */
    .mobile-hidden {
        display: none;
    }
    
    .product-card {
        width: 240px;
        height: 300px;
    }
    
    .product-image-box {
        width: 200px;
        height: 240px;
    }
    
    .product-info-box {
        width: 180px;
        padding: 12px;
    }
    
    .marquee span {
        font-size: 1.5rem;
        letter-spacing: 0.08em;
    }
    
    /* Adjust mobile menu for smaller screens */
    #mobile-menu {
        padding: 0.5rem;
    }
    
    #mobile-menu a,
    #mobile-menu button {
        padding: 0.5rem;
        font-size: 0.875rem;
    }
    
    /* CTA section adjustments for small screens */
    .contact-card {
        max-width: 280px;
        padding: 16px;
    }
    
    .contact-content p.text-lg {
        font-size: 0.875rem;
    }
    
    .contact-content p.text-2xl {
        font-size: 1.25rem;
    }
    
    /* Hero slider adjustments for small screens */
    .slider-container {
        height: 200px;
        margin-top: 70px;
    }
    
    /* Improve image display on small screens */
    .slide img {
        object-fit: contain;
        object-position: center;
    }
}





