/* ===== CSS VARIABLES ===== */


:root {
    /* FONTS */
    --font-heading: "Nocturnal-Light", "Nocturnal", serif;
    --font-body: "GeneralSans-Regular", "GeneralSans", sans-serif;
    --font-ui: "GeneralSans-Medium", "GeneralSans", sans-serif;
    --font-bold-num: "Nocturnal-SemiBold", "Nocturnal", serif;
    --h1: 32px;
    --h2: 30px;
    --h3: 18px;
    --h-eyebrow: 11px;
    --text-body: 16px;
    --text-small: 13px;
    --text-xs: 11px;
    --btn-md: 12px;
    --btn-sm: 11px;
    --ls-heading: 2.5px;
    --ls-eyebrow: 3.5px;
    --ls-btn: 1.8px;
    --lh-heading: 1.2;
    --lh-body: 1.65;
    --white: #ffffff;
    --black: #000000;
    --light-blue: #c1d3ee;
    --rose: #8f4555;
}

/* ─── MOBILE OVERRIDES ─── */
@media (max-width: 768px) {
    :root {
        --h1: 24px;
        --h2: 20px;
        --h3: 16px;
        --text-body: 14px;
        --text-small: 12px;
    }
}

.faq-cta-btn {
    white-space: nowrap
}

.faq-cta-btn:hover .faq-arrow {
    transform: translateX(6px)
}

.faq-answer,
.faq-image-wrap,
.faq-item {
    overflow: hidden
}


/* ================================================================
   BANNER SECTION
================================================================ */
.banner-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background-image: url("/assets/images/frontend/career/banner-carrer.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 0;
}

.banner-section .container {
    max-width: 950px;
    margin: 0 auto;
    width: 100%;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.banner-content h1 {
    font-size: clamp(26px, 5vw, 54px);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 400;
    margin-bottom: 18px;
}

.banner-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.90);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.7;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding: 13px 36px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 40px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.35s ease, border-color 0.35s ease;
}

.banner-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.77, 0, 0.18, 1);
    z-index: -1;
}

.banner-btn:hover {
    color: var(--black);
    border-color: var(--black);
}

.banner-btn:hover::before {
    transform: scaleX(1);
}

@media (max-width: 992px) {
    .banner-section .container {
        padding: 0 30px;
    }

    .banner-content h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 30px;
    }
    .banner-section{
        max-height:60vh;
    }
}

@media (max-width: 480px) {
    .banner-content h1 {
        font-size: 22px;
    }

    .banner-btn {
        padding: 11px 24px;
        font-size: 12px;
    }
}


/* ================================================================
   OVERVIEW SECTION
================================================================ */
.overview-section {
    background: var(--light-blue);
    padding: 0 0 70px;
}

.overview-section .container {
    max-width: 950px;
    margin: 0 auto;
    width: 100%;
    padding: 0 24px;
}

.overview-image {
    margin-top: -180px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.overview-image img {
    width: 100%;
    display: block;
    height: 400px;
    /*object-fit: cover;*/
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.25);
}

.overview-content h2 {
    font-size: 30px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    margin-bottom: 18px;
}

.overview-content p {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.88);
    line-height: 1.95;
}

@media (max-width: 992px) {
    .overview-section .container {
        padding: 0 30px;
    }

    .overview-image {
        margin-top: -130px;
    }
}

@media (max-width: 768px) {
    .overview-section {
        padding-bottom: 40px;
    }

    .overview-image {
        margin-top: -90px;
        margin-bottom: 30px;
    }

    .overview-image img {
        height: 260px;
    }
}

@media (max-width: 480px) {
    .overview-image {
        margin-top: -60px;
    }

    .overview-image img {
        height: 200px;
    }
}

.overview-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-top: 32px;
}

@media (max-width: 480px) {
    .overview-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
}

/* ================================================================
   SLIDER SECTION  (Signature Features)
================================================================ */
.slider-section {
    padding: 70px 0;
    background: var(--white);
    overflow: hidden;
}

.slider-section .container {
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
}

.slider-heading {
    margin-bottom: 40px;
}

.slider-heading h2 {
    font-size: 30px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}

.projectSwiper {
    width: 100%;
    overflow: hidden;
}

