   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        .header {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            padding: 1rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: #e67e22;
            margin-left: 0.5rem;
        }

        .nav-menu {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-link {
            color: rgba(255,255,255,0.9);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #e67e22;
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link:hover {
            color: white;
        }

        .cta-button {
            background: #e67e22;
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-left: 2rem;
        }

        .cta-button:hover {
            background: #d35400;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(230,126,34,0.3);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #2c3e50;
                flex-direction: column;
                padding: 1rem;
                text-align: center;
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-link {
                padding: 1rem 0;
            }

            .mobile-menu-btn {
                display: block;
            }

            .cta-button {
                margin-left: 0;
                margin-top: 1rem;
            }
        }

	
	body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

header {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 15px;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
    font-size: 16px;
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

	
	
        /* Add to existing CSS */
        .product-card {
            position: relative;
            overflow: visible !important;
        }

        .product-image {
            position: relative;
            overflow: visible;
            cursor: pointer;
        }

        .product-popup {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 400px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 100;
            padding: 1.5rem;
        }

        .product-image:hover .product-popup {
            opacity: 1;
            visibility: visible;
        }

        .popup-content {
            display: flex;
            gap: 1.5rem;
        }

        .popup-image {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
        }

        .popup-image img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .popup-details {
            flex: 1;
        }

        .popup-close {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #f1f5f9;
            border: none;
            padding: 5px 10px;
            border-radius: 50%;
            cursor: pointer;
        }
		
		 /* Reset Default Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        /* Header Section */
        .header {
            background: linear-gradient(135deg, #2c3e50, #1e293b);
            color: white;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .header-logo {
            font-size: 24px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }

        .header-logo img {
            height: 50px;
            margin-right: 10px;
        }

        .header-tagline {
            font-size: 14px;
            font-weight: 300;
            margin-left: 10px;
            opacity: 0.8;
        }

        /* Navigation Bar */
        .nav {
            display: flex;
            gap: 20px;
        }

        .nav a {
            text-decoration: none;
            color: white;
            font-size: 16px;
            font-weight: 500;
            padding: 10px 15px;
            border-radius: 5px;
            transition: 0.3s ease;
        }

        .nav a:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        /* Mobile Menu */
        .menu-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                right: 20px;
                background: rgba(0, 0, 0, 0.9);
                width: 200px;
                border-radius: 8px;
                padding: 10px;
            }

            .nav a {
                display: block;
                padding: 10px;
                color: white;
                text-align: center;
            }

            .menu-toggle {
                display: block;
            }
        }
		
		body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

footer {
    background: #121212;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    flex-wrap: wrap;
}

.footer-left, .footer-center, .footer-right {
    flex: 1;
    padding: 10px;
}

.footer-left img {
    width: 180px;
}

.footer-left p, .footer-center ul li, .footer-right ul li {
    color: #b0b0b0;
    font-size: 14px;
}

.footer-center ul {
    list-style: none;
    padding: 0;
}

.footer-center ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease-in-out;
}

.footer-center ul li a:hover {
    color: #e74c3c;
}

.footer-right .social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer-right .social-icons a {
    color: white;
    font-size: 20px;
    transition: color 0.3s;
}

.footer-right .social-icons a:hover {
    color: #e74c3c;
}

.footer-right iframe {
    width: 250px;
    height: 200px;
    border: none;
    margin-top: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #b0b0b0;
}

 /* About Page Styles */
    .about-hero {
        background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                    url('about-bg.jpg') center/cover;
        height: 60vh;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
        padding: 0 20px;
    }

    .content-section {
        max-width: 1200px;
        margin: 4rem auto;
        padding: 0 20px;
    }

    .history-timeline {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin: 3rem 0;
    }

    .timeline-card {
        background: white;
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        position: relative;
        transition: transform 0.3s ease;
    }

    .timeline-card:hover {
        transform: translateY(-5px);
    }

    .timeline-card::before {
        content: '';
        position: absolute;
        left: -15px;
        top: 20%;
        width: 30px;
        height: 30px;
        background: #e67e22;
        border-radius: 50%;
    }

    .core-values {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin: 3rem 0;
    }

    .value-card {
        text-align: center;
        padding: 2rem;
        background: #f8f9fa;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .value-card:hover {
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .value-icon {
        font-size: 2.5rem;
        color: #e67e22;
        margin-bottom: 1rem;
    }

    .team-section {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin: 3rem 0;
    }

    .team-member {
        text-align: center;
        overflow: hidden;
        border-radius: 10px;
        position: relative;
    }

    .team-member img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .team-member:hover img {
        transform: scale(1.05);
    }

    .member-info {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0,0,0,0.7);
        color: white;
        padding: 1rem;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .team-member:hover .member-info {
        transform: translateY(0);
    }