

/* ================= NAVBAR ================= */
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1140px;
    }
}

@media (min-width: 1200px) {
    .contanav {
        max-width: 1240px;
    }
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible {
    box-shadow: none !important;
    outline: none !important;
}

.kws-navbar {
    background: transparent;
    padding: 20px 40px;
    transition: 0.3s;
}

@media (max-width: 767px) {
.kws-navbar {
    background: #000000;
    padding: 6px 26px;
    transition: 0.3s;
   
}

.navbar-toggler{
    border:1px solid #fff;
}
}
.kws-navbar.scrolled {
    background: rgba(0,0,0,0.85);
}

.kws-logo img {
    height: 50px;
}

.kws-menu .nav-link {
    color: #fff;
    margin: 0 1px;
    font-weight: 300;
	font-size:15px;
	font-family: 'Aileron';
	letter-spacing:1px;
}

@media (max-width: 767px) {
.kws-menu .nav-link {
    color: #fff;
    margin: 0 10px;
    font-weight: 300;
	font-size:15px;
	font-family: 'Aileron';
	letter-spacing:1px;
	border-bottom: 1px solid #d4af3721;
}

.navbar-collapse{
    height:350px;
}
}

.kws-menu .nav-link:hover {
    color: #d4af37;
}

.kws-nav-right {
    align-items: center;
    gap: 20px;
}

.kws-phone {
    color: #fff;
    font-weight: 500;
}




/* ===== LETS TALK BUTTON ===== */

.kws-talk-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #B99A53;
    color: #000;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.kws-talk-btn .kws-arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
}

/* Hover Effect */
.kws-talk-btn:hover {
background: #deb862;
    border-color: #B99A53;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);

}

.kws-talk-btn:hover .kws-arrow {
    transform: translateX(4px);
}


.navbar-toggler {
    font-size: 26px;
    border: none;
    background: none;
    position: relative;
    border: 2px solid #fff;
}

/* Default icon */
.navbar-toggler::before {
    content: "☰";
    color: #fff; /* Change if needed */
}

/* When menu is open */
.navbar-toggler[aria-expanded="true"]::before {
    content: "✖";
}
 /* ================= MEGA MENU ================= */

  .kws-mega-parent {
      position: relative;
  }

 .kws-mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 500px;
    max-width: 95vw;
    padding: 40px 50px;
    background: #1a1412bd;
    backdrop-filter: blur(5px);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 999;
 }


 .kws-mega-parent:hover .kws-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

  .kws-mega-links a {
      display: block;
      color: #ccc;
      padding: 8px 0;
      text-decoration: none;
      transition: 0.3s;
  }

  .kws-mega-links a:hover {
      color: #d4af37;
      padding-left: 8px;
  }

  .kws-mega-img img {
      width: 100%;
      border-radius: 15px;
      object-fit: cover;
  }





/* ================= HERO ================= */

.kws-hero {
    position: relative;
    height: 120vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

/* VIDEO BACKGROUND */
.kws-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* Overlay */
.kws-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(to bottom, rgb(15 15 15 / 52%) 0%, rgb(15 15 15 / 57%) 50%, rgb(0 0 0 / 56%) 100%);
}

.kws-hero-content {
    position: relative;
    z-index: 2;
}

.kws-hero-title {
    font-size: 64px;
    font-weight: 200;
    line-height: 1.2;
    margin-top: 200px;
    
	font-family: 'Larken', serif;
}

.kws-hero-text {
    max-width: 815px;
    margin: 0 auto 50px;
    font-size: 18px;
	line-height:19px;
	font-weight: 300;
    color: #ddd;
    margin-bottom: 80px;
	letter-spacing: 0%;
	font-family: 'Aileron';
	text-align: center;
}



/* ================= COUNTER ================= */

.kws-counter-row {
    margin-top: 60px;
}

.kws-counter h2 {
    font-size: 48px;
    font-weight: 300;
}

@media (max-width: 767px) {
    .kws-counter h2 {
        font-size: 22px;   /* Adjust size as needed */
        font-weight: 600;
    }
}

.kws-counter p {
    color: #ccc;
}

.kws-counter-border {
    border-left: 1px solid rgba(255,255,255,0.3);
    border-right: 1px solid rgba(255,255,255,0.3);
}


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

@media (max-width: 992px) {

    .kws-hero-title {
        font-size: 42px;
        margin-top:100px;
    }

    .kws-counter-border {
        border: none;
    }

    .kws-nav-right {
        display: none !important;
    }
}

@media (max-width: 576px) {

    .kws-hero-title {
        font-size: 32px;
    }

    .kws-hero-text {
        font-size: 15px;
    }

}

/* ================= HERO BUTTONS ================= */

.kws-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 60px;
    flex-wrap: wrap;
	margin-top:80px;
}

/* GOLD BUTTON */
.kws-btn-primary {
    background: #B99A53;
    color: #000;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Aileron';
    transition: 0.3s ease;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.kws-btn-primary:hover {
    background: #c19b2e;
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

/* OUTLINE DARK BUTTON */
.kws-btn-outline {
    background: transparent;
    color: #d4af37;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    font-family: 'Aileron';
    border: 1px solid rgba(212, 175, 55, 0.4);
    transition: 0.3s ease;
    box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.05);
}



.kws-btn-outline:hover {
    background: #deb862;
    border-color: #d4af37;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
}




/* ================= CLIENT SCROLL SECTION ================= */

.kws-client-section {
    background: #0a0a0a;
    padding: 40px 0;
    overflow: hidden;
}

.kws-client-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.kws-client-track {
    display: flex;
    width: max-content;
    animation: kws-scroll 30s linear infinite;
}

/* ðŸ”¥ IMPORTANT FIX */
.kws-client-track:hover {
    animation-play-state: paused;
}

.kws-client-group {
    display: flex;
}

.kws-client-logo {
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kws-client-logo img {
    max-height: 40px;
    opacity: 0.6;
    transition: 0.3s ease;
    filter: grayscale(100%);
}



/* Animation */

@keyframes kws-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.kws-client-section:hover .kws-client-track {
    animation-play-state: paused;
}

/* PERFECT LOOP */

@keyframes kws-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}




/* ================= ABOUT SECTION ================= */

.kws-about {
    background: #0a0a0a;
    color: #fff;
    padding: 25px 0;
}

.kws-about-title {
 font-family: 'Larken', serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 56px;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .kws-about-title {
           font-size: 32px;
        line-height: 38px;
        margin-bottom: 8px;
    }
}

.kws-about-highlight {
    border-left: 2px solid #d4af37;
    padding-left: 20px;
    color: #cfcfcf;
    font-style: italic;
    margin-bottom: 30px;
    text-align: justify;
	font-size:16px;
	font-weight:200;
    line-height: 24px;
	font-family: 'Larken', serif;
}

.kws-about-text {
    color: #bdbdbd;
    line-height: 1.4;
    font-family: 'Aileron';
    font-size: 15px;
    text-align: justify;
}

p{
  color: #bdbdbd;
    line-height: 22px;
    font-family: 'Aileron';
    font-size: 15px;  
}

@media (max-width: 767px) {
.kws-about-text{
    margin-top:20px;
}
}

/* ================= CARDS ================= */

.kws-about-slider {
    margin-top: 80px;
}

.kws-card {
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s;
}

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

/* Smooth transition for heading */
.kws-card-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-family: 'Larken', serif;
    font-weight: 300;
    line-height: 24px;
    transition: color 0.3s ease;
    margin-top:20px;
}

