/* CSS Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html{
            overflow-x: hidden;
        }

        body {
            font-family: 'Playfair Display', serif;
            color: #333;
            line-height: 1.6;
            background-color: #f9f9f9;
        }

        h1, h2, h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(135deg, #d4af37 0%, #f9d423 100%);
            color: #111;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

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

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #222;
            margin-bottom: 15px;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: linear-gradient(135deg, #d4af37 0%, #f9d423 100%);
            margin: 0 auto;
        }

        /* Header & Navigation */
        header {
            background-color: rgba(0, 0, 0, 0.365);
            position: fixed;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
            
        }

        header.scrolled {
            background-color: rgba(0, 0, 0, 0.95);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #d4af37;
        }

        .logo span {
            color: #fff;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            color: #fff;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #d4af37;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            color: #fff;
            font-size: 1.5rem;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: url('https://images.unsplash.com/photo-1599643478518-a784e5dc4c8f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1587&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            position: relative;
            color: #fff;
            text-align: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        }

        .hero-content p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        /* Collections Section */
        .collections {
            padding: 100px 0;
            background-color: #fff;
        }

        .collection-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .collection-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .collection-item:hover {
            transform: translateY(-10px);
        }

        .collection-img {
            height: 300px;
            width: 100%;
            object-fit: cover;
        }

        .collection-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            padding: 20px;
            color: #fff;
        }

        .collection-overlay h3 {
            margin-bottom: 10px;
            font-size: 1.5rem;
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background-color: #f5f5f5;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #222;
        }

        .about-text p {
            margin-bottom: 20px;
        }

        .about-features {
            margin-top: 30px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .feature-icon {
            color: #d4af37;
            font-size: 1.5rem;
            margin-right: 15px;
        }

        /* Testimonials */
        .testimonials {
            padding: 100px 0;
            background-color: #fff;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background-color: #f9f9f9;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

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

        .author-info h4 {
            margin-bottom: 5px;
        }

        .stars {
            color: #d4af37;
        }

        /* Newsletter */
        .newsletter {
            padding: 80px 0;
            background: linear-gradient(135deg, #d4af37 0%, #f9d423 100%);
            text-align: center;
            color: #111;
        }

        .newsletter h2 {
            margin-bottom: 20px;
            font-size: 2.2rem;
        }

        .newsletter p {
            max-width: 600px;
            margin: 0 auto 30px;
        }

        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
        }

        .newsletter-form input {
            flex: 1;
            padding: 15px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
        }

        .newsletter-form button {
            padding: 15px 30px;
            background-color: #111;
            color: #fff;
            border: none;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            font-weight: 600;
            text-transform: uppercase;
        }

        /* Footer */
        footer {
            background-color: #111;
            color: #fff;
            padding: 70px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-column h3 {
            color: #d4af37;
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: #ccc;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: #d4af37;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #fff;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: #d4af37;
            transform: translateY(-3px);
        }

        .logimg{
            position: relative;
            width: 150px;
            padding-bottom: -200px;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #ccc;
            font-size: 0.9rem;
        }



           /* About Section - Modified Layout */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img {
    flex: 1;
    min-width: 45%;
}

.about-text {
    flex: 1;
}

.jewelry-specialties {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.specialty-item {
    background: rgba(212, 175, 55, 0.1);
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.specialty-item:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.15);
}

.specialty-item i {
    font-size: 1.8rem;
    color: #d4af37;
    margin-bottom: 10px;
}

.specialty-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #222;
}

.specialty-item p {
    font-size: 0.9rem;
    color: #555;
}




/* Jewelry Gallery Section */
.jewelry-gallery {
  padding: 80px 0;
  background: #faf6f2; /* Soft warm background */
}

.gallery-container {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 30px;
}

.image-left, .image-right {
  flex: 1;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.image-left .jewelry-img {
  object-position: left center;
}

.image-right .jewelry-img {
  object-position: right center;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 30px;
  color: white;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s ease;
}

.image-overlay h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #d4af37; /* Gold color */
}

.image-overlay p {
  font-size: 1.1rem;
}

.image-left:hover .image-overlay,
.image-right:hover .image-overlay {
  transform: translateY(0);
  opacity: 1;
}

.image-left:hover .jewelry-img {
  transform: scale(1.05) rotate(-1deg);
}

.image-right:hover .jewelry-img {
  transform: scale(1.05) rotate(1deg);
}

/* Responsive Design */
@media (max-width: 992px) {
  .gallery-container {
    flex-direction: column;
  }
  
  .jewelry-img {
    height: 400px;
  }
  
  .image-overlay {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .jewelry-img {
    height: 350px;
  }
  
  .image-overlay h3 {
    font-size: 1.5rem;
  }
  
  .image-overlay p {
    font-size: 1rem;
  }
}






/* Responsive adjustments */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .jewelry-specialties {
        grid-template-columns: 1fr;
    }
    
    .about-img, .about-text {
        width: 100%;
    }
}

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 2.8rem;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .about-img {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background-color: #111;
                flex-direction: column;
                align-items: center;
                padding-top: 40px;
                transition: left 0.3s ease;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li {
                margin: 15px 0;
            }

            .hamburger {
                display: block;
            }

            .hero-content h1 {
                font-size: 2.2rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-form input,
            .newsletter-form button {
                border-radius: 30px;
                width: 100%;
            }

            .newsletter-form input {
                margin-bottom: 10px;
            }
        }

        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .btn {
                padding: 10px 20px;
            }
        }