/*

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f4f4f4;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px;
}


header {
	background: linear-gradient(to right, #1c1c1c 0%, #4a3f35 40%, #c9a961 70%, #f5e6d3 100%);	
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/*
header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}
*/

        .homePage_header_section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0px 20px;
           
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .homePage_logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 24px;
            font-weight: bold;
            
        }

        .homePage_logo_image {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
           
            font-size: 28px;
        }
        .homePage_cart_icon {
            position: relative;
            cursor: pointer;
            transition: transform 0.2s;
        }

        .homePage_cart_icon:hover {
            transform: scale(1.1);
        }

        .homePage_cart_svg {
            width: 32px;
            height: 32px;
        }

        .homePage_cart_badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: #ff4757;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
        }
		
.homePage_circle_image {
	width: 50px;         /* Set a fixed width */
	height: 50px;        /* Set a fixed height (must match the width for a perfect circle) */
	border-radius: 60%;   /* Crops the image into a circle */
	object-fit: cover;    /* Ensures the image covers the entire circle without stretching */
}



aboutusPage_header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

aboutusPage_header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: shimmer 20s linear infinite;
}

@keyframes shimmer {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

h1 {
    font-size: 1.8rem;
	
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.aboutusPage_tagline {
    font-size: 1.3em;
    font-style: italic;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

.aboutusPage_content_section {
    background: white;
    margin: 40px auto;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aboutusPage_content_section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.aboutusPage_section_title {
    font-size: 2.5em;
     color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.aboutusPage_section_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.aboutusPage_story_text {
    font-size: 1.1em;
    color: #555;
    margin: 25px 0;
    text-align: justify;
}

.aboutusPage_features_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.aboutusPage_feature_card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.aboutusPage_feature_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: left 0.5s ease;
}

.aboutusPage_feature_card:hover::before {
    left: 100%;
}

.aboutusPage_feature_card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.aboutusPage_feature_icon {
    font-size: 3em;
    margin-bottom: 15px;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

.aboutusPage_feature_title {
    font-size: 1.5em;
    color: #764ba2;
    margin-bottom: 10px;
    font-weight: bold;
}

.aboutusPage_feature_title {
    color: #666;
    font-size: 0.95em;
}

.aboutusPage_values_section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 50px;
    border-radius: 20px;
    margin: 40px auto;
	 text-align: center;
}

.aboutusPage_values_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.aboutusPage_value_item {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.aboutusPage_value_item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.aboutusPage_value_emoji {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.aboutusPage_value_name {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 8px;
}

footer {
    text-align: center;
    padding: 40px 20px;
    background: #2d3748;
    color: white;
    margin-top: 60px;
}

footer p {
    font-size: 1.1em;
}



nav {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-toggle {
    display: none;
    background: #AA6C39 /*#667eea;*/
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 5px;
    margin: 10px 0;
}

.nav-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.nav-menu > li > a:hover {
    /*background: #667eea;*/
    color:  #AA6C39;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    list-style: none;
}

.nav-menu > li:hover .dropdown {
    display: block;
}

.dropdown li a {
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid #eee;
}

.dropdown li:last-child a {
    border-bottom: none;
}

.dropdown li a:hover {
    background: #f8f8f8;
    color: #667eea;
    padding-left: 2rem;
}



@media (max-width: 768px) {
	
	h1 {
    font-size: 1.2rem;
	}
	
	.nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu > li {
        width: 100%;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        background: #f8f8f8;
    }

    .nav-menu > li:hover .dropdown {
        display: none;
    }

    .nav-menu > li.active .dropdown {
        display: block;
    }
	


    .aboutusPage_content_section {
        padding: 30px 20px;
    }

    .aboutusPage_section_title {
        font-size: 2em;
    }

    .aboutusPage_values_section {
        padding: 40px 20px;
    }
}