.kws-card-content a{
	text-decoration:none;
	color:#fff;
}

/* Hover effects on entire card */
.kws-card:hover img {
    transform: scale(1.06);
}

.kws-card:hover .kws-card-content h4 {
    color: #B99A53;
}

.kws-card-content p {
    color: #aaa;
    font-size: 14px;
}

.kws-card-content h4:hover{
    color:#B99A53;
}


/* ================= SLIDER CONTROLS ================= */

.kws-slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.kws-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #111;
    border: 1px solid rgba(212,175,55,0.3);
    color: #d4af37;
    cursor: pointer;
    transition: 0.3s;
}

.kws-arrow:hover {
    background: #d4af37;
    color: #000;
}



/* ================= EXPORT SECTION ================= */

.kws-export {
    background: linear-gradient(to right, #0a0a0a, #0a0a0a);
    padding: 150px 0;
    color: #fff;
}

.kws-export-title {
   font-family: 'Larken', serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 56px;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
.kws-export-title {
   font-family: 'Larken', serif;
    font-size: 32px;
    line-height: 38px;
    font-weight: 400;
    margin-bottom: 10px;
}
}



/* ================= CRAFT SECTION ================= */

.kws-craft {
    background: #0b0b0b;
    padding: 20px 0;
    color: #fff;
}

.kws-craft-title {
font-family: 'Larken', serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 56px;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
.kws-craft-title {
 font-size: 32px;
        line-height: 38px;
}
}

.kws-craft-text {
    font-family: 'Aileron';
    color: #bdbdbd;
    line-height: 28px;
    max-width: 500px;
    margin-bottom: 30px;
    
}

/* Gold Outline Button */
.kws-btn-outline-gold {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 40px;
    border: 1px solid rgba(212,175,55,0.5);
    color: #B99A53;
    text-decoration: none;
    transition: 0.3s;
	font-family: 'Aileron';
}

.kws-btn-outline-gold:hover {
    background: #d4af37;
    color: #000;
}

/* ================= VIDEO CARD ================= */

.kws-video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

@media (max-width: 767px) {
.kws-video-card{
    margin-top:20px;
}
}
.kws-video-card img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    filter: grayscale(100%);
}

.kws-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
}

.kws-video-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-size: 14px;
}

/* Play Button */
.kws-play-btn {
    width: 45px;
    height: 45px;
    background: #B99A53;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    cursor: pointer;
    padding-top: 2px;
    padding-left: 4px;
    transition: 0.3s;
}

.kws-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212,175,55,0.6);
}




.vertical-scroller {
    height: 500px;
    overflow: hidden;
    position: relative;
}

.scroll-track {
    display: flex;
    flex-direction: column;
}

.scroll-track img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Animation */
@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* ================= SPLIT IMAGE SECTION ================= */

.kws-split-gallery {
    display: flex;
    width: 100%;
    height: 800px;
}

.kws-split-item {
    position: relative;
    width: 50%;
    overflow: hidden;
}

.kws-split-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

/* Dark Premium Overlay */
.kws-split-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    transition: 0.4s;
}

/* Hover Effect */
.kws-split-item:hover img {
    transform: scale(1.05);
}

.kws-split-item:hover .kws-split-overlay {
    background: rgba(0, 0, 0, 0.25);
}

@media (max-width: 992px) {

    .kws-split-gallery {
        flex-direction: column;
        height: auto;
    }

    .kws-split-item {
        width: 100%;
        height: 480px;
    }
}


/* ================= POINTER ================= */

.kws-point {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    z-index: 5;
}

/* Pulse Ring */
.kws-point::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.7); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}


/* ================= TOOLTIP ================= */

.kws-tooltip {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 280px;
    padding: 20px;
    background: rgba(40,40,40,0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}

.kws-tooltip h5 {
    font-size: 16px;
    margin-bottom: 8px;
    font-family: 'Larken', serif;
    font-weight:300;
}

.kws-tooltip p {
    font-size: 13px;
    color: #ccc;
    margin-bottom: 10px;
}

.kws-tooltip a {
    font-size: 13px;
    color: #fff;
    text-decoration: none;
}

/* SHOW TOOLTIP */
.kws-point:hover .kws-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ================= PROJECTS SECTION ================= */

/* SECTION */
.kws-projects {
    background: #0a0a0a;
    padding: 120px 0;
    color: #fff;

}

.kws-projects-header h2 {
    font-family: Larken, serif;
    font-size: 35px;
    font-weight: 300;
    line-height: 39px;
    margin-bottom: 10px;
}



/* SCROLL WRAPPER */
.kws-scroll-wrapper {
    overflow: hidden;
    width: 100%;
    padding-left: 120px;
}

/* SCROLL TRACK */
.kws-scroll-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: kwsScroll 40s linear infinite;
}

/* IMPORTANT FIX */
@keyframes kwsScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* CARD */
.kws-project-card {
    position: relative;
    width: 300px;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
}

/* IMAGE */
.kws-project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}

/* OVERLAY (DEFAULT SMALL GLASS STRIP) */
.kws-project-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 77px; /* Always visible bottom blur */
    padding: 20px;

    display: flex;

    background: rgba(20, 20, 20, 0.35);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);

    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;

    transition: height 0.5s ease, background 0.5s ease, backdrop-filter 0.5s ease;
}

/* CONTENT LAYOUT */
.kws-overlay-content {
    display: flex;
    flex-direction: column;
  
    width: 100%;
}

/* TITLE */
.kws-overlay-content h3 {
    font-size: 20px;
    font-weight: 200;
    margin: 0;
    font-family: 'Larken', serif;
}