.projectSwiper .swiper-slide {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.projectSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.projectSwiper .swiper-slide:hover img {
    transform: scale(1.05);
}

/* Bottom overlay + text — sirf neeche */
.slide-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 60px 20px 22px;
    background: linear-gradient(to top,
            rgba(139, 32, 30, 0.92) 0%,
            rgba(141, 26, 22, 0.75) 40%,
            rgba(0, 0, 0, 0.0) 100%);
}


.slide-bottom h3 {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 992px) {
    .slider-section .container {
        padding: 0 30px;
    }

    .projectSwiper .swiper-slide {
        height: 340px;
    }
}

@media (max-width: 768px) {
    .slider-section {
        padding: 40px 0;
    }

    .projectSwiper .swiper-slide {
        height: auto;
    }
}

@media (max-width: 480px) {
    .projectSwiper .swiper-slide {
        height: auto;
    }

    .slide-bottom h3 {
        font-size: 12px;
        letter-spacing: 1px;
    }
}

.projectSwiper .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.projectSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--light-blue);
    opacity: 1;
    transition: 0.3s;
}

.projectSwiper .swiper-pagination-bullet-active {
    background: #8f4555;
    width: 22px;
    border-radius: 10px;
}


/* ================================================================
   KEY AMENITIES SECTION
================================================================ */
/* ================================================================
   KEY AMENITIES SECTION
================================================================ */
.amenities-section {
    padding: 70px 0;
    background: var(--light-blue);
    position: relative;
}

.amenities-section .container {
    max-width: 950px;
    margin: 0 auto;
    width: 100%;
    padding: 0 24px;
    position: relative;
}

.amenities-heading {
    margin-bottom: 40px;
}

.amenities-heading h2 {
    font-size: 30px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}

.amenities-slider-wrap {
    position: relative;
}

.amenitiesSwiper {
    width: 100%;
    overflow: hidden;
}

/* ================= CARD ================= */
.amenity-card {
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: #f0f0f0;
}

.amenity-left {
    flex: 0 0 44%;
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    background: var(--white);
}

.amenity-number {
    font-size: 40px;
    font-weight: 700;
    color: #cecccc73;
    line-height: 1;
}

.amenity-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    line-height: 1.55;
}

.amenity-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    margin: -10px -10px -10px 0;
}

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

/* ================= ARROWS ================= */
.amenities-prev,
.amenities-next {
    position: absolute;
    top: 40%;
    transform: translateY(20px);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #ccc;
    background: var(--white);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.amenities-prev {
    left: -58px;
}

.amenities-next {
    right: -58px;
}

.amenities-prev:hover,
.amenities-next:hover {
    background: var(--rose);
    border-color: var(--rose);
    color: var(--white);
}

/* ================= PAGINATION ================= */

/* default hidden (desktop) */
.amenitiesSwiper .swiper-pagination {
    display: none;
}

/* dots style */
.amenitiesSwiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 4px !important;
}

.amenitiesSwiper .swiper-pagination-bullet-active {
    background: var(--rose);
    width: 18px;
    border-radius: 10px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .amenities-section .container {
        padding: 0 20px;
        max-width: 100%;
    }

    .amenity-left {
        padding: 32px 28px;
    }

    .amenity-number {
        font-size: 32px;
    }

    .amenities-prev {
        left: -44px;
    }

    .amenities-next {
        right: -44px;
    }
}

@media (max-width: 768px) {
    .amenities-section {
        padding: 40px 0;
    }

    .amenity-card {
        height: 200px;
    }

    .amenity-left {
        padding: 24px 20px;
        gap: 12px;
    }

    .amenity-number {
        font-size: 26px;
    }

    .amenities-prev,
    .amenities-next {
        width: 36px;
        height: 36px;
    }

    .amenities-prev {
        left: -20px;
    }

    .amenities-next {
        right: -20px;
    }
}

@media (max-width: 480px) {

    /* arrows hide */
    .amenities-prev,
    .amenities-next {
        display: none;
    }

    /* pagination show */
    .amenitiesSwiper .swiper-pagination {
        display: block;
        position: relative;
        margin-top: 15px;
        text-align: center;
    }

    .amenity-card {
        flex-direction: column;
        height: auto;
    }

    .amenity-right {
        height: 180px;
        margin: 0;
    }

    .amenity-left {
        flex: none;
    }
}

/* ================================================================
   FLOOR PLAN SECTION
================================================================ */
.project-floor-plan {
    padding: 70px 0;
    background: var(--white);
}

