/* RESET */
/* ================= GLOBAL ================= */

:root {
    --primary: #c6a47e;   /* gold */
    --dark: #0e0e0e;
    --white: #ffffff;
    --text-light: #cfcfcf;
    --glass: rgba(255,255,255,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--dark);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
}
.hero {
    margin-top: 0;
    padding-top: 0;
}

/* ================= HERO ================= */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* SLIDER */
.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

/* DARK OVERLAY */
.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.2)
    );
}

/* ================= HERO TEXT ================= */
.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 600px;
}

/* HEADING */
.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* GOLD TEXT */
.hero-content h1 span {
    color: var(--primary);
}

/* SUBTEXT */
.hero-content p {
    margin-top: 15px;
    font-size: 18px;
    color: var(--text-light);
}

/* ================= ARROWS ================= */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--glass);
    backdrop-filter: blur(6px);
    color: #fff;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    z-index: 3;
}

.arrow:hover {
    background: rgba(255,255,255,0.3);
}

.arrow.left { left: 20px; }
.arrow.right { right: 20px; }

/* ================= DOTS ================= */
.dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.dots span {
    height: 10px;
    width: 10px;
    margin: 5px;
    background: #777;
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
}

.dots .active {
    background: var(--primary);
}

/* ================= FEATURES ================= */
.features {
    display: flex;
    justify-content: space-around;
    padding: 30px 25%;
    background: #121212;
    text-align: center;
}

.feature i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 8px;
}

.feature p {
    font-weight: 500;
    color: var(--white);
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 992px) {

    .hero-content {
        left: 6%;
        max-width: 500px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .features {
        flex-direction: column;
        gap: 20px;
        padding: 30px 10%;
    }
}

/* MOBILE */
@media (max-width: 600px) {

    .hero {
        height: 85vh;
    }

    .hero-content {
        top: 60%; /* 🔥 pushes text down */
        left: 5%;
        transform: translateY(-50%);
        max-width: 90%;
    }

    .hero-content h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 14px;
    }

    .arrow {
        padding: 8px 10px;
    }
}

/* ================= ANIMATION ================= */
.hero-content {
    animation: fadeUp 1s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(-40%);
    }
    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}


/*   welcomeee */
/* SECTION */
/* ================= WELCOME ================= */
.welcome {
    background: #0e0e0e; /* dark luxury bg */
    padding: 60px 8%;
}

/* LAYOUT */
.welcome-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* LEFT */
.welcome-left {
    flex: 1;
}

/* TAG */
.welcome-tag {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.welcome-tag span {
    color: #c6a47e; /* gold */
    font-weight: 600;
    letter-spacing: 1px;
}

.welcome-tag .line {
    width: 60px;
    height: 2px;
    background: #c6a47e;
}

/* HEADING */
.welcome-left h2 {
    font-size: 42px;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

/* TEXT */
.welcome-left p {
    color: #cfcfcf;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* FEATURE BOXES */
.welcome-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.wf-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #1a1a1a;
    border-radius: 6px;
    font-size: 14px;
    color: #fff;
    transition: 0.3s;
}

.wf-item:hover {
    background: #c6a47e;
    color: #000;
}

.wf-item i {
    color: #c6a47e;
}

.wf-item:hover i {
    color: #000;
}

/* RIGHT */
.welcome-right {
    flex: 1;
    position: relative;
}

/* MAIN IMAGE */
.main-img img {
    width: 100%;
    border-radius: 8px;
}

/* SMALL SLIDER */
.small-slider {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 240px;
    height: 160px;
    overflow: hidden;
    border-radius: 8px;
    background: #111;
    border: 4px solid #c6a47e;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* SLIDES */
.small-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.5s;
}

.small-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.small-slide.active {
    opacity: 1;
}

/* ARROWS */
.small-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}

.small-arrow.left { left: 5px; }
.small-arrow.right { right: 5px; }

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .welcome-container {
        flex-direction: column;
        text-align: center;
    }

    .welcome-left h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {

    .welcome-right {
        width: 100%;
    }

    .small-slider {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
        width: 100%;
        height: 180px;
    }

    .welcome-features {
        justify-content: center;
    }
}
/* services */
.services {
    padding: 70px 8%;
    background: #ffffff;
}

/* TITLE */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 36px;
    color: #0f5c63;
}

.section-title p {
    color: #666;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

/* IMAGE */
.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: 0.4s;
}

/* OVERLAY */
.service-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(
        to top,
        rgba(15, 92, 99, 0.95),
        rgba(15, 92, 99, 0.6),
        transparent
    );
    color: #fff;
}

/* TEXT */
.service-content h3 {
    margin-bottom: 5px;
}

.service-content p {
    font-size: 14px;
    opacity: 0.9;
}