/* DESCRIPTION (Hidden Initially) */
.kws-overlay-content p {
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* BUTTON (Hidden Initially) */
.kws-btn {
    opacity: 0;
    display: inline-block;
    padding: 10px 22px;
    background: #c7a45c;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    width: fit-content;
    transition: opacity 0.4s ease;

    margin-top: auto;   /* ðŸ”¥ THIS PUSHES BUTTON TO BOTTOM */
}

.kws-btn:hover
{
background: #deb862;
    border-color: #B99A53;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
}



.kws-btn:hover .kws-arrow {
    transform: translateX(4px);
}

.kws-btn1 {
    opacity: 0;
    display: inline-block;
    padding: 10px 22px;
    background: #c7a45c;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    width: fit-content;

    margin-top: auto;   /* ðŸ”¥ THIS PUSHES BUTTON TO BOTTOM */
}

/* HOVER EFFECT */
.kws-project-card:hover .kws-project-overlay {
    height: 100%;
    background: rgba(10, 15, 25, 0.75);
    backdrop-filter: blur(18px);
}

.kws-project-card:hover .kws-project-image img {
    transform: scale(1.1);
    filter: blur(3px);
}
/* Show Text & Button */
.kws-project-card:hover .kws-overlay-content p,
.kws-project-card:hover .kws-btn {
    opacity: 1;
}






/* SECTION */
.kws-global {
    background: #0a0a0a;
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

/* HEADER */
.kws-global-header h2 {
 font-family: 'Larken', serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 56px;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
.kws-global-header h2{
 font-size: 32px;
        line-height: 38px;
}
}

.kws-global-header p {
    font-family: 'Aileron', sans-serif;
    font-size: 14px;
    opacity: 0.6;
    margin-bottom: 60px;
}

/* MAP WRAPPER */
.kws-map-wrapper {
    position: relative;
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* MAP IMAGE */
.kws-map {
    width: 100%;
    opacity: 0.8;
}

/* LOCATION TAG */
.kws-location {
    position: absolute;
    background: rgba(40, 40, 40, 0.9);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-family: 'Aileron', sans-serif;
    white-space: nowrap;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* Dot before text */
.kws-location::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}

/* POSITIONING (Adjust if needed slightly based on your image) */
.us {
    top: 48%;
    left: 16%;
}

.uk {
    top: 27%;
    left: 11%;
}

.india {
    top: 49%;
    left: 68%;
}

.oman {
    top: 58%;
    left: 55%;
}

.aust {
    top: 77%;
    left: 86%;
}


.italy{
     top: 38%;
    left: 50%; 
}

@media (max-width: 767px) {

    /* Hide text */
    .kws-location {
        padding: 0;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: #fff;
        font-size: 0;
        cursor: pointer;
    }

    /* Remove old dot */
    .kws-location::before {
        display: none;
    }

    /* Active state (when clicked) */
    .kws-location.active {
        width: auto;
        height: auto;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 13px;
        background: rgba(40, 40, 40, 0.95);
    }

}



/* ===== BLOG SECTION ===== */

.kws-blog-section {
    background: linear-gradient(90deg, #0c0c0c, #111);
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
}

.kws-blog-title {
font-family: 'Larken', serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 56px;
    margin-bottom: 10px;
}


@media (max-width: 767px) {
   .kws-blog-title {
       font-size: 32px;
       line-height: 38px;
   } 
}


.kws-blog-subtitle {
    opacity: 0.6;
}

/* ===== SLIDER ===== */

.kws-blog-slider-wrapper {
    overflow: hidden;
}

.kws-blog-slider {
    display: flex;
    gap: 25px;
    transition: transform 0.6s ease;
}

.kws-blog-card {
    position: relative;
    flex: 0 0 32%;
    border-radius: 12px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .kws-blog-slider {
        gap: 15px; /* optional smaller gap */
    }

    .kws-blog-card {
        flex: 0 0 100%;
    }
}

.kws-blog-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;

    transform: scale(1);
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Overlay */
.kws-blog-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}

.kws-blog-date {
    font-size: 12px;
    opacity: 0.7;
    display: block;
    margin-bottom: 8px;
}

.kws-blog-overlay h5 {
	font-family: 'Larken', serif;
	font-weight:300;
    font-size: 18px;
    line-height: 24px;
}

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

.kws-blog-card:hover .kws-blog-overlay h5 {
    color: #dfc46e;
}

.kws-blog-card::after {
    content: "";
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.4s ease;
}

.kws-blog-card:hover::after {
    background: rgba(0,0,0,0.15);
}
/* ===== CONTROLS ===== */

.kws-blog-controls {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kws-arrows button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #B99A53;
    background: transparent;
    color: #b89b5e;
    margin-right: 10px;
    transition: 0.3s;
}

.kws-arrows button:hover {
    background: #B99A53;
    color: #000;
}

/* Gold Button */
.kws-blog-btn {
    background: #B99A53;
    padding: 12px 28px;
    border-radius: 30px;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
	font-weight:600;
	font-family: 'Aileron';
}

.kws-blog-btn:hover {
    opacity: 0.8;
}







/* Hide mobile text by default */
.mobile-text {
    display: none;
}

/* On mobile */
@media (max-width: 767px) {
    .desktop-text {
        display: none;
    }

    .mobile-text {
        display: inline;
    }
}


/* ===== FOOTER ===== */

.kws-footer {
    position: relative;
    color: #ccc;
    background-color:#000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.backimag
{
	
background: linear-gradient(to bottom, rgba(15, 15, 15, 0.85), rgba(0, 0, 0, 0.95)), url(../image/fooback.png);
padding-top: 56px;
padding-bottom: 20px;

}
/* CTA */
.kws-footer-cta {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 80px;
}

.kws-footer-cta h3 {
    color: #fff;
    font-weight: 300;
    line-height: 1.2;
	font-family: 'Larken', serif;
}

.kws-footer h6{
	font-family: 'Aileron';
	font-weight:600;
	font-size:16px;
}


.kws-footer p{
	font-family: 'Aileron';
	font-weight:400;
	font-size:14px;
}

/* Buttons */
.kws-btn-gold {
    background: #B99A53;
    padding: 14px 30px;
    border-radius: 30px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
	font-family: 'Aileron';
}

.kws-btn-outline {
    border: 1px solid #B99A53;
    padding: 14px 25px;
    border-radius: 30px;
    color: #B99A53;
    text-decoration: none;
}



.kws-btn-outline:hover {
    background: #B99A53;
    color: #000;
}

/* Links */
.kws-footer-links {
    list-style: none;
    padding: 0;
}

.kws-footer-links li {
    margin-bottom: 8px;
    font-size: 14px;
    cursor: pointer;
	font-family: 'Aileron';
	font-weight:400;
}

.kws-footer-links li:hover {
    color: #b89b5e;
}

/* Newsletter */
.kws-newsletter {
    display: flex;
    border: 1px solid #333;
    border-radius: 30px;
    overflow: hidden;
}

.kws-newsletter input {
    background: transparent;
    border: none;
    padding: 10px 15px;
    color: #fff;
    flex: 1;
}

.kws-newsletter button {
    background: #b89b5e;
    border: none;
    width: 45px;
    color: #000;
}

/* Bottom */
.kws-footer-bottom {
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #222;
    padding: 20px 0;
    font-size: 13px;
}

.kws-social-icons span {
    width: 35px;
    height: 35px;
    border: 1px solid #333;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: 10px;
    cursor: pointer;
    margin-top: 4px;
}

.kws-social-icons a{
	color:#fff;
}

.kws-social-icons span:hover {
    background: #b89b5e;
    color: #000;
}


.kws-footer p:last-child {
    word-break: break-word;
}


/* WRAPPER */
.kdst-testimonials-wrapper {
    background: #0b0b0b;
    padding: 120px 0;
    color: #fff;
    overflow: hidden;
}



/* HEADINGS */
.kdst-testimonials-wrapper .kdst-section-title {
    font-family: 'Larken', serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 56px;
    margin-bottom: 10px;
}


@media (max-width: 767px) {
.kdst-testimonials-wrapper .kdst-section-title{
 font-size: 32px;
        line-height: 38px;
}
}

.kdst-testimonials-wrapper .kdst-section-sub {
    color: #aaa;
    margin-bottom: 60px;
}

/* MARQUEE */
.kdst-testimonials-wrapper .kdst-marquee {
    overflow: hidden;
    position: relative;
}

.kdst-testimonials-wrapper .kdst-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: kdstScrollLeft 25s linear infinite;
}

.kdst-testimonials-wrapper .kdst-marquee:hover .kdst-track {
    animation-play-state: paused;
}

/* CARD */
.kdst-testimonials-wrapper .kdst-card {
    width: 530px;
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(145deg, #111, #0d0d0d);
    border: 1px solid rgba(255, 180, 80, 0.25);
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 0 40px rgba(255, 180, 80, 0.05);
}

@media (max-width: 767px) {
.kdst-testimonials-wrapper .kdst-card {
    width: 340px;
}
}

/* QUOTE */
.kdst-testimonials-wrapper .kdst-quote {
    font-size: 60px;
    color: rgba(255,255,255,0.15);
    margin-bottom: 20px;
}

/* TEXT */
.kdst-testimonials-wrapper .kdst-card p {
color: #ccc;
    line-height: 1.5;
    font-size: 16px;
    margin-bottom: 40px;
    text-align: left;
}

/* CLIENT */
.kdst-testimonials-wrapper .kdst-client {
    display: flex;
    align-items: center;
    gap: 15px;
}

.kdst-testimonials-wrapper .kdst-client img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.kdst-testimonials-wrapper .kdst-client h4 {
    margin: 0;
    font-size: 16px;
}

.kdst-testimonials-wrapper .kdst-client span {
    font-size: 13px;
    color: #999;
}

/* BRAND */
.kdst-testimonials-wrapper .kdst-brand {
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-weight: bold;
    opacity: 0.4;
    font-size: 22px;
}



/* CONTROLS */
.kdst-testimonial-controls {
    margin-top: 50px;
    text-align: center;
}

.kdst-arrows {
    display: inline-flex;
    gap: 15px;
}

.kdst-arrows button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 180, 80, 0.4);
    background: transparent;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    
       /* Center the arrow */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.kdst-arrows button:hover {
    background: #B99A53;
    color: #000;
}


.kdst-testimonials-wrapper .kdst-track {
    display: flex;
    gap: 40px;
    transition: transform 0.6s ease;
}



.kwpro-scroll-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 40px 0;
}

.kwpro-scroll-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: kwproScrollLeft 25s linear infinite;
}

.kwpro-scroll-track img {
    height: 300px; /* adjust as needed */
    border-radius: 20px;
    flex-shrink: 0;
}

@keyframes kwproScrollLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.kwpro-scroll-wrapper:hover .kwpro-scroll-track {
    animation-play-state: paused;
}



/* Right Image */
.kwpro-made-image {
    flex: 1;
    position: relative;
}

.kwpro-made-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

/* Soft dark fade bottom effect */
.kwpro-made-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    border-radius: 20px;
}






