body {
    background-color: #1b1b1b;
    color: #fff;
    /* font-family: 'Rubik', sans-serif; */
    scroll-behavior: smooth;
}

/* Scrollbar width */

/* Scrollbar track (background) */
::-webkit-scrollbar-track {
    background: #ffebf0;
    /* Color of the track */
}

/* Scrollbar handle (the moving part) */
::-webkit-scrollbar-thumb {
    background-color: #C292A0;
    /* Color of the thumb */
    border-radius: 10px;
    /* Rounded corners */
    border: 3px solid #f1f1f1;
    /* Optional border */
}

/* Scrollbar handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #c5748b;
    /* Darker color on hover */
}

.section-padding{
    padding: 95px 0px;
}


/* loader  */

 /* Loader container */
 #loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #1b1b1b;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    z-index: 9999;
}

/* Logo styling */
#loader img {
    width: 100px;
    height: auto;
    position: relative;
}

/* Circular progress bar */
.progress-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid transparent;
    border-top: 5px solid #C292A0; /* Color of progress bar */
    animation: spin 3s linear infinite; /* Rotate for 5 seconds */
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Hide the loader after 5 seconds */
#content {
    display: none;
}

body.loaded #content {
    display: block;
}

body.loaded #loader {
    display: none;
}


.navbar-custom {
    background-color: #333;
    padding: 0px 20px;
    /* margin: 12px 20px 0px 20px; */
}

.logo{
    width: 58px;
}
.logo-text{
    color: #FFBF63;
    font-size: 16px;
    line-height: 20px;
}
.logo-text1{
    color: #FFBF63;
    font-size: 12px;
    font-style: italic;
}
.navbar-custom .navbar-brand,
.navbar-custom .nav-link {
    font-weight: 'Rubik', sans-serif;
    color: white;
    font-weight: 500;
}

/* Hover effect */
.navbar-custom .nav-link:hover {
    font-weight: 'Rubik', sans-serif;
    color: #C292A0; /* Lighter color for hover effect */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition effect */
    border-bottom: 2px solid #C292A0;
}


.navbar-toggler {
    border-color: transparent;
    outline: none;
}

.navbar-toggler .animated-icon {
    display: inline-block;
    width: 30px;
    height: 22px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.navbar-toggler .animated-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    position: absolute;
    transition: all 0.3s ease;
}

.navbar-toggler .animated-icon span:nth-child(1) {
    top: 0;
}

.navbar-toggler .animated-icon span:nth-child(2) {
    top: 9px;
}

.navbar-toggler .animated-icon span:nth-child(3) {
    top: 18px;
}

.navbar-toggler.expanded .animated-icon span:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
}

.navbar-toggler.expanded .animated-icon span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.expanded .animated-icon span:nth-child(3) {
    top: 9px;
    transform: rotate(-45deg);
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: unset;
}

.banner {
    position: relative;
    text-align: center;
    color: white;
    padding: 100px 0;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.banner-content {
    padding: 0 160px;
    text-align: left;
    z-index: 10;
}

.banner h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-family: 'Prata', serif;
}

.banner h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: 'Prata', serif;
}

.banner .btn {
    background-color: #C292A0;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    font-size: 1rem;
    margin-top: 20px;
    display: inline-block;
    font-family: 'Rubik', sans-serif;
}

.banner .btn:hover {
    background-color: #a77f6f; /* Darker shade of the original color */
    transform: scale(1.05); /* Slightly enlarge the button */
}

.custom-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    /*padding: 10px; */
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.custom-prev {
    left: 20px;
}

.custom-next {
    right: 20px;
}

.custom-nav:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.owl-carousel .owl-nav button {
    display: none;
}

/* about section  */

.about-section {
    padding: 30px;
}

.about-section h2 {
    color: #C292A0;
    margin-bottom: 20px;
    font-family: 'Prata', serif;
}

.about-section p {
    font-size: 15px;
    color: #A3A3A3;
    font-weight: 400;
    line-height: 1.7;
    font-family: 'Rubik', serif;
}

.jewellery-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, );
    gap: 20px;
}

.jewellery-images img {
    width: 100%;
    height: 400px;
    aspect-ratio: 1 / 1;
    /* Makes the images square */
    object-fit: cover;
    border-radius: 10px;
}


