  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            color: #333;
            line-height: 1.6;
            background-color: #f9f9f9;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Header Styles */
        header {
            /*background: linear-gradient(135deg, #0a4a3c 0%, #1a7d63 100%);*/
            background: rgba(240, 240, 240,0.5);
            backdrop-filter: blur(5px);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 1px 1px 15px black ;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo h1 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-left: 10px;
            color:#C62828 ;
        }

        .logo-icon {
            font-size: 2.5rem;
            color:#FBC02D ;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 2rem;
        }

        nav ul li a {
            color: black;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: #ffcc00;
        }

        /* Hero Section */
        .hero {
            background: url('https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover;
            height: 500px;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
        }

        .hero-content {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
        }

        .hero h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        .btn {
            display: inline-block;
            background: #ffcc00;
            color: #0a4a3c;
            padding: 0.8rem 1.8rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid #ffcc00;
        }

        .btn:hover {
            background: transparent;
            color: #ffcc00;
        }

        /* Products Section */
        .products {
            padding: 5rem 0;
            background: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            color: black;
            font-size: 2.5rem;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            transition-duration: 5s
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 5px 15px black;
            transition-duration: 10s
        }

        .product-img {
            height: 200px;
            background-color: #e0f2ef;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: black;
        }
        .product-img img{
            width:355px;
            height:200px;
            border-radius:5px;
        }
         .product-img-2 img{
            width:355px;
            height:200px;
            border-radius:5px;
        }
        .product-img-3 img{
            width:355px;
            height:200px;
            border-radius:5px;
        }

        .product-content {
            padding: 1.5rem;
        }

        .product-content h3 {
            color: black;
            margin-bottom: 0.5rem;
            font-size: 1.5rem;
        }

        .product-content p {
            color: #666;
            margin-bottom: 1rem;
        }

        /* About Section */
        .about {
            padding: 5rem 0;
            background: rgba(240, 240, 240,0.5);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .about-text {
            flex: 1;
        }

        .about-text h2 {
            color: black;
            margin-bottom: 1.5rem;
            font-size: 2.5rem;
        }

        .about-text p {
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .owner-img {
            flex: 1;
            background: transparent;
            height: 400px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            text-align: center;
            padding: 2rem;
        }
        .owner-img img{
            width:400px;
            height:400px;
            border-radius:25px;
            
        }

        /* Footer */
        footer {
            background: black;
            color: white;
            padding: 3rem 0;
            text-align: center;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .contact-info {
            margin-bottom: 2rem;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: white;
        }

        .contact-details {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .contact-item i {
            color: #ffcc00;
            font-size: 1.2rem;
        }

        .copyright {
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            width: 100%;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }

            nav ul {
                margin-top: 1rem;
                justify-content: center;
            }

            nav ul li {
                margin: 0 0.5rem;
            }

            .hero h2 {
                font-size: 2.2rem;
            }

            .about-content {
                flex-direction: column;
            }

            .owner-img {
                width: 100%;
                margin-top: 2rem;
            }
        }