.kwpro-summary-section {
    background: #0b0b0b;
    padding: 100px 0;
    color: #fff;
	font-family: 'Larken', serif;
}

.kwpro-summary-container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* Title */
.kwpro-summary-title {
    text-align: center;
    font-size: 48px;
	line-height:56px;
    font-weight: 300;
    margin-bottom: 70px;
}

/* Table Layout */
.kwpro-summary-table {
    width: 100%;
}

.kwpro-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

/* Left Label */
.kwpro-label {
    font-size: 20px;
    color: #F0ECE9BF;
	font-weight:300;
	line-height:24px;
	font-family: 'Larken', serif;
}

@media (max-width: 768px) {
.kwpro-label{
    color: #B99A53;
}

.kwpro-made-image{
    margin-top:20px;
}
}

/* Right Value */
.kwpro-value {
    font-size: 16px;
    color: #F0ECE9BF;
	font-weight:300;
	line-height:32px;
    text-align: right;
    max-width: 55%;
	font-family: 'Aileron';
}

/* Responsive */
@media (max-width: 768px) {

    .kwpro-summary-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .kwpro-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .kwpro-value {
        text-align: left;
        max-width: 100%;
    }
}






.kwsprotab {
  background: #0b0b0b;
  color: #fff;
}

.kwsprotab-title {
  font-size: 42px;
  font-weight: 300;
  font-family: 'Larken', serif;
}

.kwsprotab-subtitle {
  font-size: 16px;
  color: #aaa;
  font-family: 'Aileron';
}

.kwsprotab-tabs span {
  color: #d4af37;
  margin: 0 15px;
  cursor: pointer;
  font-size: 18px;
  display: inline-block;
  margin-bottom: 10px;
  font-family: 'Aileron';
}

.kwsprotab-tabs span.active {
  border-bottom: 1px solid #d4af37;
  padding-bottom: 4px;
}

.kwsprotab-wrapper {
  position: relative;
  max-width: 900px;
  margin: auto;
}

.kwsprotab-box {
  display: none;
  position: relative;
}

.kwsprotab-box.active {
  display: block;
}

.kws-pointer {
  position: absolute;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
}

.kws-pointer::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid #fff;
  border-radius: 50%;
  top: -6px;
  left: -6px;
  animation: kwsPulse 1.5s infinite;
}

@keyframes kwsPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

.kws-tooltip {
position: absolute;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 4px;
    white-space: nowrap;
    /* top: -40px; */
    /* left: 20px; */
    opacity: 0;
    text-wrap: auto;
    transition: 0.3s;
}

.kws-pointer:hover .kws-tooltip {
  opacity: 1;
}




/* =============================
   RALSPACEKW SECTION
============================= */

.ralspacekw {
  background: radial-gradient(circle at top, #0f1114, #050607);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.ralspacekw-title {
    font-size: 42px;
    font-weight: 300;
    font-family: 'Larken', serif;
}

.ralspacekw-text {
 font-size: 16px;
    color: #aaa;
    font-family: 'Aileron';
  line-height: 1.4;
  text-align:justify;
}

/* Gallery Grid */
.ralspacekw-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}


/* Mobile */
@media (max-width: 767px) {
    .ralspacekw-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px; /* Optional: reduce gap on mobile */
    }
}

