/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cinzel', serif;
}

:root {
    --gold: #d4af37;
    --gold-light: #f4e4bc;
    --gold-dark: #b8960c;
    --dark: #1a1a1a;
    --darker: #0d0d0d;
}

/* Navbar */
.navbar {
    background: transparent !important;
    transition: all 0.4s ease;
    padding: 20px 0;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95) !important;
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--gold) !important;
    letter-spacing: 2px;
}

.navbar-brand i {
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--gold) !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 70px 0 20px;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-content {
    padding: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/dark-geometric.png');
    opacity: 0.1;
}

.hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    animation: float 15s infinite;
    opacity: 0.6;
}

.hero-particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { left: 20%; top: 60%; animation-delay: 2s; }
.hero-particles span:nth-child(3) { left: 35%; top: 30%; animation-delay: 4s; }
.hero-particles span:nth-child(4) { left: 50%; top: 70%; animation-delay: 6s; }
.hero-particles span:nth-child(5) { left: 65%; top: 25%; animation-delay: 8s; }
.hero-particles span:nth-child(6) { left: 75%; top: 80%; animation-delay: 10s; }
.hero-particles span:nth-child(7) { left: 85%; top: 40%; animation-delay: 1s; }
.hero-particles span:nth-child(8) { left: 90%; top: 15%; animation-delay: 3s; }
.hero-particles span:nth-child(9) { left: 5%; top: 85%; animation-delay: 5s; }
.hero-particles span:nth-child(10) { left: 45%; top: 10%; animation-delay: 7s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    25% { transform: translateY(-30px) rotate(90deg); opacity: 1; }
    50% { transform: translateY(-60px) rotate(180deg); opacity: 0.6; }
    75% { transform: translateY(-30px) rotate(270deg); opacity: 1; }
}

.hero-tagline {
    font-family: 'Great Vibes', cursive;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 5px;
    letter-spacing: 3px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 15px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 18px 22px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.stat-label {
    font-size: 0.8rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #000;
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
    color: #000;
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    padding: 10px 26px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-3px);
}

.hero-image-container {
    position: relative;
    display: block;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
}

.hero-image-container:hover #heroCarousel {
    transform: scale(1.02);
}

.hero-image-glow {
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
    border-radius: 25px;
    pointer-events: none;
}

@keyframes glow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hero-image {
    border-radius: 25px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 1;
    border: 4px solid rgba(212, 175, 55, 0.4);
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: cover;
}

/* Hero Carousel */
#heroCarousel {
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
    transition: transform 0.3s ease;
    padding: 0;
}

#heroCarousel .carousel-inner {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(212, 175, 55, 0.2);
    border: 4px solid rgba(212, 175, 55, 0.4);
    background: #1a1a1a;
    width: 100%;
    height: 500px;
    padding: 0;
    margin: 0;
}

#heroCarousel .carousel-item {
    width: 100%;
    height: 500px;
    padding: 0;
    margin: 0;
}

#heroCarousel .carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 0;
}

/* Ensure consistent size during fade transitions */
#heroCarousel.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 500px;
}

#heroCarousel.carousel-fade .carousel-item.active {
    opacity: 1;
    position: relative;
}

#heroCarousel.carousel-fade .carousel-item-next.carousel-item-start,
#heroCarousel.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

#heroCarousel.carousel-fade .active.carousel-item-start,
#heroCarousel.carousel-fade .active.carousel-item-end {
    opacity: 0;
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    z-index: 10;
}

#heroCarousel .carousel-control-prev {
    left: -25px;
}

#heroCarousel .carousel-control-next {
    right: -25px;
}

#heroCarousel .carousel-control-prev-icon,
#heroCarousel .carousel-control-next-icon {
    filter: brightness(0);
    width: 20px;
    height: 20px;
}

#heroCarousel .carousel-indicators {
    bottom: -40px;
}

#heroCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.5);
    border: none;
    margin: 0 5px;
}

#heroCarousel .carousel-indicators button.active {
    background-color: var(--gold);
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    z-index: 2;
    animation: bounce 3s infinite;
    backdrop-filter: blur(10px);
}

.floating-badge i {
    color: var(--gold);
    font-size: 1.1rem;
}

.badge-1 {
    top: 8%;
    right: -10px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 8%;
    left: -10px;
    animation-delay: 1.5s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-scroll-indicator {
    display: none;
}

.hero-scroll-indicator a {
    color: var(--gold);
    font-size: 1.5rem;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(15px); opacity: 0.5; }
}