.custom-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.custom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.custom-card img {
    transition: opacity 0.3s ease;
}
.custom-card:hover img {
    opacity: 0.8;
}
.custom-card .card-body {
    transition: background-color 0.3s ease;
}
.custom-card:hover .card-body {
    background-color: rgba(0, 0, 0, 0.7); /* Adjust to your preferred color */
}

/* Phenomenal section */

.phenomenal-section {
    background-image: url('./Phenomenal.png');
    /* Use the correct path to your background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 350px !important;
}

.overlay {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* Adjust the color and opacity for your overlay */
    z-index: 1;
    /* Make sure the overlay is below the text */
}

.row.container {
    z-index: 2;
    /* Ensure content is above the overlay */
}

.phenomenal-section h1 {
    font-size: 3rem;
    font-family: 'Prata', serif;
    font-weight: bold;
    color: #C292A0;
    /* Adjust the color to match the image text */
}

.lead,
p {
    font-size: 15px;
    line-height: 1.6;
    font-family: 'Rubik', serif;
    color: #A3A3A3;
    /* Adjust the color to match the image text */
}

/* // Our Best */

.custom-card {
    background-color: #2d2d2d;
    border: 1px solid #2d2d2d;
    /* width: 22rem; */
}

.card-title {
    font-family: 'Prata', serif;
    font-size: 1.25rem;
    font-weight: bold;
    color: #C292A0;
}

.card-text {
    font-size: 0.9rem;
    color: #d0d0d0;
}

.icon {
    font-size: 2rem;
    color: #C292A0;
}

.card-body {
    padding: 1.5rem;
}

.card-img-top {
    border-bottom: 1px solid #2d2d2d;
}

.best-service {
    background-color: #353530;
}

.best-service-title {
    font-family: 'Prata', serif;
    font-size: 3.25rem;
    font-weight: 500;
    color: #C292A0;
    padding-bottom: 40px;
}
.Elegance-title{
    font-family: 'Prata', serif;
    font-size: 3.25rem;
    font-weight: 500;
    color: #C292A0;
    padding-bottom: 40px;
}
.success-texttitle{
    font-family: 'Prata', serif;
    font-size: 3.25rem !important;
    font-weight: 600;
    color: #C292A0;
    line-height: 50px !important;
}
.contact-title{
    font-family: 'Prata', serif;
    /* font-size: 3.25rem; */
    font-weight: 500;
    color: #C292A0;
    /* padding-bottom: 100px; */
}

.scheme-title{
    font-family: 'Prata', serif;
    font-weight: 500;
    color: #e5b8b4;
    text-align: center;
    margin-bottom: 10px;
    /* padding-bottom: 100px; */
}
.scheme-text{
    color: #A3A3A3;
}
.scheme-cart {
    padding: 13px;
    border: 4px solid #e5b8b4;
}
/* /store-experience */
.address-contact{
    margin-bottom: 70px;
}
.store-experience {
    padding: 60px 0;
}

.section-title {
    font-family: 'Prata', serif;
    color: #d3b7b4;
    font-size: 48px;
    font-weight: bold;
}