.project-floor-plan .container {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    padding: 0 24px;
}

.project-floor-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.project-floor-left {
    max-width: 350px;
}

.project-floor-title {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--black);
    text-transform: uppercase;
}

.project-floor-buttons {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.project-floor-right img {
    max-width: 650px;
    width: 100%;
    height: auto;
    border: 0.65px solid #c7c7c7
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 36px;
    border-radius: 30px;
    border: 2px solid var(--black);
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.35s ease;
}

.btn-outline::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--black);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
    z-index: -1;
}

.btn-outline:hover {
    color: var(--white);
}

.btn-outline:hover::before {
    transform: scaleX(1);
}

@media (max-width: 992px) {
    .project-floor-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .project-floor-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .project-floor-left {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .project-floor-plan {
        padding: 40px 0;
    }
}


/* =====================================================
   FAQ SECTION
   ===================================================== */
.faq-image-placeholder,
.faq-image-wrap img {
    height: 600px;
    width: 100%
}

.faq-section {
    background: #c1d3ee;
    padding: 80px 100px;
    display: flex;
    align-items: center
}

.faq-inner {
    max-width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    padding: 0 50px
}


.faq-image-wrap img {
    object-fit: cover;
    display: block
}

.faq-image-placeholder {
    background: linear-gradient(135deg, #b0c4de 0, #8fadd4 50%, #6d94c8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: var(--text-body);
    letter-spacing: 2px
}

.faq-right {
    display: flex;
    flex-direction: column
}

/* ── FAQ TITLE ── */
.faq-title {
    font-family: var(--font-heading);
    font-size: var(--h2);
    font-weight: 400;
    letter-spacing: var(--ls-heading);
    color: #2c2c2c;
    margin-bottom: 36px;
    line-height: var(--lh-heading)
}

.faq-list {
    border-top: 1px solid #b0bad0
}

.faq-item {
    border-bottom: 1px solid #8f4555;
    transition: background .3s
}

.faq-question {
    width: 100%;
    background: 0 0;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    text-align: left;
    gap: 16px
}

/* ── FAQ QUESTION TEXT ── */
.faq-question span {
    font-family: var(--font-ui);
    font-size: var(--text-body);
    font-weight: 400;
    color: #2c2c2c;
    line-height: 1.4;
    flex: 1
}

.faq-cta,
.faq-icon {
    display: flex;
    align-items: center
}

.faq-icon {
    justify-content: center;
    transition: .35s;
    flex-shrink: 0;
    background: 0 0
}

.faq-chevron {
    width: 8px;
    height: 8px;
    border-right: 2px solid #444;
    border-bottom: 2px solid #444;
    transform: rotate(45deg);
    transition: transform .35s, border-color .3s
}

.faq-item.open .faq-chevron {
    transform: rotate(-135deg)
}

.faq-question:hover .faq-icon {
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1)
}

.faq-answer {
    max-height: 0;
    transition: max-height .45s cubic-bezier(.4, 0, .2, 1), opacity .35s, padding .35s;
    opacity: 0;
    padding-bottom: 0
}

.faq-item.open .faq-answer {
    max-height: 300px;
    opacity: 1;
    padding-bottom: 18px
}

/* ── FAQ ANSWER TEXT ── */
.faq-answer p {
    font-family: var(--font-body);
    font-size: var(--text-small);
    color: #555;
    line-height: var(--lh-body);
    padding-right: 40px
}

.faq-cta {
    justify-content: space-between;
    margin-top: 36px;
    gap: 20px
}

.about__play,
.faq-cta-btn {
    display: flex;
    align-items: center;
    cursor: pointer
}

/* ── FAQ CTA TEXT ── */
.faq-cta-text {
    font-family: var(--font-ui);
    font-size: var(--text-body);
    color: #2c2c2c;
    font-weight: 600
}

/* ── FAQ CTA BTN ── */
/* ── FAQ CTA BTN ── */
.faq-cta-btn {
    font-family: var(--font-ui);
    font-size: var(--btn-md);
    letter-spacing: var(--ls-btn);
    background: #8b4040;
    color: #fff;
    border: none;
    padding: 12px 36px;
    gap: 16px;
    border-radius: 40px;
    white-space: nowrap;
    /*min-width: 200px;*/
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: transform .2s, color .35s ease;
    z-index: 1;
}

/* Black fill layer */
.faq-cta-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
    z-index: -1;
}