/* Section Styles */
.section-subtitle {
    font-family: 'Great Vibes', cursive;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

/* About Section */
.about-section {
    background: #fafafa;
}

.about-images {
    position: relative;
    padding: 30px;
}

.about-img-1 {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 80%;
}

.about-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    border-radius: 20px;
    border: 5px solid #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-item i {
    font-size: 2rem;
    color: var(--gold);
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item h5 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature-item p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Founder Section */
.founder-section {
    background: linear-gradient(135deg, #fff 0%, #f8f5f0 100%);
}

.founder-image-wrapper {
    position: relative;
    display: inline-block;
    padding: 20px;
}

.founder-image {
    width: 350px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.founder-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 40px;
    bottom: 40px;
    border: 4px solid var(--gold);
    border-radius: 20px;
    transform: translate(30px, 30px);
}

.founder-designation {
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.founder-quote {
    font-style: italic;
    font-size: 1.15rem;
    color: #555;
    background: rgba(212, 175, 55, 0.1);
    padding: 25px 30px;
    border-radius: 15px;
    border-left: 4px solid var(--gold);
    margin-bottom: 25px;
    line-height: 1.8;
}

.founder-quote i {
    color: var(--gold);
    font-size: 0.9rem;
    margin: 0 5px;
}

.founder-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.achievement-item i {
    color: var(--gold);
    font-size: 1.1rem;
}

.achievement-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 2rem;
    color: #000;
}

.service-card h4 {
    color: #fff;
    margin-bottom: 15px;
}

.service-card p {
    color: #aaa;
    font-size: 0.95rem;
}

/* Products Section */
.products-section {
    background: #fafafa;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.product-badge.new {
    background: #28a745;
    color: #fff;
}

.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-body {
    padding: 25px;
    text-align: center;
}

.product-body h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 10px;
}

.product-rating {
    margin-bottom: 15px;
}

.product-rating i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--gold);
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-light);
}

.testimonial-author h6 {
    margin: 0;
    font-size: 1rem;
}

.testimonial-author span {
    color: #888;
    font-size: 0.85rem;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--dark);
}

.newsletter-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 50px;
}

.newsletter-box h3 {
    color: #fff;
    margin-bottom: 10px;
}

.newsletter-box p {
    color: #aaa;
}

.newsletter-form {
    display: flex;
    gap: 15px;
}

.newsletter-form .form-control {
    border-radius: 50px;
    padding: 15px 25px;
    border: none;
}

.newsletter-form .btn {
    padding: 15px 40px;
    white-space: nowrap;
}

/* Contact Section */
.contact-section {
    background: #fafafa;
}

.contact-info {
    padding: 20px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
    color: #000;
}

.contact-item h5 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-item p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-5px);
}

.contact-form-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-box .form-control {
    border-radius: 10px;
    padding: 15px 20px;
    border: 2px solid #eee;
    transition: border-color 0.3s;
}

.contact-form-box .form-control:focus {
    border-color: var(--gold);
    box-shadow: none;
}

/* Footer */
.footer {
    background: var(--darker);
    color: #fff;
}

.footer-brand {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer p {
    color: #888;
}

.footer-certifications {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.footer-certifications span {
    color: var(--gold);
    font-size: 0.85rem;
}

.footer h5 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
}

.payment-methods {
    display: flex;
    gap: 15px;
}

.payment-methods i {
    font-size: 2rem;
    color: #666;
}

/* Responsive */
@media (max-width: 991px) {
    .hero {
        padding: 100px 0 50px;
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image {
        max-width: 400px;
    }
    
    #heroCarousel {
        max-width: 450px;
    }
    
    #heroCarousel .carousel-inner,
    #heroCarousel .carousel-item,
    #heroCarousel .carousel-item img,
    #heroCarousel.carousel-fade .carousel-item {
        height: 400px;
    }
    
    .hero-image-container {
        transform: none;
    }
    
    .hero-stats {
        gap: 20px;
        justify-content: center;
        padding: 18px;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .floating-badge {
        padding: 12px 18px;
        font-size: 0.85rem;
    }
    
    .floating-badge i {
        font-size: 1rem;
    }
    
    .badge-1 {
        top: 5%;
        right: 0;
    }
    
    .badge-2 {
        bottom: 5%;
        left: 0;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-buttons .btn {
        margin: 5px !important;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 90px 0 40px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-image {
        max-width: 320px;
        margin-top: 30px;
    }
    
    #heroCarousel {
        max-width: 350px;
        margin-top: 30px;
    }
    
    #heroCarousel .carousel-inner,
    #heroCarousel .carousel-item,
    #heroCarousel .carousel-item img,
    #heroCarousel.carousel-fade .carousel-item {
        height: 350px;
    }
    
    #heroCarousel .carousel-control-prev,
    #heroCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    #heroCarousel .carousel-control-prev {
        left: -15px;
    }
    
    #heroCarousel .carousel-control-next {
        right: -15px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        gap: 15px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .floating-badge {
        padding: 10px 15px;
        font-size: 0.75rem;
    }
    
    .about-img-2 {
        display: none;
    }
    
    .founder-image {
        width: 280px;
        height: 320px;
    }
    
    .founder-frame {
        display: none;
    }
    
    .founder-quote {
        font-size: 1rem;
        padding: 20px;
    }
    
    .founder-achievements {
        justify-content: center;
    }
    
    .footer-bottom {
        text-align: center;
        justify-content: center;
    }
}