/* Gallery Items */
.ralspacekw-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.ralspacekw-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: 0.4s ease;
}

.ralspacekw-item:hover img {
  transform: scale(1.05);
}

/* Size Variations */
.ralspacekw-item.small {
  height: 220px;
}

.ralspacekw-item.medium {
  height: 300px;
}

.ralspacekw-item.tall {
  height: 420px;
  grid-row: span 2;
}

/* Bottom Fade Effect */
.ralspacekw::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, transparent, #050607);
}

/* Button */
.ralspacekw-btn {
  background: #c9a64d;
  color: #000;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  transition: 0.3s ease;
}

.ralspacekw-btn:hover {
  background: #e0b85c;
  color: #000;
}



/* =============================
   FACADEKW SECTION
============================= */

.facadekw {
  background: linear-gradient(135deg, #0d0f12, #060708);
  color: #fff;
}

.facadekw-title {
  font-size: 38px;
  font-weight: 300;
  line-height: 1.2;
      font-family: 'Larken', serif;
}

.facadekw-text {
  font-size: 15px;
  color: #b8b8b8;
  line-height: 1.4;
  margin-bottom: 18px;
  text-align:justify;
}

.facadekw-btn {
  background: #c9a64d;
  color: #000;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
}

.facadekw-btn:hover {
  background: #e0b85c;
  color: #000;
}

/* Feature Cards */

.facadekw-feature {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

.facadekw-icon {
  font-size: 22px;
  margin-bottom: 10px;
}

.facadekw-feature h6 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: 'Aileron';
}

.facadekw-feature p {
  font-size: 13px;
  color: #9f9f9f;
  font-family: 'Aileron';
  line-height: 1.4;
}







/* ============================
   ARCHSTONEKW GALLERY
============================ */

.archstonekw {
  background: radial-gradient(circle at top, #0f1114, #050607);
  color: #fff;
}

/* Title */
.archstonekw-title {
  font-size: 42px;
  font-weight: 300;
  line-height: 1.2;
  font-family: 'Larken', serif;
}

/* Filters */
.archstonekw-filters span {
color: #bfa046;
    margin: 0 15px;
    font-size: 19px;
    cursor: pointer;
    position: relative;
	font-family: 'Aileron';
}

.archstonekw-filters span.active {
  border-bottom: 1px solid #bfa046;
  padding-bottom: 4px;
}

/* Masonry Grid */
.archstonekw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* Grid Items */
.archstonekw-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.archstonekw-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
  border-radius: 14px;
}

.archstonekw-item:hover img {
  transform: scale(1.07);
}

/* Size Variations */
.archstonekw-item.tall {
  grid-row: span 2;
}

.archstonekw-item.wide {
  grid-column: span 2;
}


.kws-story-section{
    background:#0b0b0b;
    color:#fff;
    padding:120px 0;
}

/* Title */
.kws-story-title{
    font-size: 42px;
    font-weight: 300;
    font-family: 'Larken', serif;
    margin-bottom:20px;
}

/* lead text */
.kws-story-lead{
    font-size: 16px;
    color: #aaa;
    font-family: 'Aileron';
    line-height:1.4;
    margin-bottom:40px;
    max-width:500px;
}

/* paragraph */
.kws-story-text{
    font-size: 15px;
    color: #aaa;
    font-family: 'Aileron';
    margin-bottom:25px;
    text-align:justify;
}

/* CTA */
.kws-story-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#B99A53;
    color:#000;
    padding:14px 26px;
    border-radius:40px;
    font-weight:600;
    text-decoration:none;
    transition:all .3s ease;
}

.kws-story-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(185,154,83,0.35);
}

/* Mission Vision Row */
.kws-mv-row{
    margin-top:90px;
    gap:30px 0;
}

/* Card */
.kws-mv-card{
    border:1px solid #B99A53;
    border-radius:16px;
    padding:45px;
    height:225px;
    background:linear-gradient(145deg,#0f0f0f,#0c0c0c);
    text-align:center;
    transition:all .35s ease;
}

.kws-mv-card h3{
    font-size: 32px;
    font-weight: 300;
    font-family: 'Larken', serif;
    margin-bottom:18px;
}

.kws-mv-card p{
        font-size: 16px;
    color: #aaa;
    font-family: 'Aileron';
    line-height:1.4;
}

/* Hover */
.kws-mv-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 40px rgba(185,154,83,0.2);
}

/* Responsive */

@media(max-width:991px){

.kws-story-title{
    font-size:40px;
}

.kws-mv-row{
    margin-top:60px;
}

}

@media(max-width:767px){

.kws-story-section{
    padding:80px 0;
}

.kws-story-title{
    font-size:34px;
}

.kws-story-lead{
    font-size:16px;
}

.kws-mv-card{
    padding:30px;
    height:280px;
}

}




.kws-why-section{
    background:#0b0b0b;
    color:#fff;
    padding:120px 0;
}

/* TITLE */

.kws-why-title{
    font-family:'Larken', serif;
    font-size:40px;
    font-weight:400;
    line-height:1.2;
    margin-bottom:50px;
}

/* GRID */

.kws-why-grid{
    row-gap:35px;
}

/* ITEM */

.kws-why-item{
    display:flex;
    gap:15px;
}

/* CHECK ICON */

.kws-check{
    color:#B99A53;
    font-size:18px;
    margin-top:4px;
}

/* HEADING */

.kws-why-item h5{
    font-size:14px;
	line-height:18px;
    margin-bottom:6px;
	font-weight:600;
	font-family: 'Aileron';
}

/* TEXT */

.kws-why-item p{
    color:#bfbfbf;
    font-size:12px;
    line-height:16px;
	font-weight:400;
	font-family: 'Aileron';
}

/* IMAGE */

.kws-why-image img{
    width:100%;
    border-radius:14px;
    object-fit:cover;
}

/* RESPONSIVE */

@media(max-width:991px){

.kws-why-title{
    font-size:36px;
}

.kws-why-image{
    margin-top:50px;
}

}

@media(max-width:767px){

.kws-why-section{
    padding:80px 0;
}

.kws-why-title{
    font-size:30px;
}

.kws-why-grid{
    row-gap:25px;
}

}



.kws-founder{
background:#0b0b0b;
padding:120px 0;
color:#fff;
}

/* LAYOUT */

.kws-founder-wrapper{
display:flex;
align-items:center;
gap:80px;
}

/* IMAGE CARD */

.kws-founder-card{
position:relative;
width:430px;
border-radius:14px;
overflow:hidden;
}

.kws-founder-card img{
width:100%;
height:100%;
object-fit:cover;
}

/* INFO OVERLAY */