/* HOVER EFFECT */
.service-card:hover img {
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= SERVICES ================= */
.services {
    padding: 60px 8%;
    background: #0e0e0e; /* dark premium bg */
}

/* TITLE */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 38px;
    color:  #c6a47e;
    font-family: 'Playfair Display', serif;
}

.section-title p {
    color: #bfbfbf;
    margin-top: 8px;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    background: #111;
}

/* IMAGE */
.service-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.5s ease;
}

/* OVERLAY (DARK → GOLD TOUCH) */
.service-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95),
        rgba(0, 0, 0, 0.7),
        rgba(198, 164, 126, 0.15),
        transparent
    );

    color: #fff;
}

/* TEXT */
.service-content h3 {
    margin-bottom: 6px;
    font-size: 20px;
    color: #ffffff;
}

.service-content p {
    font-size: 14px;
    color: #cfcfcf;
}

/* HOVER EFFECT */
.service-card:hover img {
    transform: scale(1.08);
}

/* GOLD HOVER EFFECT */
.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    transition: 0.3s;
    border-radius: 10px;
}

.service-card:hover::after {
    border-color: #c6a47e; /* gold border */
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= WORK PROCESS ================= */
.process-section {
    padding: 50px 6%;
    background: #0e0e0e; /* dark bg */
    color: #ffffff;
}

/* TITLE */
.process-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
}

/* CONTAINER */
.process-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* LINE */
.process-container::before {
    content: "";
    position: absolute;
    top: 42px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: rgba(198, 164, 126, 0.3); /* gold line */
}

/* ITEM */
.process-item {
    text-align: center;
    width: 16%;
}

/* CIRCLE */
.circle {
    width: 85px;
    height: 85px;
    background: #1a1a1a; /* dark circle */
    border-radius: 50%;
    margin: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #c6a47e; /* gold border */
    transition: 0.3s;
}

/* ICON */
.circle i {
    font-size: 24px;
    color: #c6a47e; /* gold icon */
}

/* STEP NUMBER */
.circle span {
    position: absolute;
    left: -8px;
    top: 32px;
    background: #c6a47e;
    color: #000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 12px;
    line-height: 24px;
}

/* HOVER */
.circle:hover {
    transform: scale(1.08);
    background: #c6a47e;
}

.circle:hover i {
    color: #000;
}

/* TEXT */
.process-item h3 {
    margin-top: 15px;
    font-size: 16px;
    color:  #c6a47e;
}

.process-item p {
    font-size: 13px;
    color: #bfbfbf;
    margin-top: 5px;
}

/* ================= PROJECTS ================= */
.projects {
    padding: 60px 6%;
    background: #0e0e0e;
}

/* TITLE */
.section-title {
    text-align: center;
    font-size: 30px;
    margin-bottom: 30px;
    color: #c6a47e;
    font-family: 'Playfair Display', serif;
}

/* TABS */
.project-tabs {
    text-align: center;
    margin-bottom: 30px;
}

.project-tabs button {
    border: 1px solid transparent;
    background: transparent;
    padding: 10px 18px;
    margin: 5px;
    cursor: pointer;
    font-size: 14px;
    color: #cfcfcf;
    border-radius: 6px;
    transition: 0.3s;
}

/* ACTIVE */
.project-tabs button.active {
    background: #c6a47e;
    color: #000;
}

/* HOVER */
.project-tabs button:hover {
    border-color: #c6a47e;
    color: #c6a47e;
}

/* GRID */
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* CARD */
.project-card {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

/* IMAGE */
.project-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: 0.5s;
}

/* HOVER ZOOM */
.project-card:hover img {
    transform: scale(1.1);
}

/* DARK GOLD OVERLAY */
.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    transition: 0.3s;
}

.project-card:hover::after {
    background: rgba(198, 164, 126, 0.25);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .process-container {
        flex-wrap: wrap;
        gap: 25px;
        justify-content: center;
    }

    .process-item {
        width: 45%;
    }

    .process-container::before {
        display: none;
    }

    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .project-grid {
        grid-template-columns: 1fr;
    }
}

/*** why choose us ***/
/* ================= STATS ================= */
.stats {
    background: #0e0e0e;
    padding: 60px 8%;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    text-align: center;
    gap: 30px;
}

/* BOX */
.stat-box {
    flex: 1;
    padding: 25px;
    border-radius: 10px;
    background: #151515;
    transition: 0.3s;
}

/* HOVER */
.stat-box:hover {
    transform: translateY(-5px);
    background: #1a1a1a;
}

/* NUMBER */
.stat-box h2 {
    font-size: 36px;
    color: #c6a47e; /* gold */
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

/* TEXT */
.stat-box p {
    color: #cfcfcf;
    font-size: 14px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .stats-container {
        flex-wrap: wrap;
    }

    .stat-box {
        width: 45%;
    }
}

@media (max-width: 600px) {
    .stat-box {
        width: 100%;
    }
}

/*******testimonials ******/
/* ================= TESTIMONIALS ================= */
.testimonials {
    padding: 70px 8%;
    background: #0e0e0e;
}

/* TITLE */
.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #c6a47e;
    font-family: 'Playfair Display', serif;
}