/* Hover */
.faq-cta-btn:hover {
    transform: translateX(3px);
    color: #fff;
}

.faq-cta-btn:hover::before {
    transform: scaleX(1);
}

.faq-arrow {
    transition: transform .3s
}

@media (max-width: 1024px) {
    .faq-section {
        padding: 60px 40px
    }

    .faq-inner {
        gap: 50px
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 50px 24px
    }

    .faq-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0
    }

    .faq-image-placeholder,
    .faq-image-wrap img {
        height: 320px
    }

    .faq-title {
        margin-bottom: 24px
    }

    .faq-cta {
        flex-direction: column;
        align-items: flex-start
    }

    .faq-answer p {
        padding-right: 0
    }
}

@media (max-width: 480px) {
    .faq-question span {
        font-size: 13px
    }
}


/* ================================================================
   EXPLORE SIMILAR PROJECTS
================================================================ */
.explore-section {
    padding: 70px 0;
    background: var(--white);
    overflow: hidden;
}

.explore-section .container {
    margin: 0 auto;
    width: 100%;
}

.explore-heading {
    margin-bottom: 40px;
}

.explore-heading h2 {
    font-size: 30px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}

.exploreSwiper {
    width: 100%;
    overflow: hidden;
}

.explore-card {
    overflow: hidden;
    background: var(--light-blue);
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.explore-card.active-card {
    background: var(--rose);
    border-color: var(--rose);
}

.explore-card-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.explore-card-img img {
    width: 100%;
    height: 100%;
    padding: 10px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}


.explore-card-body {
    padding: 22px 20px;
}

.explore-card-body h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
    line-height: 1.5;
    text-align: center;
}

.explore-card.active-card .explore-card-body h3 {
    color: var(--white);
}

@media (max-width: 992px) {
    .explore-section .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .explore-section {
        padding: 40px 0;
    }

    .explore-section .container {
        padding: 0 20px;
    }

    .explore-card-img {
        height: 180px;
    }
}


/* =====================================================
   CTA VISIT SECTION
   ===================================================== */
.cta-visit-section {
    position: relative;
    padding-top: 70px;
    padding-bottom: 70px;
    background: url('/assets/images/frontend/homepage/dream-prop-back.png') center/cover no-repeat;
    color: #fff;
    overflow: hidden
}

.cta-visit-overlay {
    position: absolute;
    inset: 0
}

.w-width {
    max-width: 950px;
    padding: 0 24px
}

.cta-visit-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px
}

.cta-visit-left {
    max-width: 520px
}

/* ── CTA HEADING ── */
.cta-visit-heading {
    font-family: var(--font-heading);
    font-size: var(--h2);
    font-weight: 400;
    letter-spacing: var(--ls-heading);
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: var(--lh-heading);
    color: #111
}

/* ── CTA PARA ── */
.cta-visit-text {
    font-family: var(--font-body);
    font-size: var(--text-body);
    line-height: var(--lh-body);
    opacity: .95;
    color: #111
}

.cta-visit-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: auto
}

/* ── CTA BTN ── */
/* ── CTA VISIT BTN ── */
.cta-visit-btn {
    font-family: var(--font-ui);
    font-size: var(--btn-md);
    letter-spacing: var(--ls-btn);
    padding: 13px 36px;
    text-decoration: none;
    border-radius: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: transform .3s, color .35s ease;
    z-index: 1;
}

/* Default maroon buttons */
.cta-visit-btn.primary,
.cta-visit-btn.secondary {
    background: #8b4040;
    color: #fff;
}

/* Black fill layer */
.cta-visit-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
    z-index: -1;
}

/* Hover */
.cta-visit-btn.primary:hover,
.cta-visit-btn.secondary:hover {
    transform: translateX(4px);
    color: #fff;
}

.cta-visit-btn.primary:hover::before,
.cta-visit-btn.secondary:hover::before {
    transform: scaleX(1);
}

@media (max-width: 992px) {
    .cta-visit-heading {
        font-size: 22px
    }
}

@media (max-width: 768px) {
    .cta-visit-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .cta-visit-inner {
        flex-direction: column;
        align-items: flex-start
    }

    .w-width {
        padding: 0px 20px;
    }

    .cta-visit-right {
        margin-left: 0;

    }

    .cta-visit-inner {
        gap: 30px;
    }
}