.kws-founder-info{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:20px;
display:flex;
justify-content:space-between;
align-items:center;

background:linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.kws-founder-info h4{
    font-size: 18px;
	line-height:22px;
    margin-bottom: 2px;
}

.kws-founder-info p{
font-size:12px;
color:#aaa;
}

/* LINKEDIN */

.kws-linkedin{
background:#B99A53;
color:#000;
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:14px;
text-decoration:none;
}

/* CONTENT */

.kws-founder-content{
max-width:600px;
}

.kws-founder-content h2{
font-family:'Larken',serif;
font-size:40px;
line-height:52px;
font-weight:300;
margin-bottom:20px;
}

.kws-founder-content p{
color:#bfbfbf;
font-size:15px;
line-height:20px;
margin-bottom:18px;
font-family: 'Aileron';
text-align:justify;
}

/* BUTTON */

.kws-founder-btn{
display:inline-block;
padding:10px 22px;
border:1px solid #B99A53;
color:#B99A53;
border-radius:30px;
text-decoration:none;
font-size:14px;
transition:0.3s;
}

.kws-founder-btn:hover{
background:#B99A53;
color:#000;
}

/* RESPONSIVE */

@media(max-width:991px){

.kws-founder-wrapper{
flex-direction:column;
gap:40px;
}

.kws-founder-card{
width:100%;
max-width:380px;
}

.kws-founder-content{
max-width:100%;
text-align:center;
}

}


.aboupag h2{
	font-family: Larken, serif;
    font-size: 40px;
    font-weight: 300;
    line-height: 46px;
    margin-bottom: 10px;
}

.aboupag p{
	font-size: 15px;
	font-family: 'Aileron';
	font-weight:300;
}







.kws-team{
background:#0b0b0b;
padding:120px 0;
color:#fff;
overflow:hidden;
}

.kws-team-wrapper{
display:flex;
align-items:center;
gap:80px;
}

/* LEFT SIDE */

.kws-team-left{
width:40%;
}

.kws-team-left h2{
font-family:'Larken',serif;
font-size:48px;
font-weight:300;
line-height:1.2;
margin-bottom:20px;
}

.kws-team-left p{
font-size:14px;
color:#bdbdbd;
line-height:1.7;
margin-bottom:30px;
}

/* BUTTONS */

.kws-slider-btns{
display:flex;
gap:10px;
}

.kws-slider-btns button{
width:42px;
height:42px;
border-radius:50%;
border:1px solid #B99A53;
background:transparent;
color:#B99A53;
cursor:pointer;
}

/* RIGHT SIDE */

.kws-team-right{
width:60%;
}

/* CARD */

.team-card{
background:#111;
border-radius:12px;
overflow:hidden;
}

.team-card img{
width:100%;
height:300px;
object-fit:cover;
display:block;
}

/* INFO */

.team-info{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px;
}

.team-info h4{
font-size:16px;
margin:0;
}

.team-info p{
font-size:13px;
color:#aaa;
margin:2px 0 0;
}

.team-info i{
color:#fff;
}

/* MOBILE */

@media(max-width:991px){

.kws-team-wrapper{
flex-direction:column;
}

.kws-team-left,
.kws-team-right{
width:100%;
}

}


.team-card{
background:#111;
border-radius:14px;
overflow:hidden;
transition:0.3s;
}

.team-card img{
width:100%;
height:320px;
object-fit:cover;
display:block;
}

/* INFO */

.team-info{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px;
}

/* TEXT */

.team-text h4{
font-size:18px;
margin-bottom:4px;
transition:.3s;
}

.team-text p{
font-size:13px;
color:#aaa;
}

/* ICON AREA */

.team-icon{
position:relative;
width:24px;
height:24px;
}

/* LINKEDIN ICON */

.team-icon .bi-linkedin{
position:absolute;
left:0;
top:0;
transition:.3s;
}

/* ARROW ICON */

.team-icon .bi-arrow-up-right{
position:absolute;
left:0;
top:0;
opacity:0;
transform:translateY(5px);
transition:.3s;
color:#B99A53;
}

/* HOVER EFFECT */

.team-card:hover .team-text h4{
color:#B99A53;
}

.team-card:hover .bi-linkedin{
opacity:0;
transform:translateY(-5px);
}

.team-card:hover .bi-arrow-up-right{
opacity:1;
transform:translateY(0);
}







.project-tabs{
background:#0d0d0d;
color:#fff;
}

.project-tab-menu{
justify-content:center;
}

.project-tab-menu .nav-link{
background:none;
border:none;
color:#B99A53;
padding:12px 20px;
font-size:15px;
margin-right:10px;
}

.project-tab-menu .nav-link:hover{
 color: #B99A53;
    border: 1px solid #B99A53;
    border-radius: 28px;
}

.project-tab-menu .nav-link.active{
    color: #B99A53;
    border: 1px solid #B99A53;
    border-radius: 28px;
}

.project-box{
background:#141414;
padding:40px;
border-radius:10px;
margin-bottom:30px;
}

.project-box h3{
font-size:24px;
margin-bottom:15px;
}

.project-box p{
color:#bbb;
font-size:16px;
font-family: 'Aileron';
line-height:22px;
}

.project-info{
margin:20px 0;
font-size:14px;
color:#ddd;
}

.learn-btn{
display:inline-block;
padding:10px 20px;
background:#d4a347;
color:#000;
border-radius:30px;
text-decoration:none;
font-size:14px;
}

.project-img{
border-radius:10px;
}

.tab-pane{
display:none;
}

.tab-pane.active{
display:block;
}

.project-content{
color:#fff;
}

.project-title{
font-size:38px;
font-weight:300;
margin-bottom:20px;
font-family: 'Larken', serif;
}

.project-desc{
    color: #bfbfbf;
    line-height: 1.4;
    margin-bottom: 30px;
    font-size: 16px;
    max-width: 520px;
    text-align: justify;
}

.project-meta hr{
border-color:#333;
margin:15px 0;
}

.meta-row{
display:flex;
justify-content:space-between;
font-size:15px;
}

.meta-label{
color:#b5b5b5;
}

.meta-value{
color:#fff;
}

.project-tags{
margin-top:25px;
}

.project-tags span{
display:inline-block;
background:#1b1b1b;
color:#cfcfcf;
padding:8px 14px;
border-radius:20px;
font-size:13px;
margin:6px 6px 0 0;
}


.project-overview{
background:#0b0b0b;
color:#fff;
padding:80px 0;
}

/* Title */
.overview-title{
font-size:40px;
line-height:52px;
font-weight:300;
font-family: 'Larken', serif;
}

/* Text */
.overview-text{
color: #bfbfbf;
    line-height: 1.3;
    font-size: 16px;
    font-family: 'Aileron';
    font-weight: 400;
}

/* Image */
.overview-image{
margin:40px 0;
}

.overview-image img{
width:100%;
border-radius:12px;
display:block;
}

/* Details Table */
.overview-details{
margin-top:140px;
margin-bottom:30px;
}

.detail-row{
display:flex;
justify-content:space-between;
padding:22px 0;
border-bottom:1px solid #2a2a2a;
font-size:14px;
}

/* Mobile */
@media (max-width: 767px) {
    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    
}

.detail-row span:first-child{
color:#9a9a9a;
font-family:'Larken',serif;
font-size:20px;
line-height:24px;
font-weight:300;
}

/* Mobile */
@media (max-width: 767px) {
.detail-row span:first-child{
    color: #b99a53;
    }
}

.detail-row span:last-child{
color: #fff;
    font-weight: 400;
    font-size: 17px;
}


.materials-section{
background:#0b0b0b;
padding:70px 0;
color:#fff;
}

/* Title */
.materials-title{
font-size:48px;
line-height:56px;
margin-bottom:40px;
font-weight:300;
font-family: 'Larken', serif;
}

/* Wrapper spacing */
.materials-wrapper{
row-gap:25px;
}

/* Item */
.material-box{
display:flex;
align-items:flex-start;
gap:15px;
}

.material-box img{
width:100px;
height:100px;
border-radius:6px;
object-fit:cover;
}

/* Text */
.material-box h5{
font-size:20px;
line-height:25px;
margin-bottom:5px;
font-weight:400;
font-family: 'Larken', serif;
}

.material-box p{
font-size:13px;
color:#bfbfbf;
line-height:1.5;
margin:0;
}




.arch-highlight{
background:#0b0b0b;
color:#fff;
padding:80px 0;
}

/* Title */
.arch-title{
font-size:40px;
line-height:56px;
margin-bottom:40px;
font-weight:300;
font-family: 'Larken', serif;
}

/* Grid */
.arch-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px 40px;
}

