:root {
    --primary: #da9a1ad6;
    --secondary: #5a470c;
    --light: #ebeecc;
    --dark: #99902a;
    --success: #28a745;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #cca714;
    line-height: 1.6;
    padding-top: 76px;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.5rem;
}

.navbar-brand span {
    color: var(--secondary);
}

.nav-link {
    font-weight: 500;
    color: var(--dark);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary);
}

.btn-primary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #b8941f;
    border-color: #b8941f;
    transform: translateY(-2px);
}

.hero-section {
    background: linear-gradient(rgba(90,71,12,0.7), rgba(90,71,12,0.7)), url('https://www.meramilan.com/advertise/jewellers/headerbg.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    color: white;
    border-radius: 0 0 10px 10px;
}

.section-title {
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--primary);
}

.section-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
}

.product-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-card img {
    height: 250px;
    object-fit: cover;
}

.contact-info {
    background-color: var(--light);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info i {
    color: var(--secondary);
    margin-right: 10px;
    font-size: 1.2rem;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.feature-box:hover {
    background-color: var(--light);
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

footer {
    background-color: #4d3200;
    color: white;
    text-align: center;
    padding: 20px 10px;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

footer h5 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

footer a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--secondary);
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.map-container {
    height: 300px;
    background-color: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-card .rating {
    color: #ffc107;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light) !important;
}

.jewelry-category {
    text-align: center;
    margin-bottom: 40px;
}

.jewelry-category img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Gallery Section Styles */
.gallery-section {
    padding: 80px 0;
}

.gallery-filter {
    margin-bottom: 30px;
    text-align: center;
}

.gallery-filter button {
    background: none;
    border: none;
    padding: 8px 20px;
    margin: 0 5px;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.gallery-filter button.active, .gallery-filter button:hover {
    background-color: var(--secondary);
    color: white;
}

.gallery-item {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* About Section Styles */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #c17e12;
    position: relative;
}

.about-content {
    font-size: 1.1rem;
    color: #6f570b;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Services Section Styles */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #ac8c09;
    position: relative;
}

.services-content {
    font-size: 1.1rem;
    color: #6f570b;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.gallery-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
}

.filter-btn {
    background: none;
    border: none;
    padding: 8px 20px;
    margin: 0 5px;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--secondary);
    color: white;
}

.footer-content {
    text-align: center;
}
.form-select{color:#ad7506eb;}
.form-control{color:#b8941f !important;}
.form-select:focus {
  background-color: green;
  color: yellow;
}

select.decorated option:hover {
    box-shadow: 0 0 10px 100px #1882A8 inset;
}

.btn:hover{
	
	background-color:#886a0a !important;
	border-color:#886a0a !important;
}

@media (max-width: 768px) {
    .hero-section {
        height: 400px;
    }
    
    .section-padding {
        padding: 50px 0;
    }
}