
.kvik-section {
    background-color: #ffffff;
    color: #000000;
}

.kvik-heading {
    font-weight: 600;
    font-size: 2.2rem;
    letter-spacing: -0.5px;
}

.kvik-card {
    border: 1px solid #1a1a1a;
    border-radius: 0; /* Sharp edges completely matching the design */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 5px;
}

.kvik-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Very subtle premium shadow on hover */
}

.card-icon {
    font-size: 1.6rem;
    color: #000;
}

/* Danish Design Custom Icon (Pure CSS) */
.icon-danish {
    width: 26px;
    height: 26px;
    background-color: #000;
    display: inline-block;
    position: relative;
}
.icon-danish::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
}

/* Bottom Link Styling with Arrow */
.custom-link {
    color: #000;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.custom-link::after {
    content: "⟶"; /* Clean, long unicode arrow */
    font-size: 1.3rem;
    font-weight: 300;
    transition: transform 0.2s ease;
}

.custom-link:hover {
    color: #000;
}

.custom-link:hover::after {
    transform: translateX(5px); /* Smooth interaction */
}

.card-text-custom {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #1a1a1a;
}


/*OUR PROCESS CSS START*/

/* Process Styling */
.process-step {
    position: relative;
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 12%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-color);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.process-step:hover .process-icon {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--accent-color);
    border: 1px solid #d4d4d4;
}

.process-title {
    font-size: 1rem;
    /*font-weight: 600;*/
    margin-bottom: 0;
    font-size: 18px;
    color: var(--primary-color);
}

/* The "Expert" Arrow Logic */
.process-wrapper {
    position: relative;
}


@media (max-width: 575.98px) {
    .main-heading {
        font-size: 1.8rem;
    }
}

/*PXD BANNER CSS START*/

.pxd-page-bnr{
  background-image: url(../images/pxd-kitchen/pxd-bnr.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /*padding: 200px 0;*/
  min-height: 750px;
}

.pxd-bnr-ptag{
  max-width: 50% !important;
    color: #ffffff;
    margin: auto;
}

/*INTEK SYSTEM CSS START*/

.intek-page-bnr{
	background-image: url(../images/intek-system/intek-bnr.png);
  	background-repeat: no-repeat;
  	background-position: center;
  	background-size: cover;
  	/*padding: 200px 0;*/
  	min-height: 750px;
}

/*LIVING SYSTEM CSS START*/

.living-page-bnr{
	background-image: url(../images/bg/comming-soon.png);
  	background-repeat: no-repeat;
  	background-position: center;
  	background-size: cover;
  	/*padding: 200px 0;*/
  	min-height: 750px;
}

/*ABOUT US SYSTEM CSS START*/

.about-us-page-bnr{
	background-image: url(../images/about/about-bnr.png);
  	background-repeat: no-repeat;
  	background-position: center;
  	background-size: cover;
  	/*padding: 200px 0;*/
  	min-height: 750px;
}

/*CONTACT US SYSTEM CSS START*/

.contact-us-page-bnr{
    background-image: url(../images/contact/contact-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /*padding: 200px 0;*/
    min-height: 750px;
}


@media (max-width: 575.98px) {
    .pxd-page-bnr{
      min-height: 215px;
    }
    .about-us-page-bnr{
      min-height: 215px;
    }
    .intek-page-bnr{
      min-height: 215px;
    }
    .contact-us-page-bnr{
      min-height: 215px;
    }
}