@import url(https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap);

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #000;
}

.gold-text {
    background: linear-gradient(135deg, #c9a240, #ddc588, #c9a240);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.logo_main {
    text-decoration: none;
}

/* .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    background: #0a0a0a;
    position: relative;
} */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #0a0a0a;
    z-index: 9999;
    border-bottom: 1px solid #eeeeee21;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 30px;
    transition: all 0.3s ease;
}

body {
    padding-top: 70px;
}

.logo {
    letter-spacing: 2px;
    display: flex;
    align-items: baseline;
}

.logo {
    font-size: 14px;
    letter-spacing: 3px;
    margin-left: 6px;
    color: #fff;
}

.logo span {
    font-size: 26px;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    letter-spacing: 3px;
    margin-left: 6px;
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    color: #aaa;
    position: relative;
    transition: 0.3s ease;
}

.nav-links a.active,
.nav-links a:hover {
    background: linear-gradient(135deg, rgb(201, 162, 64), rgb(221, 197, 136), rgb(201, 162, 64));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: linear-gradient(135deg, rgb(201, 162, 64), rgb(221, 197, 136), rgb(201, 162, 64));
    transition: 0.3s ease;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    margin: 4px 0;
    background: linear-gradient(135deg, rgb(201, 162, 64), rgb(221, 197, 136), rgb(201, 162, 64));
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 998;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.footer {
    background: #121212;
    border-top: 1px solid #222;
    padding: 60px 60px 20px;
    color: #8c8c8c;
    font-family: 'Segoe UI', sans-serif;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    margin-bottom: 5px;
}

.footer-logo .gold-text {
    font-size: 26px;
    font-weight: bold;
    font-family: "Playfair Display", Georgia, serif;
    background: linear-gradient(135deg, rgb(201, 162, 64), rgb(221, 197, 136), rgb(201, 162, 64));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo span {
    font-size: 14px;
    margin-left: 6px;
    letter-spacing: 3px;
    color: #fff;
}

.footer p {
    line-height: 1.7;
    max-width: 445px;
}

.footer h4 {
    color: rgb(201, 162, 64);
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer a {
    display: block;
    text-decoration: none;
    color: #8c8c8c;
    margin-bottom: 12px;
    transition: 0.3s ease;
}

.footer a:hover {
    color: #fff;
}

.footer .contact-text {
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    letter-spacing: 1px;
}

.hero {
    position: relative;
    height: 100vh;
    background: url('../images/banner-image.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 60px;
    color: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    padding-left: 100px;
    z-index: 2;
}

.hero-subtitle {
    color: rgb(201, 162, 64);
    letter-spacing: 4px;
    font-size: 13px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 72PX;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
    /* width: 970px; */
    color: #f2f2f2;
}

.hero h1 span {
    background: linear-gradient(135deg, rgb(201, 162, 64), rgb(221, 197, 136), rgb(201, 162, 64));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: #8c8c8c;
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-gold {
    background: linear-gradient(135deg, rgb(201, 162, 64), rgb(221, 197, 136));
    color: #000;
    padding: 14px 28px;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 14px;
    transition: 0.3s ease;
}

.btn-gold:hover {
    border: 1px solid rgb(201, 162, 64);
    background: transparent;
    color: #fff;
    opacity: 0.85;
}

.btn-outline {
    border: 1px solid rgb(201, 162, 64);
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 14px;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: rgb(201, 162, 64);
    color: #000;
}



.light-dark {
    background: #121212;
    color: #fff;
}

.services-section {
    padding: 80px 20px;
    font-family: 'Segoe UI', sans-serif;
}

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

.subtitle {
    color: #C9A240;
    letter-spacing: 4px;
    word-spacing: 1px;
    font-size: 12px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #f2f2f2;
    line-height: 1;
    font-family: "Playfair Display", Georgia, serif;
    margin-bottom: 15px;
}

.description {
    font-size: 20px;
    color: #8c8c8c;
    max-width: 600px;
    margin: auto;
    line-height: 1.6;
}

.divider {
    display: block;
    width: 60px;
    height: 2px;
    background: #9c7021;
    margin: 20px auto 0;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.services-grid-what-they-say {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.service-card {
    border: 1px solid #222;
    padding: 30px;
    transition: all 0.3s ease;
    background: #121212;
}

.service-card:hover {
    border-color: #9c7021;
    transform: translateY(-5px);
}

/* ICON */
.service-card .icon {
    color: #9c7021;
    font-size: 24px;
    margin-bottom: 20px;
}

/* TITLE */
.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* TEXT */
.service-card p {
    color: #8c8c8c;
    line-height: 1.6;
    font-size: 14px;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 32px;
    }
}

/* .service-card:hover {
    box-shadow: 0 0 20px rgba(156, 112, 33, 0.2);
} */

.services-section-new {
    padding: 80px 0;
    background: #0a0a0a;
    color: #fff;
    text-align: center;
}

.subtitle {
    color: #d4af37;
    letter-spacing: 3px;
    font-size: 12px;
}

.section-header h2 {
    font-size: 36px;
    margin: 10px 0;
}

.description {
    color: #aaa;
    max-width: 600px;
    margin: auto;
}

.divider {
    display: block;
    width: 60px;
    height: 2px;
    background: #d4af37;
    margin: 20px auto;
}

.service-card-new {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: left;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
    transition: all 0.4s ease;
}

.service-card-new img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-overlay-new {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.card-tag {
    color: #d4af37 !important;
    font-size: 12px;
    letter-spacing: 3px;
}

.view-projects-btn {
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #d4af37;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    overflow: hidden;
}

.view-projects-btn .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.view-projects-btn:hover .arrow {
    transform: translateX(8px);
}

.card-tag,
.card-title,
.card-desc {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.4s ease;
}

.service-card-new:hover .card-tag,
.service-card-new:hover .card-title,
.service-card-new:hover .card-desc {
    opacity: 1;
    transform: translateY(0);
}

.service-card-new:hover .card-overlay-new {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

.service-card-new:hover .card-tag {
    transition-delay: 0.1s;
}

.service-card-new:hover .card-title {
    transition-delay: 0.2s;
}

.service-card-new:hover .card-desc {
    transition-delay: 0.3s;
}

.service-card-new:hover img {
    transform: scale(1.1);
}

.service-card-new:hover .card-title,
.service-card-new:hover .card-desc {
    opacity: 1;
    transform: translateY(0);
}

.about-section {
    padding: 100px 0;
    color: #fff;
}

.about-wrapper {
    display: flex;
    align-items: stretch;
    gap: 60px;
}

.about-content {
    flex: 1;
}

.about-subtitle {
    color: #d4af37;
    letter-spacing: 4px;
    font-size: 12px;
    margin-bottom: 20px;
}

.about-title {
    font-size: 42px;
    font-family: "Playfair Display", serif;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-text {
    color: #8c8c8c;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 550px;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d4af37;
    text-decoration: none;
    letter-spacing: 2px;
    margin-top: 20px;
    transition: 0.3s ease;
}

.about-link i {
    transition: transform 0.3s ease;
}

.about-link:hover i {
    transform: translateX(8px);
}

.about-image-box {
    flex: 1;
    position: relative;
    height: auto;
}

.about-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.corner-line {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 200px;
    height: 200px;
    border-left: 2px solid #d4af37;
    border-bottom: 2px solid #d4af37;
}

@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
        gap: 40px;
        grid-template-columns: none !important;
    }

    .about-title {
        font-size: 36px;
    }

    .about-text {
        max-width: 100%;
    }

    .corner-line {
        left: 0;
        bottom: -15px;
    }
}

.quote {
    color: #d4af37;
    font-size: 40px;
    margin-bottom: 10px;
}

.client-name {
    font-size: 16px;
    color: #fff;
    margin-bottom: 5px;
}

.client-role {
    font-size: 14px;
    color: #8c8c8c;
}

.cta-section {
    padding: 120px 20px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;

    background: radial-gradient(circle at center,
            rgb(225 174 7 / 4%) 0%,
            rgb(48 40 22 / 47%) 40%,
            rgba(0, 0, 0, 1) 75%);

    --tw-blur: blur(0px);
    --tw-brightness: brightness(1.1);
    --tw-contrast: contrast(1.05);
    --tw-grayscale: grayscale(0);
    --tw-hue-rotate: hue-rotate(0deg);
    --tw-invert: invert(0);
    --tw-saturate: saturate(1.2);
    --tw-sepia: sepia(0.1);
    --tw-drop-shadow: drop-shadow(0 0 40px rgba(212, 175, 55, 0.15));

    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.cta-container {
    max-width: 800px;
    margin: auto;
}

.cta-subtitle {
    color: #d4af37;
    letter-spacing: 4px;
    font-size: 12px;
    margin-bottom: 20px;
}

.cta-title {
    font-size: 52px;
    font-family: "Playfair Display", serif;
    margin-bottom: 20px;
}

.cta-text {
    color: #8c8c8c;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #c9a240, #d8bb74, #c9a240);
    color: #000;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cta-btn i {
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(8px);
}

.cta-btn:hover {
    opacity: 0.9;
}

.contact-banner {
    background: #000;
    padding: 60px 0 30px;
    color: #fff;
}

.portfolio-banner {
    background: #0a0a0a;
    padding: 60px 0 30px;
    color: #fff;
}

.about-banner {
    background: #0a0a0a;
    padding: 100px 0;
    color: #fff;
}

.blog-banner {
    background: #0a0a0a;
    padding: 70px 0 40px;
    color: #fff;
}

.service-banner {
    background: #0a0a0a;
    padding: 120px 0 5px;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.contact-subtitle {
    color: #c9a240;
    letter-spacing: 6px;
    font-size: 12px;
    margin-bottom: 10px;
}

.contact-heading {
    font-size: 72px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.gold-text {
    background: linear-gradient(135deg, #c9a240, #ddc588, #c9a240);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-desc {
    font-size: 20px;
    color: #9aa0a6;
    max-width: 600px;
}



.contact-section {
    background: #000;
    color: #fff;
    padding: 50px 0;
}

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

/* LEFT */
.contact-left {
    flex: 1.2;
}

.desc {
    color: #aaa;
    margin-bottom: 40px;
}

.form-group label {
    display: block;
    font-size: 12px;
    margin-bottom: 8px;
    color: #aaa;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: #121212;
    border: 1px solid #222;
    color: #fff;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #c9a74d;
}

textarea {
    height: 120px;
    resize: none;
}

/* RIGHT */
.contact-right {
    flex: 1;
}

.contact-right h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.info {
    margin-bottom: 20px;
}

.info .label {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 5px;
}

.office {
    margin-top: 40px;
    padding: 20px;
    background: #121212;
    border: 1px solid #222;
}

.office h4 {
    margin-bottom: 10px;
}

.office p {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 10px;
}

.cta-section1 {
    background: #000;
    padding: 120px 20px;
    text-align: center;
}

.cta-heading {
    font-size: 48px;
    color: #fff;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.cta-subtext {
    color: #9aa0a6;
    font-size: 18px;
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #c9a240, #d8bb74, #c9a240);
    color: #000;
    font-size: 14px;
    letter-spacing: 2px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn span {
    margin-left: 10px;
}

.cta-btn:hover {
    transform: translateY(-3px);
}


.stars {
    color: #c9a240;
    font-size: 18px;
    margin-bottom: 15px;
}

.review {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 5px;
}

.service-card span {
    font-size: 13px;
    color: #777;
}

.brands-section {
    background: #000;
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.brand-card {
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 25px;
    text-align: center;
    color: #8C8C8C;
    font-size: 18px;
    background-color: #12121299;
    font-family: 'Playfair Display', serif;
    background: transparent;
    transition: all 0.3s ease;
}

.brand-card:hover {
    color: #fff;
    border-color: rgba(201, 162, 64, 0.6);
    transform: translateY(-3px);
}

.vision-section {
    background: #000;
    padding: 120px 20px;
    text-align: center;
}

.vision-label {
    color: #c9a240;
    letter-spacing: 5px;
    font-size: 12px;
    margin-bottom: 20px;
}

.vision-heading {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.divider {
    width: 60px;
    height: 2px;
    background: #c9a240;
    margin: 0 auto 30px;
}

.vision-text {
    max-width: 800px;
    margin: auto;
    color: #9aa0a6;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.vision-btn {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #c9a240, #ddc588, #c9a240);
    color: #000;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    transition: 0.3s ease;
}

.vision-btn span {
    margin-left: 10px;
}

.vision-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 162, 64, 0.3);
}

.stats-section {
    background: #121212;
    padding: 100px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    color: #fff;
}

.stat-item .icon {
    font-size: 28px;
    color: #c9a240;
    margin-bottom: 20px;
}

.stat-item h3 {
    font-size: 36px;
    font-family: 'Playfair Display', serif;
    color: #d6b76a;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 14px;
    letter-spacing: 2px;
    color: #9aa0a6;
}

.about-section {
    background: #0a0a0a;
    padding: 100px 0;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content h2 {
    font-size: 30px;
    color: #fff;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.about-content p {
    color: #8c8c8c;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.icon {
    color: #c9a240;
}

.nm-cta-section {
    background: #121212;
    padding: 120px 20px;
    text-align: center;
}

.nm-container {
    max-width: 900px;
    margin: auto;
}

.nm-cta-heading {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.nm-cta-subtext {
    color: #8c8c8c;
    font-size: 20px;
    margin-bottom: 40px;
}

.nm-cta-button {
    display: inline-block;
    padding: 16px 42px;
    background: linear-gradient(135deg, #c9a240, #ddc588, #c9a240);
    color: #000;
    font-size: 14px;
    letter-spacing: 2px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nm-cta-button span {
    margin-left: 10px;
}

.nm-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(201, 162, 64, 0.3);
}




.services-showcase {
    background: #0a0a0a;
    padding: 80px 0 0px;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #eeeeee17;
    margin-bottom: 40px;
}

.service-row:hover {
    border-color: #c9a240;
}

.service-row.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-row.reverse .service-image {
    order: 2;
}

.service-row.reverse .service-content {
    order: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 50px;
    color: #fff;
}

.service-content .icon {
    color: #c9a240;
    font-size: 22px;
    margin-bottom: 20px;
}

.service-content h3 {
    font-size: 30px;
    font-weight: 600;
    color: #f2f2f2;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

.service-content p {
    color: #9aa0a6;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-content ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;
    margin-bottom: 25px;
    padding: 0;
    list-style: none;
}

.service-content ul li {
    position: relative;
    padding-left: 15px;
    font-size: 14px;
    color: #fff !important;
}

.service-content ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #c9a240;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

.nm-blog-section {
    background: #0a0a0a;
    padding: 80px 20px;
}

.nm-container {
    max-width: 1200px;
    margin: auto;
}

.nm-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.nm-blog-card {
    cursor: pointer;
    transition: 0.4s ease;
}

.nm-blog-img {
    overflow: hidden;
}

.nm-blog-img img {
    width: 100%;
    height: 300px;
    display: block;
    transition: 0.5s ease;
}

.nm-blog-content {
    padding-top: 20px;
}

.nm-blog-category {
    color: #c9a240;
    font-size: 12px;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.nm-blog-title {
    color: #fff;
    font-size: 22px;
    font-family: 'Playfair Display', serif;
    line-height: 1.4;
    margin-bottom: 15px;
}

.nm-blog-meta {
    color: #9aa0a6;
    font-size: 14px;
    display: flex;
    gap: 10px;
}

.nm-blog-card:hover img {
    transform: scale(1.08);
}

.nm-blog-card:hover .nm-blog-title {
    color: #c9a240;
}

@media (max-width: 992px) {
    .nm-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .nm-blog-grid {
        grid-template-columns: 1fr;
    }
}

.hyper-link {
    text-decoration: none;
}

.blog-content {
    padding: 0px 20px 40px;
    color: #8c8c8c;
    line-height: 1.8;
}



.blog-hero {
    position: relative;
    padding: 160px 20px 0px;
    color: #fff;
    background: url('../images/lanipill.jpg') center/cover no-repeat;
    overflow: hidden;
}

.blog-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;

    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.5) 40%,
            rgba(0, 0, 0, 0.85) 75%,
            rgba(0, 0, 0, 1) 100%);
}

.container-blog {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.back-link {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    color: #c9a240;
    text-decoration: none;
    margin-bottom: 30px;
}

.blog-para {
    font-size: 18px;
}

.category {
    display: block;
    font-size: 12px;
    letter-spacing: 4px;
    color: #c9a240;
    margin-bottom: 20px;
}

.blog-title {
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #eaeaea;
}

.service-title {
    font-size: 72px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #eaeaea;
}

.breard_para {
    color: #8c8c8c;
    max-width: 60%;
    font-size: 20px;
}

.meta {
    font-size: 14px;
    color: #aaa;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.meta .author {
    color: #fff;
    font-weight: 500;
}

.divider1 {
    margin-top: 30px;
    height: 1px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.our-process {
    background-color: #121212;
    color: #fff;
}

.sub-heading {
    color: #c9a84f;
    letter-spacing: 4px;
    font-size: 12px;
    margin-bottom: 10px;
}

.main-heading {
    font-size: 48px;
    font-weight: 600;
}

.process-card {
    position: relative;
    background: #0c0c0c;
    border: 1px solid #1f1f1f;
    padding: 30px 10px 30px;
    min-height: 220px;
    transition: 0.3s ease;
}

.process-card:hover {
    border-color: #c9a84f;
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    font-family: 'Playfair Display', Georgia, serif;
    top: 20px;
    right: 25px;
    font-size: 60px;
    font-weight: 700;
    color: rgba(201, 168, 79, 0.15);
}

.process-card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    margin-top: 65px;
}

.process-card p {
    color: #9a9a9a;
    font-size: 12px;
    line-height: 1.6;
}

.what-we-deliver {
    background-color: #000;
    color: #fff;
}

.section-title {
    font-size: 48px;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    margin-bottom: 20px;
}

.highlight {
    color: #c9a84f;
}

.section-desc {
    color: #b0b0b0;
    font-size: 18px;
    line-height: 1.7;
}

.deliver-box {
    background: #111;
    border: 1px solid #1f1f1f;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 16px;
    transition: 0.3s ease;
}

.deliver-box:hover {
    border-color: #c9a84f;
    transform: translateX(5px);
}

.check-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    margin-right: 15px;
    border-radius: 50%;
    border: 1px solid #c9a84f;
    color: #c9a84f;
    font-size: 14px;
}

.nx-cta-wrap {
    background-color: #000;
    color: #fff;
    padding: 100px 0;
}

.nx-cta-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
}

.nx-cta-text {
    color: #8c8c8c;
    font-size: 20px;
    margin-bottom: 40px;
}

.nx-cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.nx-btn {
    padding: 14px 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.nx-btn-gold {
    background: #c9a84f;
    color: #000;
}

.nx-btn-gold:hover {
    background: #b8963f;
    color: #000;
}

.nx-btn-outline {
    border: 1px solid #c9a84f44;
    color: #fff;
}

.nx-btn-outline:hover {
    border: 1px solid #a47800;
}

.nx-btn span {
    margin-left: 8px;
    transition: 0.3s;
}

.nx-btn:hover span {
    transform: translateX(5px);
}