@charset "utf-8";
/* CSS Document */
        :root {
            --clay-primary: #E2725B;
            --clay-secondary: #D86A56;
            --clay-dark: #A35638;
            --clay-light: #F5E3D5;
            --clay-accent: #C45A3F;
            --white: #FFFDFA;
            --text-dark: #3E2723;
            --text-light: #8D6E63;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Raleway', sans-serif;
            background-color: var(--clay-light);
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Header Styles */
        header {
            background-color: rgba(245, 227, 213, 0.95);
            position: fixed;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.4s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--clay-dark);
        }

        .logo span {
            color: var(--clay-accent);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--clay-accent);
            transition: width 0.3s;
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--clay-accent);
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
        }

        .btn-primary {
            background-color: var(--clay-accent);
            color: var(--white);
            border: 2px solid var(--clay-accent);
        }

        .btn-primary:hover {
            background-color: transparent;
            color: var(--clay-accent);
        }

        .btn-outline {
            border: 2px solid var(--clay-accent);
            color: var(--clay-accent);
            background: transparent;
        }

        .btn-outline:hover {
            background-color: var(--clay-accent);
            color: var(--white);
        }

        /* Hero Section with Slider */
        .hero {
            height: 100vh;
            position: relative;
            overflow: hidden;
            padding-top: 100px;
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            display: flex;
            align-items: center;
        }

        .slider.active {
            opacity: 1;
            z-index: 1;
        }

        .slider-content {
            width: 50%;
            padding: 40px;
            background-color: rgba(245, 227, 213, 0.85);
            border-radius: 10px;
            margin-left: 50px;
            animation: fadeInUp 1s ease-out;
        }

        .slider-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--clay-dark);
        }

        .slider-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
			margin-right: 20px;
            color: var(--text-light);
        }

        .slider-img {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            overflow: hidden;
        }

        .slider-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .slider-controls {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 10;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--clay-light);
            margin: 0 8px;
            cursor: pointer;
            transition: background-color 0.3s;
            border: 1px solid var(--clay-accent);
        }

        .slider-dot.active {
            background-color: var(--clay-accent);
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background-color: var(--white);
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.8rem;
            color: var(--clay-dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--clay-accent);
        }

        .section-title p {
            color: var(--text-light);
            max-width: 700px;
            margin: 20px auto 0;
            font-size: 1.1rem;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-img {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .about-img img {
            width: 100%;
            display: block;
            transition: transform 0.5s;
        }

        .about-img:hover img {
            transform: scale(1.05);
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 2rem;
            color: var(--clay-accent);
            margin-bottom: 20px;
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--text-light);
        }

        /* Products Section */
        .products {
            padding: 100px 0;
            background-color: var(--clay-light);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .product-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .product-card:hover {
            transform: translateY(-30px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .product-img {
            height: 300px;
        }

        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .product-card:hover .product-img img {
            transform: scale(1.1);
        }

        .product-info {
            padding: 25px;
        }


        .product-info p {
            color: var(--text-light);
            margin-bottom: 20px;
		}


        /* Process Section */
        .process {
            padding: 100px 0;
            background-color: var(--white);
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 50px;
            position: relative;
        }

        .process-steps:before {
            content: '';
            position: absolute;
            top: 50px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--clay-light);
            z-index: 1;
        }

        .step {
            text-align: center;
            position: relative;
            z-index: 2;
            width: 20%;
        }

        .step-icon {
            width: 100px;
            height: 100px;
            background-color: var(--clay-accent);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 2.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
		
		.step-icon img {
			margin: 20px;
			max-height: 70px;
		}

        .step h3 {
            font-size: 1.3rem;
            margin: 0px 5px 10px 5px;
            color: var(--clay-dark);
        }

        .step p {
            color: var(--text-light);
            font-size: 0.95rem;
			margin: 0px 5px;
        }

        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: linear-gradient(rgba(162, 86, 56, 0.8), rgba(162, 86, 56, 0.9)), url('https://images.unsplash.com/photo-1543857778-c4a1a569e7bd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2000&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
        }

        .contact-wrapper {
            display: flex;
            gap: 50px;
        }

        .contact-info {
            flex: 1;
        }

        .contact-info h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
        }

        .contact-info p {
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .contact-details {
            margin-top: 30px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .contact-item i {
            font-size: 1.2rem;
            margin-right: 15px;
            color: var(--clay-light);
        }

        .contact-form {
            flex: 1;
            background-color: rgba(255, 253, 250, 0.95);
            padding: 40px;
            border-radius: 10px;
            color: var(--text-dark);
        }

        .form-group {
            margin-bottom: 10px;
        }

        .form-group label {
            display: block;
            margin: 8px 0px 4px 0px;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: 'Raleway', sans-serif;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-control:focus {
            border-color: var(--clay-accent);
            outline: none;
        }

        textarea.form-control {
            min-height: 100px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background-color: var(--text-dark);
            color: var(--clay-light);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            margin-bottom: 40px;
        }

        .footer-column {
            width: 23%;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--white);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--clay-accent);
        }

        .footer-column p, .footer-column li {
            margin-bottom: 10px;
            color: var(--clay-light);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li a {
            color: var(--clay-light);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: var(--clay-accent);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background-color: var(--clay-accent);
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: var(--clay-light);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .slider-content {
                width: 70%;
                margin-left: 30px;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .contact-wrapper {
                flex-direction: column;
            }
            
            .footer-content {
                flex-wrap: wrap;
            }
            
            .footer-column {
                width: 48%;
                margin-bottom: 30px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .slider-content {
                width: 90%;
                margin: 0 auto;
                position: relative;
                top: 150px;
            }
			
			.slider-content h1 {
				font-size: 32px;
				margin-top: 60px;
			}
			            
            .slider-img {
                width: 100%;
                height: 50%;
            }
			
			.slider-dot {
				display: none;
			}
            
            .process-steps {
                flex-direction: column;
                gap: 40px;
            }
            
            .process-steps:before {
                display: none;
            }
            
            .step {
                width: 100%;
            }
        }
		.logo img {
  			max-height: 60px;
  			height: auto;
  			width: auto;
  			display: block;
		}
		
/* WhatsApp Button Styles */
.whatsapp-button {
    position: fixed;
    bottom: 25px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: #25D366; /* Default WhatsApp green */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-button a {
    text-decoration: none;
    color: white;
    font-size: 30px;
}

.whatsapp-button:hover {
    background-color: #E2725B; /* background on hover */
    border: 3px;
	border-color: #e87c21;   /* outline on hover */
    transform: scale(1.1);   /* Slight scaling effect */
}

