        /* Color Palette */
        :root {
            --white: #FFFFFF;
            --pearl: #FAF8F5;
            --khaki: #DFDACF;
            --taupe: #A39680;
            --cacao: #4D403A;
            --leather: #262626;
        }

        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica Neue', Arial, sans-serif;
        }

        body {
            background-color: var(--pearl);
            color: var(--taupe);
            line-height: 1.6;
            animation: fadeIn 1.0s ease-in-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
}

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        h1, h2, h3, h4 {
            font-weight: 300;
            letter-spacing: 1px;
        }

        h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--cacao);
        }

        h3 {
            font-size: 1.5rem;
            margin: 1.5rem 0 1rem;
            color: var(--cacao);
        }

        p {
            margin-bottom: 1rem;
        }

        a {
            color: var(--cacao);
            text-decoration: none;
            transition: color 0.3s;
        }

        a:hover {
            color: var(--taupe);
        }

        ul {
            list-style-type: none;
            margin-left: 1rem;
        }

        li {
            margin-bottom: 0.5rem;
            position: relative;
        }

        li::before {
            content: "•";
            color: var(--taupe);
            position: absolute;
            left: -1rem;
        }

        /* Header */
        header {
            background-color: var(--pearl);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 500;
            color: var(--leather);
            letter-spacing: 2px;
        }

        .logo span {
            color: var(--taupe);
        }

        /* Navigation */
        nav ul {
            display: flex;
            margin-left: 0;
        }

        nav li {
            margin: 0 15px;
        }

        nav li::before {
            content: none;
        }

        nav a {
            padding: 5px 0;
            font-weight: 500;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--taupe);
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--leather);
        }

        /* Hero Section */
        .hero {
            background-color: var(--taupe);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('product photos\mti_challan.png');
            background-size: cover;
            background-position: center;
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--white);
            color: var(--leather);
            border: none;
            border-radius: 4px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            cursor: pointer;
        }

        .btn:hover {
            background-color: var(--khaki);
            transform: translateY(-2px);
        }

        /* About Section */
        .about {
            padding: 80px 0;
            background-color: var(--white);
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }
        /* .about-image :hover{
            transform: translateY(-5px);
        } */

        .about-image {
            /* flex: 1; */
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            overflow: hidden;
            /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
            aspect-ratio: 4 / 3;
            /* transition: transform 0.5s; */
        }

        .about-image img {
            width: 70%;
            height: auto;
            /* display: block; */
            object-fit: cover;
        }

        /* Products Section */
        .products {
            padding: 80px 0;
            background-color: var(--pearl);
        }

        .para {

            margin-bottom: 50px;
        }
      

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .product-card {
            background-color: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.5s;
        }

        .product-card:hover {
            transform: translateY(-5px);
        }
        .product-card:hover .product-image img{
            transform: scale(1.05);
        }

        .product-image {
            height: 200px;
            background-color: var(--khaki);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--cacao);
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            overflow: hidden;
        }
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .product-info {
            padding: 20px;
        }
        
        .product-info h2{
            text-align: center;
            font-weight: bold;
          
        }

        .product-info h3 {
            margin-top: -30px;
            margin-bottom: 25px;
            font-size: 20px;
            text-align: center;
    
        }

        /* Quality Section */
        .quality {
            padding: 80px 0;
            background-color: var(--cacao);
            color: var(--white);
        }

        .quality h2 {
            color: var(--white);
        }

        .quality h3{
            color: var(--white);
            margin-bottom: 10px;
        }

        .quality h4{
            color: var(--white);
            margin-bottom: 10px;
        }

        /* Contact Section */
        .contact {
            padding: 80px 0;
            background-color: var(--khaki);
        }

        .contact .container p{
            font-size: large;
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--taupe);
            border-radius: 4px;
            background-color: var(--white);
            font-size: 1rem;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background-color: var(--leather);
            color: var(--white);
            padding: 50px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-column h3 {
            color: var(--white);
            margin-top: 0;
            font-size: 1.2rem;
        }

        .footer-column ul {
            margin-left: 0;
        }

        .footer-column li::before {
            content: none;
        }

        .footer-column a {
            color: var(--pearl);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }

            nav ul {
                flex-direction: column;
                text-align: center;
                display: none;
                width: 100%;
            }

            nav li {
                margin: 10px 0;
            }

            .mobile-toggle {
                display: block;
                position: absolute;
                right: 20px;
                top: 20px;
            }

            .about-content {
                flex-direction: column;
            }

            .hero h1 {
                font-size: 2.5rem;
            }
        }