* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body { background-color: #f9f9f9; color: #333; }

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: #063970;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: bold; }
.logo span { color: #FFD700; }

.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a { color: white; text-decoration: none; font-size: 14px; transition: 0.3s; }
.nav-links a:hover { color: #FFD700; }

.cta-btn { background: #FFD700; border: none; padding: 10px 20px; font-weight: bold; cursor: pointer; border-radius: 5px; }

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(6, 57, 112, 0.8), rgba(6, 57, 112, 0.8)), url('https://images.unsplash.com/photo-1551021211-139a9ec93933?auto=format&fit=crop&q=80&w=1600') no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero h1 { font-family: 'Playfair Display', serif; font-size: 50px; margin-bottom: 20px; }
.highlight { color: #FFD700; }

.btn-primary {
    background: #FFD700;
    color: #063970;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: 0.3s;
}

/* Product Grid */
.products { padding: 80px 8%; text-align: center; }
.section-title { font-family: 'Playfair Display', serif; font-size: 36px; margin-bottom: 40px; color: #063970; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.card:hover { transform: translateY(-10px); }
.card img { width: 100%; border-radius: 10px; margin-bottom: 15px; }
.card h3 { color: #063970; margin-bottom: 10px; }
.price { color: #B8860B; font-weight: bold; }

/* Premium Header Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background: rgba(6, 57, 112, 0.95); /* Deep Navy with transparency */
    backdrop-filter: blur(10px); /* Glassmorphism effect */
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.nav-links a {
    position: relative;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Hover underline effect */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #FFD700;
    bottom: -5px;
    left: 0;
    transition: 0.3s;
}

.nav-links a:hover::after { width: 100%; }

.nav-icons { display: flex; align-items: center; gap: 20px; font-size: 18px; }
.nav-icons i { cursor: pointer; transition: 0.3s; }
.nav-icons i:hover { color: #FFD700; }



.tag {
    background: #FFD700;
    color: #063970;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.slide-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 65px;
    margin: 20px 0;
}



/* Hero Section Background */
.hero-section {
    min-height: 100vh;
    background: radial-gradient(circle at 10% 20%, #063970 0%, #0a4d96 90%);
    padding-top: 80px; /* Navbar height ke liye */
    overflow: hidden;
}

/* Gold Theme Colors */
.text-gold {
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.bg-gold-soft {
    background: rgba(255, 215, 0, 0.15);
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.btn-gold {
    background-color: #FFD700;
    color: #063970;
    border: none;
    transition: 0.3s ease;
}

.btn-gold:hover {
    background-color: #fff;
    color: #063970;
    transform: translateY(-3px);
}

/* Floating Animation */
.floating-gemstone {
    max-width: 450px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
    animation: floating 4s ease-in-out infinite;
    z-index: 5;
    position: relative;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Background Glow */
.gem-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: #FFD700;
    filter: blur(140px);
    opacity: 0.2;
    z-index: 1;
}

/* Typography fix for Playfair Display */
h1 {
    font-family: 'Playfair Display', serif;
}

.text-navy { color: #063970; }
.text-gold { color: #FFD700; }

.header-line {
    width: 80px;
    height: 4px;
    background: #FFD700;
    border-radius: 2px;
}

/* Filter Buttons */
.btn-outline-navy {
    border: 2px solid #063970;
    color: #063970;
    font-weight: 600;
    border-radius: 30px;
    padding: 8px 25px;
    transition: 0.3s;
}

.btn-outline-navy:hover, .btn-outline-navy.active {
    background-color: #063970;
    color: white;
}

/* Premium Card Styling */
.stone-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    transition: 0.4s ease;
    height: 100%;
}

.stone-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(6, 57, 112, 0.15) !important;
}

.card-img-wrapper {
    position: relative;
    padding: 20px;
    background: #f8f9fa;
}

.card-img-wrapper img {
    border-radius: 15px;
    height: 220px;
    object-fit: contain;
    transition: 0.5s;
}

.stone-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(6, 57, 112, 0.9);
    color: white;
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}
/*.logo sup.tm{
    color: #fff;
    font-weight: 200;
    font-size: 11px;
}*/
.logo img{
    width: 80%;
}
.footer-logo img{
    width: 80%;
}
.btn-enquiry {
    background: #FFD700;
    color: #063970;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    padding: 10px;
    width: 100%;
}
/* Navy Background */
.bg-navy {
    background-color: #063970 !important;
}

/* Logo Size */
.navbar-logo {
    height: 50px;
    width: auto;
}

/* Nav Links Styling */
.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    padding: 10px 20px !important;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link.active {
    color: #FFD700 !important; /* Gold Color */
}

/* Custom CTA Button */
.cta-btn {
    background-color: #FFD700;
    color: #063970;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    transition: 0.3s;
    white-space: nowrap;
}

.cta-btn:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Nav Icons Styling */
.nav-icons i {
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.nav-icons i:hover {
    color: #FFD700;
}

/* Sticky shadow fix */
.sticky-top {
    z-index: 1020;
}
.navbar {
    z-index: 9999 !important; /* Navbar ko sabse upar rakhne ke liye */
}

.navbar-collapse {
    position: relative;
    z-index: 10000;
}
/* Slider Text Responsiveness */
@media (max-width: 768px) {
    .carousel-item { height: 60vh !important; }
    .display-3 { font-size: 2.5rem !important; }
    .slide-content { text-align: center; width: 100%; }
}

/* Gold Theme Color */
.text-gold { color: #FFD700 !important; }
.btn-gold { background-color: #FFD700; color: #063970; font-weight: bold; border-radius: 50px; }
.btn-gold:hover { background-color: #fff; color: #063970; }

/* Fixed overlapping issue on mobile */
.navbar-collapse {
    z-index: 9999;
}
/* Mobile Adjustments */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #063970;
        padding: 20px;
        border-radius: 0 0 15px 15px;
        margin-top: 10px;
    }
    .cta-btn {
        width: 100%;
        margin-top: 15px;
    }
}
.card-img-wrapper img {
    max-height: 200px;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
    transition: 0.5s ease;
}

.stone-card:hover img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 15px 25px rgba(255, 215, 0, 0.4)); /* Gold Glow on hover */
}





/* Color Scheme */
.text-navy { color: #063970; }
.text-gold { color: #FFD700; }

.header-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #063970, #FFD700);
    border-radius: 10px;
}

/* Navratna Card */
.navratna-card {
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.5s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.navratna-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(6, 57, 112, 0.12) !important;
}

.stone-img-box {
    background: radial-gradient(circle, #f8fbff 0%, #eef4f9 100%);
    padding: 40px;
    position: relative;
    text-align: center;
}

.stone-img-box img {
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
    transition: 0.5s;
}

.navratna-card:hover .stone-img-box img {
    transform: scale(1.15) rotate(5deg);
}

/* Planet Tags */
.planet-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(6, 57, 112, 0.9);
    color: #FFD700;
    padding: 6px 15px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

/* Outline Button Styling */
.btn-navy-outline {
    border: 2px solid #063970;
    color: #063970;
    font-weight: bold;
    border-radius: 12px;
    padding: 10px;
    transition: 0.3s;
}

.btn-navy-outline:hover {
    background: #063970;
    color: #FFD700;
}


/* Footer Styles */
.footer-section {
    background: #063970; /* Deep Navy Blue */
    color: #ffffff;
    padding: 80px 0 30px;
    font-family: 'Poppins', sans-serif;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
}

.footer-logo span {
    color: #FFD700; /* Gold */
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #FFD700;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #FFD700;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.footer-links a:hover {
    color: #FFD700;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: #FFD700;
    font-size: 18px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #FFD700;
    color: #063970;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 50px 0 30px;
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    background: #128c7e;
    color: white;
}

.whatsapp-float i {
    font-size: 24px;
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
    .whatsapp-float span {
        display: none; /* Mobile par sirf icon dikhega */
    }
    .whatsapp-float {
        padding: 12px;
        bottom: 20px;
        right: 20px;
    }
}



/* Slider ki height set karne ke liye */
#simpleHeroSlider .slider-bg {
    height: 100vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Captions ko center karne ke liye simple tweak */
.carousel-caption {
    bottom: 20%; /* Text ko thoda upar karne ke liye */
}

/* Gold color button for simple design */
.btn-warning {
    background-color: #FFD700 !important;
    border: none;
    color: #000 !important;
    font-weight: bold;
}
#gemstoneSlider {
    margin: 90px 0 0 0;
}
/*.carousel-item img{
    width: 100%;
    height: 500px !important;
}*/
#triyugiSlider {
    margin: 90px 0 0 0;
}

/* Slider Base Settings */
#triyugiSlider .slider-bg {
    height: 90vh; /* Computer par full screen se thoda kam */
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Caption Alignment */
#triyugiSlider .carousel-caption {
    bottom: 25%; /* Text ko thoda upar lane ke liye */
    text-align: center;
    z-index: 10;
}

/* Gold Text and Buttons */
.text-gold {
    color: #FFD700 !important;
}

.badge-premium {
    background: #FFD700;
    color: #063970;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

.btn-gold {
    background-color: #FFD700;
    color: #063970;
    border: none;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-gold:hover {
    background-color: #ffffff;
    color: #063970;
    transform: translateY(-3px);
}

/* Custom Arrows */
.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: rgba(6, 57, 112, 0.5);
    border-radius: 50%;
    padding: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    #triyugiSlider .slider-bg {
        height: 60vh; /* Mobile par height kam */
    }
    #triyugiSlider .display-4 {
        font-size: 1.8rem !important;
    }
    #triyugiSlider .lead {
        font-size: 0.9rem;
    }
}















/* Slider Base */
#triyugiSlider .slider-bg {
    height: 100vh;
    background-size: cover;
    background-position: center;
    transition: transform 7s linear; /* Slow zoom effect */
}

/* Active Slide Zoom Effect */
.carousel-item.active .slider-bg {
    transform: scale(1.1);
}

/* Perfect Center Alignment */
#triyugiSlider .carousel-caption {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
}

/* Glassmorphism Box */
.glass-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

/* Custom Gold Styling */
.text-gold {
    color: #FFD700 !important;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.badge-premium {
    display: inline-block;
    /*color: #FFD700;*/
    border: 1px solid #FFD700;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.btn-gold-premium {
    background: linear-gradient(45deg, #FFD700, #DAA520);
    color: #063970 !important;
    border: none;
    font-weight: 700;
    padding: 15px 45px;
    border-radius: 50px;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.3);
}

.btn-gold-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(218, 165, 32, 0.5);
}

/* --- Animation Logic --- */





        .bg-navy { background-color: #063970 !important; }
        .text-gold { color: #FFD700 !important; }
        .navbar-brand img { height: 50px; }
        
        .nav-link { 
            color: white !important; 
            font-weight: 500; 
            margin: 0 10px;
        }
        .nav-link:hover, .nav-link.active { color: #FFD700 !important; }

        .cta-btn {
            background: #FFD700;
            color: #063970;
            border: none;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: bold;
        }

        /* Mobile Adjustments */
        @media (max-width: 991px) {
            .navbar-collapse {
                background: #063970;
                padding: 20px;
                margin-top: 10px;
                border-radius: 10px;
            }
        }
   
    .carousel-item {
      height: 600px;
    }
    .carousel-item img {
      height: 100%;
      object-fit: cover;
      filter: brightness(60%);
    }
    .carousel-caption {
      bottom: 20%;
    }
    .carousel-caption h2 {
      font-size: 40px;
      font-weight: bold;
    }
    .carousel-caption p {
      font-size: 18px;
    }







@media only screen and (min-width:320px) and (max-width:479px) 
{
.carousel-caption h2{font-size: 20px;}
.btn-gold-premium{font-size: 16px;}
.navbar-brand img {height: 38px;}

}
@media only screen and (min-width:360px) and (max-width:639px) 
{
.carousel-caption h2{font-size: 20px;}
.btn-gold-premium{font-size: 16px;}
}


@media only screen and (min-width:480px) and (max-width:639px) {


}