<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Ensure all sections are visible by default */
section {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Base Styles */
:root {
    --primary-color: #c9a57a;
    --secondary-color: #333333;
    --light-color: #ffffff;
    --dark-color: #1a1a1a;
    --grey-color: #f5f5f5;
    --text-color: #333333;
    --heading-font: 'Cormorant Garamond', serif;
    --body-font: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--light-color);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5rem;
    letter-spacing: 3px;
}

h2 {
    font-size: 2.2rem;
    letter-spacing: 2px;
}

h3 {
    font-size: 1.8rem;
    font-weight: 300;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
    font-size: 1rem;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

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

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-family: var(--body-font);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.separator {
    width: 50px;
    height: 1px;
    background-color: var(--primary-color);
    margin: 20px auto;
}

.tagline {
    font-family: var(--heading-font);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    margin: 0;
    font-size: 1.5rem;
    letter-spacing: 3px;
}

nav {
    display: flex;
    align-items: center;
}

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

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

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover:after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background-color: var(--light-color);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 50px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image:before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    z-index: -1;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--grey-color);
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-image {
    flex: 1;
    margin-right: 50px;
    position: relative;
}

.about-image img {
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image:before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    z-index: -1;
}

.about-text {
    flex: 1;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background-color: var(--light-color);
}

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

.feature {
    text-align: center;
    padding: 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.feature:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.feature h4 {
    margin-bottom: 15px;
}

/* Elegant Jewelry &amp; Diamonds Section */
.jewelry-diamonds {
    padding: 100px 0;
    background-color: #f9f6f1;
    position: relative;
    overflow: hidden;
}

.jewelry-diamonds::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1605100804763-247f67b3557e?ixlib=rb-4.0.3&amp;ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&amp;auto=format&amp;fit=crop&amp;w=1470&amp;q=80') no-repeat center center/cover;
    opacity: 0.05;
    z-index: 0;
}

.diamond-collection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.diamond-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(201, 165, 122, 0.2);
}

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

.diamond-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #f9f6f1 0%, #e8e1d7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(201, 165, 122, 0.2);
    transition: all 0.3s ease;
}

.diamond-item:hover .diamond-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-color) 0%, #d4b58c 100%);
    color: white;
}

.diamond-item h4 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.diamond-item h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.diamond-item:hover h4::after {
    width: 80px;
}

.diamond-item p {
    color: #666;
    line-height: 1.8;
    margin-top: 15px;
    font-size: 1.05rem;
}

/* Services Section */
.services-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.services-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin: 0 auto;
}

.service-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    z-index: 1;
    will-change: transform;
    backface-visibility: hidden;
}

.service-slide.active {
    transform: translateX(0);
    z-index: 2;
}

.service-slide.prev {
    transform: translateX(-100%);
}

.service-slide.next {
    transform: translateX(100%);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-arrow:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
    left: 0;
}

.carousel-arrow.next {
    right: 0;
}

.carousel-pagination {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--primary-color);
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.services {
    padding: 100px 0;
    background-color: var(--grey-color);
}

.service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: stretch;
}

.service {
    display: flex;
    flex-direction: column;
    background-color: var(--light-color);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 500px; /* Set a minimum height for all service cards */
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
}

.service-content h4 {
    margin: 0 0 15px 0;
    font-size: 1.4rem;
    color: var(--secondary-color);
    text-align: center;
}

.service p {
    text-align: center;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h4 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--secondary-color);
}