@media (max-width: 767px) {
.arch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px 40px;
}
}
/* Item */
.arch-item{
position:relative;
}

.arch-item .icon{
font-size:18px;
color:#d4a347;
margin-bottom:10px;
}

.arch-item h5{
font-size:14px;
line-height:18px;
font-weight:600;
margin-bottom:8px;
font-family: 'Aileron';
}

.arch-item p{
font-size:13px;
color:#bfbfbf;
line-height:1.3;
font-family: 'Aileron';
}

/* Image */
.arch-img img{
width:100%;
border-radius:14px;
display:block;
}

/* Responsive */
@media(max-width:991px){
.arch-grid{
grid-template-columns:1fr;
}
.arch-title{
font-size:28px;
}
}



.project-gallery{
  background:#0b0b0b;
 
}

/* Each image acts like sticky card */
.gallery-item{
  position:sticky;
  top:100px; /* controls overlap start */
  
}

/* Image style */
.gallery-item img{
  width:100%;
  border-radius:16px;
  display:block;
  box-shadow:0 20px 40px rgba(0,0,0,0.5);
}

/* Layering (important for overlap) */
.gallery-item:nth-child(1){ z-index:1; }
.gallery-item:nth-child(2){ z-index:2; }
.gallery-item:nth-child(3){ z-index:3; }


.gallery-item img{
  transition:0.4s;
}

.gallery-item:hover img{
  transform:scale(1.02);
}

.gallery-item::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.4), transparent);
  border-radius:16px;
}





.insight-section{
  background:#0d0d0d;
  padding:20px 0;
  text-align:center;
}

/* Title */
.insight-title{
  color:#e5e5e5;
  font-size:48px;
  font-weight:400;
  line-height:1.3;
  margin-top: 150px;
  font-family: 'Larken', serif;
  letter-spacing:0.5px;
}







.blog-section{
  padding-bottom:80px;
  color:#fff;
}

/* spacing */
.blog-item{
  margin-bottom:80px;
}

/* meta */
.blog-meta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:15px;
}

.blog-meta span{
  font-size:12px;
  background:#1a1a1a;
  padding:6px 12px;
  border-radius:20px;
  color:#cfcfcf;
}

.blog-meta .date{
  background:none;
  color:#888;
}

/* title */
.blog-title{
  font-size:32px;
  line-height:40px;
  margin-bottom:15px;
  font-weight:300;
  font-family: 'Larken', serif;
}

/* desc */
.blog-desc{
  font-size:14px;
  color:#bfbfbf;
  line-height:1.3;
  margin-bottom:20px;
  font-family: 'Aileron';
}

/* link */
.blog-link{
  color:#e5e5e5;
  text-decoration:none;
  font-size:14px;
  padding-bottom:3px;
  transition:0.3s;
}

.blog-link:hover{
  color:#d4a347;
  border-color:#d4a347;
}

/* image */
.blog-img img{
  width:100%;
  border-radius:14px;
  display:block;
}




.blog-detail{
  background:#0b0b0b;
  color:#fff;
  padding:80px 0;
}

/* SIDEBAR */
.blog-sidebar{
  position:sticky;
  top:100px; /* adjust based on header */
  background:#111;
  padding:20px;
  border-radius:12px;
}

/* list */
.blog-sidebar ul{
  list-style:none;
  padding:0;
  margin:0;
}

.blog-sidebar ul li{
  padding:10px 0;
  font-size:14px;
  color:#aaa;
  cursor:pointer;
  border-left:2px solid transparent;
  padding-left:10px;
  transition:0.3s;
}

.blog-sidebar ul li.active,
.blog-sidebar ul li:hover{
  color:#fff;
  border-color:#d4a347;
}

/* reading time */
.reading-time{
  margin-top:20px;
}

.reading-time .line{
  height:3px;
  width:80%;
  background:#d4a347;
  margin-bottom:5px;
}

.reading-time span{
  font-size:12px;
  color:#aaa;
}

/* CONTENT */
.blog-content section{
  margin-bottom:60px;
}

.blog-content h2{
  font-size:28px;
  margin-bottom:15px;
}

.blog-content p{
  color:#bfbfbf;
  line-height:1.7;
}