.section-description {
    color: #999;
    margin-top: 20px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.features-list {
    list-style: none;
    padding-left: 0;
}

.features-list li {
    font-size: 15px;
    margin-bottom: 10px;
    color: #A3A3A3;
}

.features-list i {
    color: #A3A3A3;
    margin-right: 10px;
}

/* .image-container {
    display: inline-block;
    padding: 20px;
    border: 5px solid #d3b7b4;
    border-radius: 8px;
} */

.main-image {
    border-radius: 8px;
    max-width: 100%;
}

.exp-section {
    position: absolute;
    right: 0px;
}


.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f1e8e6;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.hero-text {
    max-width: 50%;
}

.hero-text h1 {
    font-size: 3rem;
    color: #e5b8b4;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 15px;
    line-height: 1.6;
}

.hero-text p em {
    font-style: italic;
    font-weight: 400;
}

.hero-image img {
    max-width: 100%;
    border-radius: 5px;
}

/* success  */
.success {
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-text {
    /* margin-left: 50px; */
    color: #f1e8e6;
}

.success-text h2 {
    font-size: 2.5rem;
    color: #e5b8b4;
    margin-bottom: 20px;
}

.success-text h3 {
    font-size: 2rem;
    color: #e5b8b4;
    margin-bottom: 15px;
}

.success-text p {
    font-size: 15px;
    line-height: 1.6;
}

.success-image img {
    max-width: 100%;
    border-radius: 5px;
}

.success-section {
    background-color: #353530;
    padding: 100px 0px;
}

.shop-item .img-fluid {
    padding: 13px;
}
.scheme-section {
    background-color: #353530;
    padding: 100px 0px;
}

/* contact section  */

.contact-section {
    padding: 50px 10px;
}

.contact-section h2 {
    color: #e5b8b4;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.contact-info h3 {
    color: #e5b8b4;
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.contact-info p,
.contact-info a {
    font-size: 15px;
    line-height: 1.6;
    color: #f1e8e6;
}

.contact-info a {
    text-decoration: none;
    color: #e5b8b4;
}

.contact-info a:hover {
    text-decoration: underline;
}

.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 100%;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}


/* footer  */

.footer {
    background-color: #282522;
    color: #fff;
    padding: 40px 0;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.footer-brand {
    max-width: 300px;
}


.footer-logo {
    width: 250px;
    margin-bottom: 15px;
}

.footer p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.footer-column address {
    font-style: normal;
}

.footer-column address a {
    color: #fff;
    text-decoration: none;
}

.footer-column address a:hover {
    text-decoration: underline;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 250px; /* Adjust the height as needed */
    object-fit: cover; /* Ensures the image covers the area without distorting */
    display: block;
    padding: 10px;
}
/* Responsive Styles */
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1078px;
    }
}
@media (max-width: 768px) {
    .banner {
        padding: 70px 0;
        height: 70vh;
        /* Reduced height for tablets and small screens */
    }

    .custom-card {
        /* background-color: #2d2d2d;
        border: 1px solid #2d2d2d; */
        width: unset;
    }

    .banner-content {
        padding: 0 20px;
    }

    .banner h1 {
        font-size: 3rem;
    }

    .banner h4 {
        font-size: 1.2rem;
    }

    .banner .btn {
        font-size: 0.9rem;
    }

    /* about section  */

    .about-section {
        padding: 20px;
    }

    .about-section h2 {
        font-size: 24px;
    }

    .about-section p {
        font-size: 14px;
    }


    .phenomenal-section {
        height: auto;
        padding: 30px 15px;
        /* Add some padding for smaller screens */
    }

    .phenomenal-section h1 {
        font-size: 2rem;
        /* Adjust font size for smaller screens */
    }

    .lead,
    p {
        font-size: 14px;
        /* Increase font size for readability on mobile */
    }

    .exp-section {
        position: unset;
    }


    /* footer  */

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-column {
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 15px;
    }
}

@media (max-width: 576px) {
    .navbar-custom {
        background-color: #333;
        padding: 0px 4px;
        margin: 0px 0px 0px 1px;
    }
    .logo-text {
        color: #FFBF63;
        font-size: 9px;
        line-height: 17px;
    }
    .logo-text1 {
        color: #FFBF63;
        font-size: 9px;
        font-style: italic;
    }
    .logo {
        width: 50px;
    }
    .phenomenal-section {
        height: 570px !important;
    }
    .hero-text {
        max-width: 100%;
    }

    .banner {
        padding: 50px 0;
        height: 50vh;
        /* Further reduced height for mobile devices */
    }

    .banner-content {
        padding: 0 35px;
    }

    .banner h1 {
        font-size: 2rem;
    }

    .banner h4 {
        font-size: 1rem;
    }

    .banner .btn {
        font-size: 0.8rem;
        padding: 8px 20px;
    }


    .phenomenal-section {
        flex-direction: column;
        height: auto;
        padding: 20px;
        /* More padding on very small screens */
    }

    .phenomenal-section h1 {
        font-size: 1.8rem;
        /* Adjust font size further for extra small screens */
    }

    .lead,
    p {
        font-size: 12px;
    }
}

/* gellary  */

.gallery-banner {
    position: relative;
    width: 100%;
    height: 300px; /* Adjust as needed */
    background: url('./banner.png') no-repeat center center/cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgb(210 130 130 / 40%), rgba(0, 0, 0, 0.2));
    display: flex;
    align-items: center;
    justify-content: left;
    padding-left: 50px;
}

.gallery-content {
    color: white;
}

.gallery-item {
    padding: 15px;
}

.gallery-item img {
    /* width: 100%;
    height: auto; */
    transition: transform 0.2s ease-in-out;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .gallery-overlay {
        justify-content: center;
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
    }

    .gallery-content {
        padding: 20px;
    }
}