/* Responsive styles */
@media (max-width: 1024px) {
    .service-list {
        gap: 20px;
    }
    
    .service.bento-box img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .service-list {
        grid-template-columns: 1fr;
    }
    
    .service.bento-box {
        grid-row: auto;
    }
    
    .service.bento-box img {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .service-content {
        padding: 20px;
    }
    
    .service.bento-box .service-content {
        padding: 25px 20px;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--light-color);
}

.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-card {
    background-color: var(--grey-color);
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h5 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-form {
    flex: 1;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

/* Form Styles */
.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

/* Form Messages */
.form-message {
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 8px;
    text-align: center;
}

.form-message h3 {
    margin-top: 0;
    color: inherit;
}

.form-message.success {
    background-color: #f0f9f0;
    color: #1e7b1e;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #fdf0f0;
    color: #c33;
    border: 1px solid #f5c6cb;
}

.form-message .btn-primary {
    margin-top: 15px;
    background-color: #fff;
    color: #c33;
    border: 1px solid #c33;
}

.form-message .btn-primary:hover {
    background-color: #c33;
    color: #fff;
}

/* Form Inputs */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--body-font);
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(201, 165, 122, 0.2);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--body-font);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
footer {
    padding: 50px 0 20px;
    background-color: var(--dark-color);
    color: var(--light-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo h3 {
    color: var(--light-color);
    margin-bottom: 10px;
}

.social-links {
    display: flex;
}

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

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

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

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container,
    .about-content {
        flex-direction: column;
    }

    .hero-content,
    .about-image {
        padding-right: 0;
        margin-right: 0;
        margin-bottom: 50px;
    }

    .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--light-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
    }

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

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

    .hamburger {
        display: block;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .service {
        flex-direction: column;
    }

    .service img {
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 150px 0 80px;
    }

    .about,
    .why-choose-us,
    .services,
    .contact {
        padding: 80px 0;
    }
}

/* Interactive Element Transitions */
a,
button,
.btn-primary,
.nav-links a,
.hamburger span {
    transition: all 0.3s ease-in-out;
}

.nav-links a:hover,
.btn-primary:hover {
    transform: translateY(-2px);
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    transition: width 0.3s ease-in-out;
}

.nav-links a:hover:after {
    width: 100%;
}

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

/* Hero Section Full View &amp; Scroll Tease */
body.initial-view .hero {
    min-height: 100vh; /* Ensure hero takes full viewport height initially */
    display: flex; /* For centering content if needed */
    align-items: center;
}

/* Remove the rule that hides sections */
/* body.initial-view &gt; section:not(.hero) {
    display: none;
} */

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10; /* Ensure it's above hero content if overlapping */
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    animation: bounce 2s infinite;
}

body.initial-view .scroll-indicator {
    opacity: 1;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--primary-color);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Scroll Reveal Animations */
.reveal-on-scroll {
    will-change: transform, opacity;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Subtle hover effects for images in sections */
.hero-image img,
.about-image img,
.service img {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover img,
.about-image:hover img,
.service:hover img {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Keyframe animation example for hero text (optional, can be expanded) */
.hero-content h2 {
    animation: fadeInDown 1s ease-out 0.5s backwards;
}

.hero-content p {
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.hero-content .btn-primary {
    animation: fadeInUp 1s ease-out 1.1s backwards;
}

.hero-image {
    animation: fadeIn 1s ease-out 0.5s backwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Bento Box Service Style */
.service.bento-box {
    display: flex;
    flex-direction: column;
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 0;
    height: 100%;
}

.service.bento-box img {
    width: 100%;
    height: 250px;
    min-height: unset;
    object-fit: cover;
    object-position: center;
}

.service.bento-box .service-content {
    width: 100%;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 992px) {
    .service-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .service.bento-box {
        flex-direction: row;
    }
    .service.bento-box img {
        width: 40%;
        height: 100%;
        min-height: 100%;
    }
    .service.bento-box .service-content {
        width: 60%;
    }
}

.service.bento-box h4 {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--secondary-color);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.service.bento-box p {
    font-family: var(--body-font);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

header.scrolled .logo-img {
    height: 50px;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}
header.scrolled .logo-img {
    height: 50px;
}

@media (max-width: 768px) {
    .service.bento-box {
        flex-direction: column;
    }
    
    .service.bento-box img {
        width: 100%;
        height: 250px;
    }
    
    .service.bento-box .service-content {
        width: 100%;
    }
}

/* Font Awesome Fix */
i.fas,
i.fab {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands";
    font-weight: 900; /* Solid and Brands are typically 900 */
}

.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active:after {
    width: 100%;
}

/* Contact Page Specific Styles */
.contact-page {
    padding-top: 150px;
}</pre></body></html>