.stone-faq-section{
    background:#080808;
    color:#fff;
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.stone-subtitle{
    color:#b99a63;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;
}

.stone-title{
    font-size:42px;
    font-family:serif;
    margin-top:10px;
    margin-bottom:15px;
}

.stone-desc{
    max-width:700px;
    margin:auto;
    color:#bdbdbd;
}

.stone-faq .accordion-item{
    background:#101010;
    border:1px solid rgba(185,154,99,.2);
    border-radius:12px !important;
    margin-bottom:18px;
    overflow:hidden;
}

.stone-faq .accordion-button{
    background:#101010;
    color:#fff;
    font-size:18px;
    font-weight:500;
    padding:20px;
    box-shadow:none;
}

.stone-faq .accordion-button:not(.collapsed){
    background:#151515;
    color:#d8b273;
}

.stone-faq .accordion-button::after{
    filter:invert(1);
}

.stone-faq .accordion-body{
    background:#151515;
    color:#cfcfcf;
    line-height:1.8;
    padding:20px;
    border-top:1px solid rgba(255,255,255,.06);
}

.stone-faq .accordion-button:focus{
    box-shadow:none;
}

@media(max-width:768px){
    .stone-title{
        font-size:30px;
    }

    .stone-faq .accordion-button{
        font-size:16px;
        padding:16px;
    }
}






.kwblog-section{background:#111}
.kwblog-card{display:flex;background:#171717;border:1px solid #2d2d2d;margin-bottom:25px}
.kwblog-img{width:45%}
.kwblog-img img{width:100%;height:100%;min-height:250px;object-fit:cover}
.kwblog-content{width:55%;padding:35px}
.kwblog-meta{color:#b6b6b6;font-size:14px;margin-bottom:15px}
.kwblog-meta i{color:#c79a47}
.kwblog-content h2 a{font-family: 'Larken', serif;font-size:24px;line-height:20px;margin-bottom:15px;     color: #b99a53; text-decoration:none;}
.kwblog-content p{color:#aaa;line-height:1.4}
.kwblog-btn{display:inline-flex;gap:20px;padding:8px 22px;border:1px solid #c79a47;color:#c79a47;text-decoration:none}
.kwblog-btn:hover{background:#c79a47;color:#111}
.kwblog-widget{background:#171717;border:1px solid #2d2d2d;padding:30px;margin-bottom:30px}
.kwblog-search{display:flex}.kwblog-search input{flex:1;background:#111;border:1px solid #333;color:#fff;padding:12px}.kwblog-search button{background:#c79a47;border:0;padding:0 18px}
.kwblog-widget h3{font-family: 'Larken', serif;margin-bottom:25px; color:#fff;}
.kwblog-cat{list-style:none;padding:0;margin:0}
.kwblog-cat li{display:flex;justify-content:space-between;padding:12px 0;border-bottom:1px solid #292929;color:#ddd}
.kwblog-recent div{display:flex;gap:12px;margin-bottom:15px;align-items:center}
.kwblog-recent img{width:90px;height:70px;object-fit:cover}
.kwblog-recent span{color:#fff;}
.kwblog-cta{background:#1b1b1b}
.kwblog-cta h2{font-family: 'Larken', serif;font-size:42px; color:#b99a53;}
.kwblog-cta a{display:inline-block;background:#c79a47;color:#111;padding:12px 28px;text-decoration:none;font-weight:bold}
.kwblog-pagination{display:flex;gap:12px;margin-top:35px}
.kwblog-pagination a,.kwblog-pagination span{ display:flex;align-items:center;justify-content:center;width:48px;height:48px;border:1px solid #444;color:#fff;text-decoration:none}
.kwblog-pagination .active{background:#c79a47;color:#111}
.kwblog-pagination .next{width:auto;padding:0 25px}
@media(max-width:991px){
.kwblog-card{display:block}.kwblog-img,.kwblog-content{width:100%}.kwblog-content h2{font-size:30px}
}
.kwblog-info h5{
line-height:16px;
}
.kwblog-info h5 a{ font-family: 'Larken', serif; text-decoration:none; color:#fff; font-size:16px; font-weight:400;}











.conkw-contact-banner{
    background:#111;
    overflow:hidden;
}

.conkw-banner-content{
    background:rgba(0,0,0,0.88);
    color:#fff;
    min-height:420px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:70px 50px;
}

.conkw-breadcrumb{
    margin-bottom:20px;
}

.conkw-banner-content h1{
    font-size:64px;
    font-family:Georgia, serif;
    font-weight:400;
    margin-bottom:20px;
}

.conkw-line{
    width:70px;
    height:2px;
    background:#caa45f;
    display:block;
    margin:0 auto 30px;
}

.conkw-banner-content p{
    max-width:550px;
    margin:0 auto;
    font-size:20px;
    line-height:1.8;
    color:#d4d4d4;
}

.conkw-line{
    width:70px;
    height:2px;
    background:#caa45f;
    display:block;
    margin-bottom:17px;
}

.conkw-banner-content p{
    font-size: 17px;
    color: #d4d4d4;
    line-height: 1.4;
    max-width: 420px;
    margin-bottom: 0;
}

.conkw-banner-image{
    position:relative;
    height:420px;
    overflow:hidden;
}

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

/* Optional Dark Overlay on Image */
.conkw-banner-image::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.25);
    z-index:1;
}

.conkw-banner-image img{
    position:relative;
    z-index:0;
}

/* Responsive */

@media(max-width:991px){

    .conkw-banner-content{
        min-height:auto;
        padding:60px 40px;
    }

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

    .conkw-banner-content p{
        font-size:18px;
    }

    .conkw-banner-image{
        height:320px;
    }
}

@media(max-width:767px){

    .conkw-banner-content{
        padding:45px 25px;
    }

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

    .conkw-banner-content p{
        font-size:16px;
        line-height:1.7;
    }

    .conkw-banner-image{
        height:240px;
    }
}




.conkw-contact-section{
    background:#0f0f0f;
    color:#fff;
}

.conkw-contact-box{
    border:1px solid rgba(198,155,67,.55);
    border-radius:12px;
    padding:5px;
    height:100%;
    background:linear-gradient(145deg,#181818,#101010);
}

.conkw-title{
color: #d8a944;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-align: center;
}

.conkw-line{
    display:block;
    width:70px;
    height:2px;
    background:#d8a944;
    margin-bottom: 10px;
}

.conkw-input{
    background:transparent;
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    border-radius:6px;
    padding:15px 18px;
    height:45px;
}

.conkw-input:focus{
    background:transparent;
    color:#000;
    border-color:#d8a944;
    box-shadow:none;
}

.conkw-input::placeholder{
    color:#bbb;
}

textarea.conkw-input{
    min-height:140px;
    resize:none;
}

select.conkw-input{
    color:#bbb;
}

.conkw-btn{
    background:#d8a944;
    color:#111;
    border:none;
    padding:16px 35px;
    border-radius:6px;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    gap:20px;
    transition:.4s;
}

.conkw-btn:hover{
    background:#fff;
}

.conkw-info-wrapper{
    padding-left:35px;
}

.conkw-info-item{
    display:flex;
    gap:25px;
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.conkw-info-item:last-child{
    border-bottom:none;
}

.conkw-icon{
    width:78px;
    height:78px;
    border:1px solid #d8a944;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#d8a944;
    font-size:32px;
    flex-shrink:0;
}

.conkw-content h4{
font-size: 18px;
    margin-bottom: 9px;
    color: #b99a53;
}

.conkw-content p{
    color: #d8d8d8;
    margin-bottom: 6px;
    line-height: 1.4;
    font-size: 15px;
}

.conkw-content p i{
    color:#d8a944;
    width:22px;
}

@media(max-width:991px){

    .conkw-contact-box{
        padding:30px;
    }

    .conkw-info-wrapper{
        padding-left:0;
        margin-top:20px;
    }

    .conkw-info-item{
       
    }

    .conkw-icon{
        width:65px;
        height:65px;
        font-size:26px;
    }

    .conkw-content h4{
        font-size:18px;
    }

}