/* CONTAINER */
.testimonial-container {
    display: flex;
    gap: 25px;
}

/* CARD */
.testimonial-card {
    flex: 1;
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

/* HOVER */
.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
}

/* TEXT */
.testimonial-card p {
    font-size: 14px;
    color: #cfcfcf;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* CLIENT */
.client {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* IMAGE */
.client img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

/* NAME */
.client h4 {
    font-size: 14px;
    color: #ffffff;
}

/* ROLE */
.client span {
    font-size: 12px;
    color: #c6a47e; /* gold */
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .testimonial-container {
        flex-direction: column;
    }
}







/**** faq *******/
/* ================= FAQ ================= */
.faq {
    padding: 60px 8%;
    background: #0e0e0e;
}

/* CONTAINER */
.faq-container {
    max-width: 800px;
    margin: auto;
}

/* ITEM */
.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* QUESTION */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 16px;
    text-align: left;
    padding: 15px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* GOLD ICON */
.faq-question span {
    color: #c6a47e;
    font-size: 18px;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-answer p {
    padding-bottom: 15px;
    color: #cfcfcf;
    font-size: 14px;
    line-height: 1.6;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/*** cta****/
/* ================= CTA ================= */
.cta {
    padding: 60px 8%;
    background: linear-gradient(
        135deg,
        #0e0e0e,
        #1a1a1a
    );
}

/* CONTAINER */
.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT */
.cta-content {
    flex: 1;
}

/* HEADING */
.cta-content h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.cta-content h2 span {
    color: #c6a47e; /* gold */
}

/* TEXT */
.cta-content p {
    color: #cfcfcf;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* BUTTON */
.cta-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #c6a47e;
    color: #0e0e0e;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #ffffff;
    color: #000;
}

/* RIGHT IMAGE */
.cta-image {
    flex: 1;
    text-align: right;
}

.cta-image img {
    max-width: 350px;
    width: 100%;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-image {
        text-align: center;
    }

    .cta-content h2 {
        font-size: 26px;
    }
}
.container {
    max-width: 1200px;   /* 🔥 IMPORTANT */
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cta {
    display: flex;
    align-items: center;
    justify-content: center;

    background: none;   /* ❌ remove black box */
    padding: 0;         /* ❌ remove extra space */
}

/**** projects ********8/
/* SECTION */
.projects {
    padding: 70px 8%;
    background: #0e0e0e; /* deep black */
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
    color: #c6a47e;
    letter-spacing: 1px;
}

/* FILTER TABS */
.project-tabs {
    text-align: center;
    margin-bottom: 40px;
}

.project-tabs button {
    padding: 10px 18px;
    margin: 5px;
    border: 1px solid #c6a47e;
    background: transparent;
    color: #c6a47e;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}

/* Active + Hover */
.project-tabs .active,
.project-tabs button:hover {
    background: #c6a47e;
    color: #0e0e0e;
}

/* GRID */
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.project-card {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    border: 1px solid rgba(198,164,126,0.2); /* soft gold border */
}

/* IMAGE */
.card-image {
    position: relative;
}

.card-image img {
    width: 100%;
    display: block;
    transition: 0.5s;
}

/* OVERLAY */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.75);
    color: #fff;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    opacity: 0;
    transition: 0.4s;
}

/* TEXT */
.overlay h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #ffffff;
}

.overlay p {
    color: #c6a47e; /* gold */
    font-weight: 500;
}

/* HOVER EFFECT */
.project-card:hover img {
    transform: scale(1.1);
}

.project-card:hover .overlay {
    opacity: 1;
}

/* LOAD MORE BUTTON */
#loadMoreBtn {
    display: none;
    margin: 40px auto;
    padding: 12px 25px;
    background: transparent;
    color: #c6a47e;
    border: 1px solid #c6a47e;
    cursor: pointer;
    transition: 0.3s;
}

#loadMoreBtn:hover {
    background: #c6a47e;
    color: #0e0e0e;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .project-grid {
        grid-template-columns: 1fr;
    }
}

.project-card {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
                opacity 0.4s ease;
}

/* hidden items */
.project-card.hide {
    opacity: 0;
    pointer-events: none;
}
.button-container {
    text-align: center;
}

#loadMoreBtn {
    display: inline-block;   /* IMPORTANT: prevents full width */
    padding: 12px 28px;
    
    background: #b8956f;
    color: #fff;

    font-size: 15px;
    font-weight: 500;

    border-radius: 8px;
    text-decoration: none;

    transition: 0.3s ease;
}

/* hover */
#loadMoreBtn:hover {
    background: #a07d58;
    transform: translateY(-2px);
}

.wf-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}