.glimpses-section {
    width: 100%;
    padding: 70px 0 70px;
    background: #f3f1f2;
}

.glimpses-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.glimpses-section .swiper {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 60px;
}

.glimpses-section .swiper-slide {
    width: 300px !important;
    height: 420px;
    position: relative;
    transition: all 0.4s ease;
    cursor: none;
    overflow: hidden;
}


/* Custom cursor */
.glimpses-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0; 
}

/* circle background */
.glimpses-cursor::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
}

/* double arrow icon */
.glimpses-cursor::after {
    content: "↔";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: #fff;
}

.glimpses-box {
    height: 100%;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
    position: relative;
}

.glimpses-box img {
    width: 100%;
    height: 100%;
    border:1px solid #e6e6e6;
    object-fit: cover;
    display: block;
}

.swiper-slide.swiper-slide-active .glimpses-box {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.glimpses-nav {
    display: flex;
    gap: 16px;
    margin-top: 10px;
    justify-content: center;
}

.glimpses-prev,
.glimpses-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.glimpses-prev {
    background: #e8e0d6;
    color: #7a6a5a;
}

.glimpses-next {
    background: #000000;
    color: #fff;
}

.glimpses-prev:hover {
    background: #d4c8bb;
}

.glimpses-next:hover {
    background: #000000;
}

.glimpses-prev svg,
.glimpses-next svg {
    width: 20px;
    height: 20px;
}

.glimpses-heading {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #000000;
}

/* ================= PAGINATION ================= */
.glimpses-swiper .swiper-pagination {
    position: relative;
    margin-top: 20px;
    text-align: center;
}

/* dots */
.glimpses-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(0,0,0,0.3);
    opacity: 1;
    margin: 0 5px !important;
    transition: all 0.3s ease;
}

/* active dot */
.glimpses-swiper .swiper-pagination-bullet-active {
    background: #8b4040;
    width: 20px;
    border-radius: 10px;
}


@media (max-width: 768px) {
    .glimpses-section .swiper-slide {
        width: 240px !important;
        height: 320px;
    }

    .glimpses-heading {
        font-size: 1.8rem;
    }
}








/* --- Section Wrapper --- */
.sig-dev-section {
    padding: 60px 0 70px;
    background: #fff;
}
 
/* --- Heading --- */
.sig-dev-heading {
    margin-bottom: 32px;
}
.sig-dev-heading h2 {
    font-size: 30px !important;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}
 
/* --- Swiper --- */
.sigDevSwiper {
    width: 100%;
    overflow: hidden;
}
 
/* Desktop: show 2 slides */
.sigDevSwiper .swiper-slide {
    width: calc(50% - 8px); /* 2 slides with gap */
}
 
/* --- Card --- */
.sig-dev-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 0px !important;
    overflow: hidden;
}
 
/* --- Image Wrap --- */
.sig-dev-img-wrap {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 0px;
}
 
.sig-dev-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
 
.sig-dev-card:hover .sig-dev-img-wrap img {
    transform: scale(1.04);
}
 
/* --- Dark gradient overlay at bottom --- */
.sig-dev-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.45) 0%,
        rgba(0,0,0,0.1) 40%,
        rgba(0,0,0,0) 100%
    );
    border-radius: 4px;
}
 
/* --- Text info: top-left --- */
.sig-dev-info {
    position: absolute;
    top: 22px;
    left: 22px;
}
 
.sig-dev-name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 4px 0;
    line-height: 1.2;
}
 
.sig-dev-location {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

/* ================= PAGINATION ================= */
.sigDevSwiper .swiper-pagination {
    position: relative;
    margin-top: 20px;
    text-align: center;
}

/* dots */
.sigDevSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(0,0,0,0.3);
    opacity: 1;
    margin: 0 5px !important;
    transition: all 0.3s ease;
}

/* active */
.sigDevSwiper .swiper-pagination-bullet-active {
    background: var(--rose);
    width: 22px;
    border-radius: 10px;
}
 

 
/* --- Responsive: Mobile 1 slide --- */
@media (max-width: 768px) {
    .sigDevSwiper .swiper-slide {
        width: 85%;
    }
    .sig-dev-img-wrap {
        height: 220px;
    }
    .sig-dev-name {
        font-size: 15px;
    }
}










