body {
    font-family: 'Outfit', sans-serif;
    background-image: linear-gradient(to right, #ffcb5b26, #ffeded, #ffcb5b26);
}
h1, h2. h3, h4, h5{font-family: 'Oswald', sans-serif;}
img{max-width: 100%;}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
p {
    color: #000000;
    font-size: 18px;
}
a{text-decoration: none;}
.m-auto{
    margin: 0 auto;
}

/**/
.zoom-in-zoom-out { 
  animation: zoom-in-zoom-out 2s ease-out infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
.fa-spin {
    -webkit-animation: fa-spin 9s linear infinite !important;
    animation: fa-spin 15s linear infinite !important;
}

/**/
/**/
.call-part ul li {
    position: fixed;
    z-index: 999;
    right: -166px;
    width: 220px;
    list-style: none;
    transition: 1.7s;
    bottom: 30px;
}
.call-part ul li a {
    background: linear-gradient(45deg, #830060, #06298f);
    padding: 0 0 6px 0;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    border: solid 1px #ffffff;
    box-shadow: 0 0 1px 2px #08080838;
}
.call-part ul li a i {
    width: 45px;
    height: 50px;
        background: linear-gradient(to right, #ffca4c, #ffdd98, #ffca4c);
    padding: 12px 11px;
    font-size: 25px;
    margin-top: 5px;
    margin-left: 5px;
    color: #000000;
    margin-right: 10px;
}
.call-part ul li.whats {
    margin-top: 79px;
}
.call-part ul li.whats {
    bottom: 100px;
}
.call-part ul li.whats i {
    background: #129122;
    color: #fff;
}
.call-part ul li:hover {
    right: 0;
}
/**/


/**/
 
.white-text{color: #fff;} 
.align{
    align-items: center;
} 


/**/
 
/**/

.kkd-site-header {
    --kkd-primary-color: #5c00ef;
    --kkd-dark-blue: #9263dd;
    --kkd-deep-blue: #720087;
    --kkd-gold-color: #ffb400;
    --kkd-light-gold: #540048;
    --kkd-white-color: #ffffff;
    position: relative;
    z-index: 9999;
    width: 100%;
    background: #fff;
   /* border-bottom: 2px solid var(--kkd-gold-color);
    box-shadow: 0 8px 25px rgba(1, 17, 66, 0.25);*/
    animation: kkdHeaderFadeDown 0.7s ease forwards;
}


/* Header Main Layout */

.kkd-site-header .kkd-header-layout {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}


/* =========================================
   HEADER LOGO
========================================= */
 
  
/* =========================================
   NAVIGATION WRAPPER
========================================= */

.kkd-site-header .kkd-header-navigation {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
}
.logo-main {
    width: 305px;
    padding: 5px 0;
}
/* Navigation Menu */

.kkd-site-header .kkd-header-nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.kkd-site-header .kkd-header-nav-link {
    position: relative;
    min-height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #222;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease,
    transform 0.3s ease;
}
.kkd-site-header .kkd-header-nav-link::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 15px; 
  width: 0;
  height: 3px;

background: linear-gradient(45deg, #540048, #830060);

  border-radius: 20px;
  transform: translateX(-50%);
  box-shadow: 0 3px 9px rgba(255, 180, 0, 0.35);

  transition: width 0.3s ease;
}

.kkd-site-header .kkd-header-nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 16px;

  width: 5px;
  height: 5px;

  background: #7e086e;
  border-radius: 50%;

  opacity: 0;
  transform: translateX(-50%) scale(0);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.kkd-site-header .kkd-header-nav-link:hover,
.kkd-site-header .kkd-header-nav-link.active {
  color: #7e086e;
  transform: translateY(-1px);
}

.kkd-site-header .kkd-header-nav-link:hover::before,
.kkd-site-header .kkd-header-nav-link.active::before {
  width: 100%;
}

.kkd-site-header .kkd-header-nav-link:hover::after,
.kkd-site-header .kkd-header-nav-link.active::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}


/* =========================================
   HEADER CONTACT BUTTONS
========================================= */

.kkd-site-header .kkd-header-contact-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}


/* Call and WhatsApp Common Structure */

.kkd-site-header .kkd-header-call-button,
.kkd-site-header .kkd-header-whatsapp-button {
  position: relative;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 7px 15px;
  overflow: hidden;
  border-radius: 7px;

  text-decoration: none;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.kkd-site-header .kkd-header-call-button::before,
.kkd-site-header .kkd-header-whatsapp-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -110%;

  width: 70%;
  height: 100%;

  background: linear-gradient(
    110deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );

  transform: skewX(-20deg);
  transition: left 0.65s ease;
}

.kkd-site-header .kkd-header-call-button:hover::before,
.kkd-site-header .kkd-header-whatsapp-button:hover::before {
  left: 145%;
}


/* Call Button */

.kkd-site-header .kkd-header-call-button {
  min-width: 157px;
  color: #131313;

  background: linear-gradient(
    135deg,
    var(--kkd-gold-color),
    #ffd45c
  );

  border: 1px solid #ffd866;
  box-shadow:
    0 6px 16px rgba(255, 180, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.kkd-site-header .kkd-header-call-button:hover {
  color: #111111;
  transform: translateY(-3px);
  box-shadow:
    0 10px 24px rgba(255, 180, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}


/* WhatsApp Button */

.kkd-site-header .kkd-header-whatsapp-button {
    min-width: 176px;
    color: var(--kkd-white-color);
    border: 1px solid rgba(255, 180, 0, 0.85);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: linear-gradient(45deg, #540048, #830060);
}
.kkd-site-header .kkd-header-whatsapp-button:hover {
  color: var(--kkd-white-color);
  border-color: var(--kkd-light-gold);
  transform: translateY(-3px);

  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.24),
    0 0 13px rgba(255, 180, 0, 0.15);
}


/* Button Icons */

.kkd-site-header .kkd-header-call-icon {
  position: relative;
  z-index: 2;
  font-size: 18px;
  line-height: 1;
  animation: kkdPhoneShake 4s ease-in-out infinite;
}

.kkd-site-header .kkd-header-whatsapp-icon {
  position: relative;
  z-index: 2;

  width: 29px;
  height: 29px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--kkd-white-color);
  background: #17b957;
  border: 2px solid var(--kkd-white-color);
  border-radius: 50%;

  font-size: 17px;

  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  animation: kkdWhatsAppPulse 2.2s infinite;
}


/* Button Text */

.kkd-site-header .kkd-header-button-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.kkd-site-header .kkd-header-button-text small {
    font-size: 15px;
    font-weight: 600;
}

.kkd-site-header .kkd-header-button-text strong {
    margin-top: 4px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}


/* =========================================
   MOBILE MENU BUTTON
========================================= */

.kkd-site-header .kkd-header-menu-toggle {
    width: 43px;
    height: 43px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    background: linear-gradient(45deg, #830060, #540048);
    border: 1px solid rgb(254 193 46);
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease,
    transform 0.3s ease;
}

.kkd-site-header .kkd-header-menu-toggle:hover {
    transform: translateY(-1px);
    background: linear-gradient(45deg, #540048, #830060);
}
.kkd-site-header .kkd-header-menu-toggle span {
    width: 22px;
    height: 2px;
    display: block;
    background: #fff;
    border-radius: 10px;
    transition: transform 0.3s ease,
    opacity 0.3s ease,
    width 0.3s ease;
}

/* Mobile Menu Close Animation */

.kkd-site-header
.kkd-header-menu-toggle.kkd-header-toggle-active
span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.kkd-site-header
.kkd-header-menu-toggle.kkd-header-toggle-active
span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.kkd-site-header
.kkd-header-menu-toggle.kkd-header-toggle-active
span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* =========================================
   RESPONSIVE: LARGE TABLET
========================================= */

@media only screen and (max-width: 1199px) {

  .kkd-site-header .kkd-header-layout {
    gap: 18px;
  }

  .kkd-site-header .kkd-header-navigation {
    gap: 17px;
  }

  .kkd-site-header .kkd-header-nav-menu {
    gap: 18px;
  }
 

  .kkd-site-header .kkd-header-call-button,
  .kkd-site-header .kkd-header-whatsapp-button {
    min-width: auto;
    padding: 7px 10px;
  }

  .kkd-site-header .kkd-header-button-text strong {
    font-size: 10px;
  }
}


/* =========================================
   RESPONSIVE: TABLET AND MOBILE
========================================= */

@media only screen and (max-width: 991px) {

  .kkd-site-header .kkd-header-layout {
    min-height: 70px;
  }

  .kkd-site-header .kkd-header-menu-toggle {
    display: flex;
  }

  .kkd-site-header .kkd-header-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: block;
    overflow: hidden;
    opacity: 0;
    border-bottom: 2px solid var(--kkd-gold-color);
    box-shadow: 0 15px 25px rgba(0, 14, 55, 0.3);
    transform: translateY(-10px);
    transition: max-height 0.45s ease,
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.3s ease;
    background: linear-gradient(45deg, #540048, #830060);
}
.kkd-site-header
  .kkd-header-navigation.kkd-header-navigation-open {
    max-height: 680px;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(45deg, #540048, #830060);
}
  .kkd-site-header .kkd-header-nav-menu {
    width: min(100% - 30px, 720px);
    margin: 0 auto;
    padding-top: 15px;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .kkd-site-header .kkd-header-nav-link {
    min-height: 50px;
    justify-content: flex-start;

    padding: 0 7px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

    opacity: 0;
    transform: translateX(-15px);
  }

  .kkd-site-header
  .kkd-header-navigation.kkd-header-navigation-open
  .kkd-header-nav-link {
    animation: kkdMobileLinkShow 0.4s ease forwards;
  }

  .kkd-site-header
  .kkd-header-navigation.kkd-header-navigation-open
  .kkd-header-nav-link:nth-child(1) {
    animation-delay: 0.06s;
  }

  .kkd-site-header
  .kkd-header-navigation.kkd-header-navigation-open
  .kkd-header-nav-link:nth-child(2) {
    animation-delay: 0.11s;
  }

  .kkd-site-header
  .kkd-header-navigation.kkd-header-navigation-open
  .kkd-header-nav-link:nth-child(3) {
    animation-delay: 0.16s;
  }

  .kkd-site-header
  .kkd-header-navigation.kkd-header-navigation-open
  .kkd-header-nav-link:nth-child(4) {
    animation-delay: 0.21s;
  }

  .kkd-site-header
  .kkd-header-navigation.kkd-header-navigation-open
  .kkd-header-nav-link:nth-child(5) {
    animation-delay: 0.26s;
  }

  .kkd-site-header .kkd-header-nav-link::before {
    left: 7px;
    bottom: 0;
    transform: none;
  }

  .kkd-site-header .kkd-header-nav-link::after {
    display: none;
  }

  .kkd-site-header .kkd-header-nav-link:hover::before,
  .kkd-site-header .kkd-header-nav-link.active::before {
    width: 45px;
  }

  .kkd-site-header .kkd-header-contact-actions {
    width: min(100% - 30px, 720px);
    margin: 0 auto;
    padding: 19px 0 23px;
  }

  .kkd-site-header .kkd-header-call-button,
  .kkd-site-header .kkd-header-whatsapp-button {
    flex: 1;
    min-height: 52px;
  }
  .kkd-site-header .kkd-header-nav-link:hover, .kkd-site-header .kkd-header-nav-link.active {
    color: #ffcf4e; 
}
.kkd-site-header .kkd-header-nav-link::before { 
    background: #ffcf4e; 
}
.kkd-site-header .kkd-header-nav-link:hover::before, .kkd-site-header .kkd-header-nav-link.active::before {
    width: 100%;
}
.kkd-site-header .kkd-header-nav-link {
color: #fff;
}

}


/* =========================================
   RESPONSIVE: SMALL MOBILE
========================================= */

@media only screen and (max-width: 575px) {

  .kkd-site-header .kkd-header-layout {
    min-height: 66px;
  }
 

  .kkd-site-header .kkd-header-logo-symbol {
    width: 42px;
    height: 42px;
  }

  .kkd-site-header .kkd-header-logo-circle {
    width: 32px;
    height: 32px;
  }

  .kkd-site-header .kkd-header-logo-om {
    font-size: 15px;
  }

 

  .kkd-site-header .kkd-header-menu-toggle {
    width: 44px;
    height: 44px;
  }

  .kkd-site-header .kkd-header-contact-actions {
    flex-direction: column;
  }

  .kkd-site-header .kkd-header-call-button,
  .kkd-site-header .kkd-header-whatsapp-button {
    width: 100%;
    min-height: 53px;
  }

  .kkd-site-header .kkd-header-button-text small {
    font-size: 18px;
  }

 .kkd-site-header .kkd-header-button-text strong {
    font-size: 18px;
}

}


/* =========================================
   RESPONSIVE: EXTRA SMALL MOBILE
========================================= */

@media only screen and (max-width: 390px) {

 

  .kkd-site-header .kkd-header-logo-symbol {
    width: 38px;
    height: 38px;
  }

  .kkd-site-header .kkd-header-logo-circle {
    width: 29px;
    height: 29px;
  }
}


/* =========================================
   HEADER ANIMATIONS
========================================= */

@keyframes kkdHeaderFadeDown {
  from {
    opacity: 0;
    transform: translateY(-25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes kkdLogoRotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes kkdPhoneShake {
  0%,
  84%,
  100% {
    transform: rotate(0deg);
  }

  87% {
    transform: rotate(-13deg);
  }

  90% {
    transform: rotate(13deg);
  }

  93% {
    transform: rotate(-9deg);
  }

  96% {
    transform: rotate(9deg);
  }
}

@keyframes kkdWhatsAppPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes kkdMobileLinkShow {
  from {
    opacity: 0;
    transform: translateX(-15px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* Reduce Animations for Accessibility */

@media (prefers-reduced-motion: reduce) {

  .kkd-site-header,
  .kkd-site-header *,
  .kkd-site-header *::before,
  .kkd-site-header *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}


/* banner section*/
 
/*marquee css*/
.marquee-bar {
    color: #000000; 
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 5px 0;
    font-style: italic;
}
.marquee-part {
    background: linear-gradient(135deg, #ffb400, #ffd765);
}
  .marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-left 20s linear infinite;
  }

  .marquee-item {
    display: flex;
    align-items: center;
    margin-right: 15px;
  }
.dot {
    width: 8px;
    height: 8px;
    background: #830060;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
}

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  /* Duplicate content for seamless loop */
  .marquee-inner {
    display: flex;
  }

/*marquee css End*/

/* =====================================
   SPECIAL SERVICES SECTION
===================================== */

.pkkd-special-services {
  padding: 40px 0;
  background: #f8f9fd;
  overflow: hidden;
}

.pkkd-special-services .pkkd-special-services-heading {
    max-width: 780px;
    margin: 0 auto 28px;
    text-align: center;
}

.pkkd-special-services .pkkd-special-services-heading > span {
    display: inline-block;
    margin-bottom: 10px;
    color: #000000;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.pkkd-special-services .pkkd-special-services-heading h2 {
  margin: 0;
  color: #830060; 
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0px 3px #0606061c;
}

.pkkd-special-services .pkkd-special-services-heading h2 strong {
  color: #ffb400;
  font-weight: 700;
}

.pkkd-special-services .pkkd-special-services-heading p {
  margin: 15px 0 0; 
}

.pkkd-special-services .pkkd-special-services-row {
  row-gap: 30px;
}

/* Service Card */

.pkkd-special-services .pkkd-service-card {
    position: relative;
    height: 100%;
    min-height: 390px;
    padding: 56px 12px 20px;
    overflow: hidden;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e7e9f1;
    border-radius: 28px 28px 28px 28px;
    box-shadow: 0 12px 35px rgba(18, 57, 172, 0.08);
    transition: 0.4s ease;
    animation: pkkdServiceCardShow 0.8s ease both;
}

.pkkd-special-services .col-lg-3:nth-child(2) .pkkd-service-card {
  animation-delay: 0.1s;
}

.pkkd-special-services .col-lg-3:nth-child(3) .pkkd-service-card {
  animation-delay: 0.2s;
}

.pkkd-special-services .col-lg-3:nth-child(4) .pkkd-service-card {
  animation-delay: 0.3s;
}

.pkkd-special-services .pkkd-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
      background: radial-gradient(circle at top right, rgba(255, 180, 0, 0.18), transparent 35%), linear-gradient(145deg, #830060, #2b0124);
  opacity: 0;
  transition: 0.4s ease;
}

.pkkd-special-services .pkkd-service-card:hover {
  border-color: transparent;
  transform: translateY(-12px);
  box-shadow: 0 22px 45px rgba(2, 47, 124, 0.25);
}

.pkkd-special-services .pkkd-service-card:hover::before {
  opacity: 1;
}

/* Icon */
.pkkd-special-services .pkkd-service-icon {
    position: relative;
    z-index: 2;
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 15px;
    color: #830060;
    background: #ffffff;
    border: 10px solid #ffb400;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(18, 57, 172, 0.12);
    transition: 0.4s ease;
}
.banner-img5 {
    border-radius: 15px;
    border: solid 2px #db8b04;
    margin-top: 30px;
}
.pkkd-special-services .pkkd-service-card:hover .pkkd-service-icon {
  color: #ffffff;
  background: #ffb400;
  border-color: #fff;
  transform: rotateY(360deg);
  box-shadow: 0 10px 25px rgba(255, 180, 0, 0.3);
}

/* Card Content */

.pkkd-special-services .pkkd-service-card h3,
.pkkd-special-services .pkkd-service-card p,
.pkkd-special-services .pkkd-service-divider,
.pkkd-special-services .pkkd-service-link {
  position: relative;
  z-index: 2;
}

.pkkd-special-services .pkkd-service-card h3 {
    margin: 0;
    color: #830060;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    transition: 0.3s ease;
}

.pkkd-special-services .pkkd-service-divider {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin: 16px 0;
}

.pkkd-special-services .pkkd-service-divider span {
  width: 22px;
  height: 3px;
  background: #ffb400;
  border-radius: 10px;
  transition: 0.3s ease;
}

.pkkd-special-services .pkkd-service-divider span:last-child {
  width: 22px;
}

.pkkd-special-services .pkkd-service-card p {
    margin: 0;
    color: #000000;
    font-size: 16px;
    line-height: 1.45;
    transition: 0.3s ease;
}

/* Button */

.pkkd-special-services .pkkd-service-link {
    min-width: 155px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 23px;
    padding: 13px 20px;
    color: #ffffff;
    background: #830060;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s ease;
}
.pkkd-special-services .pkkd-service-link i {
  transition: transform 0.3s ease;
}

.pkkd-special-services .pkkd-service-link:hover i {
  transform: translateX(5px);
}

/* Hover Colors */

.pkkd-special-services .pkkd-service-card:hover h3,
.pkkd-special-services .pkkd-service-card:hover p {
  color: #ffffff;
}

.pkkd-special-services
  .pkkd-service-card:hover
  .pkkd-service-divider span {
  background: #ffb400;
}

.pkkd-special-services .pkkd-service-card:hover .pkkd-service-link {
  color: #111111;
  background: #ffb400;
  box-shadow: 0 8px 20px rgba(255, 180, 0, 0.25);
}

/* Responsive */

@media (max-width: 991px) {
  .pkkd-special-services {
    padding: 30px 0;
  }

  .pkkd-special-services .pkkd-special-services-heading h2 {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .pkkd-special-services {
    padding: 35px 0;
  }

  .pkkd-special-services .pkkd-special-services-heading {
    margin-bottom: 25px;
  }

  .pkkd-special-services .pkkd-special-services-heading h2 {
    font-size: 28px;
  }

  .pkkd-special-services .pkkd-service-card {
    min-height: auto;
    padding: 65px 24px 28px;
    border-radius: 22px;
  }

  .pkkd-special-services .pkkd-service-card h3,
  .pkkd-special-services .pkkd-service-card p {
    min-height: auto;
  }

  .pkkd-special-services .pkkd-service-card p {
    margin-top: 0;
  }
}

/* Animation */

@keyframes pkkdServiceCardShow {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*about Css*/

/* ==============================
   ABOUT SECTION
============================== */

.pkkd-about {
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    background-image: url(../images/back-img.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.pkkd-about::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: rgb(255 255 255 / 13%);
    border-radius: 50%;
}
.pkkd-about .pkkd-about-row {
  position: relative;
  z-index: 2;
  align-items: center;
}

/* Image */
 .pkkd-about-image-box {
    position: relative;
}
.pkkd-about .pkkd-about-image {
    position: relative;
    z-index: 2;
    width: 100%; 
    filter: drop-shadow(0 15px 18px rgba(0, 0, 0, 0.2));
    transition: 0.4s ease;
    border-radius: 33px !important;
    border: solid 2px #ffb400;
}

.pkkd-about .pkkd-about-image-box:hover .pkkd-about-image {
  transform: translateY(-8px) scale(1.02);
}

 
 

/* Content */

.pkkd-about .pkkd-about-content {
  padding-left: 45px;
}

.pkkd-about .pkkd-about-subtitle {
  display: inline-block;
  margin-bottom: 12px;
  color: #ffb400;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.pkkd-about .pkkd-about-content h2 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
        text-shadow: 0px 3px #0606061c;
}
.pkkd-about .pkkd-about-content h2 strong {
    display: block;
    margin-top: 10px;
    color: #ffc531;
    font-size: 25px;
    font-weight: 600;
}
.pkkd-about .pkkd-about-content p {
    margin: 0 0 13px;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
}

/* Features */

.pkkd-about .pkkd-about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 25px;
}

.pkkd-about .pkkd-about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: #f7f8fc;
  border: 1px solid #e8eaf2;
  border-radius: 10px;
  transition: 0.3s ease;
}

 

.pkkd-about .pkkd-about-feature i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: #830060;
    background: linear-gradient(135deg, #ffb400, #ffd765);
    border-radius: 50%;
    font-size: 18px;
    border: solid 1px #830060;
    box-shadow: 0 4px 6px #0000001f;
}

.pkkd-about .pkkd-about-feature span {
  display: flex;
  flex-direction: column;
}

.pkkd-about .pkkd-about-feature strong {
  color: #830060;
  font-size: 18px;
}

.pkkd-about .pkkd-about-feature small {
    margin-top: 3px;
    font-size: 16px;
    line-height: 1.3;
}
.pkkd-about .pkkd-about-badge small {
    color: #000000;
    font-size: 14px;
}

/* Buttons */

.pkkd-about .pkkd-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.pkkd-about .pkkd-about-call, .pkkd-about .pkkd-about-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 21px;
    border-radius: 7px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}
.pkkd-about .pkkd-about-call {
  color: #111111;
  background: #ffb400;
}

.pkkd-about .pkkd-about-whatsapp {
  color: #ffffff;
  background: #830060;
}

.pkkd-about .pkkd-about-call:hover, .pkkd-about .pkkd-about-whatsapp:hover {
    color: #000000;
    background: #ffffff;
    transform: translateY(-4px);
}
/* Responsive */

@media (max-width: 991px) {
  .pkkd-about {
    padding: 70px 0;
  }

  .pkkd-about .pkkd-about-image-box {
    margin: 0 auto 25px;
  }

  .pkkd-about .pkkd-about-content {
    padding-left: 0;
    text-align: center;
  }

  .pkkd-about .pkkd-about-content h2 {
    font-size: 35px;
  }

  .pkkd-about .pkkd-about-actions {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .pkkd-about {
    padding: 55px 0;
  }
 

  .pkkd-about .pkkd-about-badge {
    right: 50%;
    bottom: 5px;
    width: max-content;
    transform: translateX(50%);
  }

  .pkkd-about .pkkd-about-content h2 {
    font-size: 22px;
  }

  .pkkd-about .pkkd-about-content h2 strong {
    font-size:17px;
  }
.pkkd-about .pkkd-about-subtitle {
    display: inline-block;
    margin-bottom: 8px; 
}
  .pkkd-about .pkkd-about-features {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .pkkd-about .pkkd-about-actions {
    flex-direction: column;
  }

  .pkkd-about .pkkd-about-call,
  .pkkd-about .pkkd-about-whatsapp {
    justify-content: center;
  }
}

@keyframes pkkdAboutFloat {
  50% {
    transform: translateY(-7px);
  }
}

@media (max-width: 575px) {
  @keyframes pkkdAboutFloat {
    0%, 100% {
      transform: translateX(50%) translateY(0);
    }

    50% {
      transform: translateX(50%) translateY(-6px);
    }
  }
}

/*about Css End*/

/* ==================================
   SIX SERVICES SECTION
================================== */

.pkkd-services-six {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  background: #f7f8fc;
}

.pkkd-services-six::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -140px;
  width: 340px;
  height: 340px;
  background: rgba(18, 57, 172, 0.06);
  border-radius: 50%;
}

.pkkd-services-six .pkkd-services-six-heading {
  position: relative;
  max-width: 550px;
  margin: 0 auto 25px;
  text-align: center;
}

.pkkd-services-six .pkkd-services-six-heading > span {
    display: inline-block;
    margin-bottom: 5px;
    color: #111;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.pkkd-services-six .pkkd-services-six-heading h2 {
  margin: 0;
  color: #830060; 
  font-size: 35px;
  font-weight: 600;
  line-height: 1.2;
  text-shadow: 0px 3px #0606061c;
}

.pkkd-services-six .pkkd-services-six-heading h2 strong {
  display: block;
  color: #ffb400;
}

.pkkd-services-six .pkkd-services-six-heading p {
    margin: 15px auto 0;
    font-size: 16px;
    line-height: 1.4;
}

.pkkd-services-six .pkkd-services-six-row {
  position: relative;
  row-gap: 28px;
}

/* Card */

.pkkd-services-six .pkkd-services-six-card {
  height: 100%;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e5e8f1;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(18, 57, 172, 0.08);
  transition: 0.4s ease;
  animation: pkkdSixCardShow 0.7s ease both;
}

.pkkd-services-six .col-lg-4:nth-child(2) .pkkd-services-six-card,
.pkkd-services-six .col-lg-4:nth-child(5) .pkkd-services-six-card {
  animation-delay: 0.12s;
}

.pkkd-services-six .col-lg-4:nth-child(3) .pkkd-services-six-card,
.pkkd-services-six .col-lg-4:nth-child(6) .pkkd-services-six-card {
  animation-delay: 0.24s;
}

.pkkd-services-six .pkkd-services-six-card:hover {
  border-color: #ffb400;
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(2, 47, 124, 0.18);
}

/* Blank Image Area */

.pkkd-services-six .pkkd-services-six-image {
  position: relative;
  height: 225px;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      rgba(18, 57, 172, 0.12),
      rgba(255, 180, 0, 0.12)
    ),
    #eef1f8;
}

.pkkd-services-six .pkkd-services-six-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2, 47, 124, 0.28),
    transparent 55%
  );
  opacity: 0;
  transition: 0.4s ease;
}

.pkkd-services-six .pkkd-services-six-card:hover
.pkkd-services-six-image::after {
  opacity: 1;
}

/* Add this class to your image */

.pkkd-services-six .pkkd-services-six-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.5s ease;
}

.pkkd-services-six .pkkd-services-six-card:hover
.pkkd-services-six-image img {
  transform: scale(1.08);
}

/* Content */

.pkkd-services-six .pkkd-services-six-content {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 25px 24px 26px;
}

.pkkd-services-six .pkkd-services-six-content > span {
    margin-bottom: 8px;
    color: #080808;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pkkd-services-six .pkkd-services-six-content h3 {
    margin: 0;
    color: #830060;
    font-size: 25px;
    font-weight: 750;
    line-height: 1.3;
    transition: 0.3s ease;
}

.pkkd-services-six .pkkd-services-six-card:hover h3 {
  color: #b90685;
}

.pkkd-services-six .pkkd-services-six-content p {
    margin: 8px 0 10px;
    color: #000000;
    font-size: 16px;
    line-height: 1.5;
}
.pkkd-services-six .pkkd-services-six-content a {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 6px;
    padding: 12px 18px;
    color: #ffffff;
    background: #830060;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s ease;
}
.pkkd-services-six .pkkd-services-six-content a:hover {
  color: #111111;
  background: #ffb400;
  transform: translateX(4px);
}

.pkkd-services-six .pkkd-services-six-content a i {
  transition: 0.3s ease;
}

.pkkd-services-six .pkkd-services-six-content a:hover i {
  transform: translateX(4px);
}

/* Responsive */

@media (max-width: 991px) {
  .pkkd-services-six {
    padding: 70px 0;
  }

  .pkkd-services-six .pkkd-services-six-heading h2 {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
.pkkd-services-six {
    padding: 30px 0;
}
  .pkkd-services-six .pkkd-services-six-heading {
    margin-bottom: 35px;
  }

  .pkkd-services-six .pkkd-services-six-heading h2 {
    font-size: 24px;
  }

  .pkkd-services-six .pkkd-services-six-image {
    height: 210px;
  }

  .pkkd-services-six .pkkd-services-six-content {
    min-height: auto;
    padding: 22px 20px 24px;
  }

  .pkkd-services-six .pkkd-services-six-content h3 {
    font-size: 20px;
  }
}

/* Animation */

@keyframes pkkdSixCardShow {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==============================
   WHY CHOOSE US SECTION
============================== */

.pkkd-why-section {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
     background-image: url(../images/back-img.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.pkkd-why-section::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 330px;
  height: 330px;
  border: 55px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.pkkd-why-section .pkkd-why-heading {
    position: relative;
    max-width: 550px;
    margin: 0 auto 25px;
    text-align: center;
}

.pkkd-why-section .pkkd-why-heading > span {
  display: inline-block;
  margin-bottom: 10px;
  color: #ffb400;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.pkkd-why-section .pkkd-why-heading h2 {
  margin: 0;
  color: #ffffff; 
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  text-shadow: 0px 3px #0606061c;
}

.pkkd-why-section .pkkd-why-heading h2 strong {
  display: block;
  color: #ffb400;
}

.pkkd-why-section .pkkd-why-heading p {
    margin: 10px 0 0;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
}

.pkkd-why-section .pkkd-why-row {
  position: relative;
  row-gap: 24px;
}

/* Card */

.pkkd-why-section .pkkd-why-card {
  position: relative;
  height: 100%;
  display: flex;
  gap: 17px;
  padding: 26px 23px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 15px;
  box-shadow: 0 14px 35px rgba(0, 15, 65, 0.18);
  transition: 0.4s ease;
  animation: pkkdWhyShow 0.7s ease both;
}

.pkkd-why-section .col-lg-4:nth-child(2) .pkkd-why-card,
.pkkd-why-section .col-lg-4:nth-child(5) .pkkd-why-card {
  animation-delay: 0.12s;
}

.pkkd-why-section .col-lg-4:nth-child(3) .pkkd-why-card,
.pkkd-why-section .col-lg-4:nth-child(6) .pkkd-why-card {
  animation-delay: 0.24s;
}

.pkkd-why-section .pkkd-why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #ffb400, #ffd35c);
  opacity: 0;
  transition: 0.4s ease;
}

.pkkd-why-section .pkkd-why-card:hover {
  transform: translateY(-9px);
  border-color: #ffb400;
  box-shadow: 0 22px 42px rgba(0, 15, 65, 0.28);
}

.pkkd-why-section .pkkd-why-card:hover::before {
  opacity: 1;
}

/* Icon */

.pkkd-why-section .pkkd-why-icon {
    position: relative;
    z-index: 2;
    width: 65px;
    height: 65px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: #ffffff;
    background: #830060;
    border: 3px solid #ffb400;
    border-radius: 50%;
    font-size: 26px;
    transition: 0.4s ease;
}

.pkkd-why-section .pkkd-why-card:hover .pkkd-why-icon {
  color: #830060;
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
  transform: rotateY(360deg);
}

/* Content */

.pkkd-why-section .pkkd-why-content {
  position: relative;
  z-index: 2;
}

.pkkd-why-section .pkkd-why-content h3 {
    margin: 2px 0 8px;
    color: #830060;
    font-size: 20px;
    font-weight: 750;
    transition: 0.3s ease;
}

.pkkd-why-section .pkkd-why-content p {
    margin: 0;
    color: #000000;
    font-size: 16px;
    line-height: 1.4;
    transition: 0.3s ease;
}

 
.pkkd-why-section .pkkd-why-card:hover p {
  color: #222222;
}

/* Bottom CTA */

.pkkd-why-section .pkkd-why-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 40px;
    padding: 24px 28px;
    background:rgb(0 0 0 / 30%);
    border: 1px solid rgba(255, 180, 0, 0.6);
    border-radius: 14px;
}

.pkkd-why-section .pkkd-why-cta span {
    color: #ffb400;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
}

.pkkd-why-section .pkkd-why-cta h3 {
    margin: 5px 0 0;
    color: #ffffff;
    font-size: 30px;
    font-weight: 600;
}
.pkkd-why-section .pkkd-why-cta a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
    padding: 14px 25px;
    color: #111111;
    background: #ffb400;
    border-radius: 49px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.pkkd-why-section .pkkd-why-cta a:hover {
  color: #830060;
  background: #ffffff;
  transform: translateY(-4px);
}

/* Responsive */

@media (max-width: 991px) {
  .pkkd-why-section {
    padding: 30px 0;
  }

  .pkkd-why-section .pkkd-why-heading h2 {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .pkkd-why-section .pkkd-why-cta {
    flex-direction: column;
    text-align: center;
  }
  .pkkd-why-section .pkkd-why-cta h3 { 
    font-size: 25px; 
}
.pkkd-why-section .pkkd-why-cta span { 
    font-size: 15px; 
}
.pkkd-why-section .pkkd-why-cta a { 
    padding: 13px 23px; 
    font-size: 16px; 
}


}

@media (max-width: 575px) {
  
  .pkkd-why-section .pkkd-why-heading {
    margin-bottom: 35px;
  }

  .pkkd-why-section .pkkd-why-heading h2 {
    font-size: 24px;
  }

  .pkkd-why-section .pkkd-why-card {
    padding: 22px 18px;
  }

  .pkkd-why-section .pkkd-why-icon {
    width: 52px;
    height: 52px;
  }

  .pkkd-why-section .pkkd-why-cta a {
    width: 100%;
    justify-content: center;
  }
}

/* Animation */

@keyframes pkkdWhyShow {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
 
/* ==================================
   HOW IT WORKS SECTION
================================== */

.pkkd-process {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  background: #f7f8fc;
}

.pkkd-process::before,
.pkkd-process::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(18, 57, 172, 0.05);
}

.pkkd-process::before {
  top: -130px;
  left: -130px;
}

.pkkd-process::after {
  right: -130px;
  bottom: -130px;
}

.pkkd-process .pkkd-process-heading {
  position: relative;
  z-index: 2;
  max-width: 550px;
  margin: 0 auto 30px;
  text-align: center;
}

.pkkd-process .pkkd-process-heading > span {
    display: inline-block;
    margin-bottom: 10px;
    color: #000000;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.pkkd-process .pkkd-process-heading h2 {
  margin: 0;
  color: #830060; 
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  text-shadow: 0px 3px #0606061c;
}

.pkkd-process .pkkd-process-heading h2 strong {
  color: #ffb400;
}

.pkkd-process .pkkd-process-heading p {
    margin: 6px 0 0;
    font-size: 18px;
    line-height: 1.5;
}

/* Steps Row */

.pkkd-process .pkkd-process-row {
  position: relative;
  z-index: 2;
  row-gap: 25px;
}

.pkkd-process .pkkd-process-row::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    #ffb400 0 12px,
    transparent 12px 20px
  );
}

/* Card */

.pkkd-process .pkkd-process-card {
  position: relative;
  height: 100%;
  min-height: 265px;
  padding: 30px 22px 26px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e5e8f1;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(18, 57, 172, 0.08);
  transition: 0.4s ease;
  animation: pkkdProcessShow 0.7s ease both;
}

.pkkd-process .col-lg-3:nth-child(2) .pkkd-process-card {
  animation-delay: 0.12s;
}

.pkkd-process .col-lg-3:nth-child(3) .pkkd-process-card {
  animation-delay: 0.24s;
}

.pkkd-process .col-lg-3:nth-child(4) .pkkd-process-card {
  animation-delay: 0.36s;
}

.pkkd-process .pkkd-process-card:hover {
  background: linear-gradient(145deg, #830060, #95027a);
  border-color: #ffb400;
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(2, 47, 124, 0.22);
}

/* Number */

.pkkd-process .pkkd-process-number {
  position: absolute;
  top: 14px;
  right: 17px;
  color:rgb(18 57 172 / 15%);
  font-size: 38px;
  font-weight: 900;
  transition: 0.3s ease;
}

.pkkd-process .pkkd-process-card:hover .pkkd-process-number {
  color: rgba(255, 255, 255, 0.12);
}

/* Icon */
.pkkd-process .pkkd-process-icon {
    position: relative;
    z-index: 3;
    width: 90px;
    height: 90px;
    display: grid;
    place-items: center;
    margin: 0 auto 22px;
    color: #830060;
    background: #ffffff;
    border: 7px solid #ffb400;
    border-radius: 50%;
    font-size: 35px;
    box-shadow: 0 9px 24px rgba(18, 57, 172, 0.15);
    transition: 0.4s ease;
}

.pkkd-process .pkkd-process-card:hover .pkkd-process-icon {
  color: #ffffff;
  background: #ffb400;
  border-color: #ffffff;
  transform: rotateY(360deg);
}

/* Content */

.pkkd-process .pkkd-process-card h3 {
    margin: 0 0 6px;
    color: #830060;
    font-size: 22px;
    font-weight: 600;
    transition: 0.3s ease;
}

.pkkd-process .pkkd-process-card p {
    margin: 0;
    color: #000000;
    font-size: 16px;
    line-height: 1.5;
    transition: 0.3s ease;
}
.pkkd-process .pkkd-process-card:hover h3,
.pkkd-process .pkkd-process-card:hover p {
  color: #ffffff;
}

/* Bottom CTA */

.pkkd-process .pkkd-process-action {
  position: relative;
  z-index: 2;
  max-width: 750px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 40px auto 0;
  padding: 17px 20px 17px 26px;
  color: #ffffff;
 background: linear-gradient(45deg, #540048, #830060);
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(2, 47, 124, 0.2);
}

.pkkd-process .pkkd-process-action span {
    font-size: 25px;
    font-weight: 700;
}
.pkkd-process .pkkd-process-action a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  padding: 15px 24px;
  color: #111111;
  background: #ffb400;
  border-radius: 70px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.pkkd-process .pkkd-process-action a:hover {
  color: #830060;
  background: #ffffff;
  transform: translateY(-3px);
}

/* Responsive */

@media (max-width: 991px) {
  .pkkd-process {
    padding: 30px 0;
  }

  .pkkd-process .pkkd-process-heading h2 {
    font-size: 28px;
  }

  .pkkd-process .pkkd-process-row::before {
    display: none;
  }
}

@media (max-width: 575px) {
 

  .pkkd-process .pkkd-process-heading {
    margin-bottom: 25px;
  }

  .pkkd-process .pkkd-process-heading h2 {
    font-size: 24px;
  }

  .pkkd-process .pkkd-process-card {
    min-height: auto;
    padding: 26px 20px;
  }

  .pkkd-process .pkkd-process-action {
    flex-direction: column;
    padding: 22px;
    text-align: center;
  }

  .pkkd-process .pkkd-process-action a {
    margin: -7px 0 0 0;
    width: 225px;
    justify-content: center;
    padding: 9px 11px;
    font-size: 17px;
}


}

/* Animation */

@keyframes pkkdProcessShow {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
 

/* ==============================
   CLIENT TESTIMONIALS
============================== */

.pkkd-review-slider {
  position: relative;
  overflow: hidden;
  padding:40px 0;
      background-image: url(../images/back-img.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.pkkd-review-slider::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  right: -160px;
  top: -160px;
  border: 45px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.pkkd-review-heading {
    max-width: 550px;
    margin: 0 auto 25px;
    text-align: center;
}

.pkkd-review-heading span {
  color: #ffb400;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.pkkd-review-heading h2 {
  margin: 8px 0 5px;
  color: #ffffff; 
  font-size: 32px;
  font-weight: 600;
  text-shadow: 0px 3px #0606061c;
}

.pkkd-review-heading p {
    margin: 0;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
}

/* Carousel */

.pkkd-review-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.pkkd-review-window {
  width: 100%;
  overflow: hidden;
}

.pkkd-review-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(.22, .61, .36, 1);
}

.pkkd-review-card {
  flex: 0 0 calc(33.333% - 16px);
  margin: 0 8px;
  padding: 27px 24px;
  background: #ffffff;
  border: 1px solid transparent;
  border-radius: 17px;
  box-shadow: 0 16px 38px rgba(0, 13, 55, 0.22);
  transition: 0.35s ease;
}

.pkkd-review-card:hover {
  border-color: #ffb400;
  transform: translateY(-9px);
  box-shadow: 0 24px 45px rgba(0, 13, 55, 0.3);
}

.pkkd-review-top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
}

.pkkd-review-avatar {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: #ffffff;
    border: 2px solid #a9037e;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 600;
    transition: 0.4s ease;
}
.pkkd-review-male {
  background: #830060;
}

.pkkd-review-female {
  background: #ffb400;
  color: #830060;
}

.pkkd-review-card:hover .pkkd-review-avatar {
  transform: rotateY(360deg);
  border-color: #ffb400;
}

.pkkd-review-top h3 {
  margin: 0 0 5px;
  color: #830060;
  font-size: 18px;
  font-weight: 750;
}

.pkkd-review-top span {
    color: #000000;
    font-size: 15px;
}
.pkkd-review-top span i {
  margin-right: 4px;
  color: #ffb400;
}

.pkkd-review-quote {
    position: absolute;
    right: 0;
    top: 2px;
    color: rgb(15 55 162 / 14%);
    font-size: 38px;
}
.pkkd-review-stars {
    display: flex;
    gap: 4px;
    margin: 20px 0 13px;
    color: #ffb400;
    font-size: 20px;
}

.pkkd-review-card p {
    margin: 0;
    color: #181818;
    font-size: 16px;
    line-height: 1.5;
}

/* Arrows */

.pkkd-review-arrow {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #830060;
  background: #ffb400;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
}

.pkkd-review-arrow:hover {
    color: #ffffff;
    background: #bf048d;
    transform: scale(1.1);
}
.pkkd-review-arrow:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

/* Dots */

.pkkd-review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.pkkd-review-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(255, 255, 255, 0.4);
  border: 0;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

.pkkd-review-dot.active {
  width: 28px;
  background: #ffb400;
}

/* Responsive */

@media (max-width: 991px) {
  

  .pkkd-review-heading h2 {
    font-size: 28px;
  }

  .pkkd-review-card {
    flex-basis: calc(50% - 16px);
  }
}

@media (max-width: 575px) {
 

  .pkkd-review-heading {
    margin-bottom: 35px;
  }

  .pkkd-review-heading h2 {
    font-size: 24px;
  }

  .pkkd-review-carousel {
    gap: 7px;
  }

  .pkkd-review-card {
    flex-basis: calc(100% - 12px);
    margin: 0 6px;
    padding: 24px 20px;
  }

  .pkkd-review-arrow {
    position: absolute;
    z-index: 5;
    width: 38px;
    height: 38px;
  }

  .pkkd-review-prev {
    left: -5px;
  }

  .pkkd-review-next {
    right: -5px;
  }
}


/* =================================
   FAQ SECTION
================================= */

.pkkd-faq-section {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  background: #f7f8fc;
}

.pkkd-faq-section::before {
  content: "";
  position: absolute;
  top: -130px;
  left: -130px;
  width: 320px;
  height: 320px;
  background: rgba(18, 57, 172, 0.06);
  border-radius: 50%;
}

.pkkd-faq-section .pkkd-faq-row {
  position: relative;
  z-index: 2;
  align-items: center;
  row-gap: 40px;
}

/* Left Content */

.pkkd-faq-section .pkkd-faq-intro {
  max-width: 470px;
  padding-right: 35px;
  animation: pkkdFaqLeft 0.8s ease both;
}

.pkkd-faq-section .pkkd-faq-subtitle {
  display: inline-block;
  margin-bottom: 11px;
  color: #111;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.pkkd-faq-section .pkkd-faq-intro h2 {
  margin: 0;
  color: #830060; 
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  text-shadow: 0px 3px #0606061c;
}

.pkkd-faq-section .pkkd-faq-intro h2 strong {
  display: block;
  color: #111;
}

.pkkd-faq-section .pkkd-faq-intro > p {
    margin: 18px 0 25px;
    color: #000000;
    font-size: 16px;
    line-height: 1.5;
}

/* Contact Box */

.pkkd-faq-section .pkkd-faq-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px;
  background: #ffffff;
  border-left: 4px solid #ffb400;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(18, 57, 172, 0.1);
  transition: 0.3s ease;
}

.pkkd-faq-section .pkkd-faq-contact:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(18, 57, 172, 0.16);
}

.pkkd-faq-section .pkkd-faq-contact-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #ffffff;
  background: #830060;
  border-radius: 50%;
  font-size: 20px;
}

.pkkd-faq-section .pkkd-faq-contact-text {
  display: flex;
  flex-direction: column;
}

.pkkd-faq-section .pkkd-faq-contact-text small {
    color: #000000;
    font-size: 16px;
}
.pkkd-faq-section .pkkd-faq-contact-text strong {
    margin: 3px 0;
    color: #830060;
    font-size: 22px;
}

.pkkd-faq-section .pkkd-faq-contact-text a {
    color: #282828;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
}
.pkkd-faq-section .pkkd-faq-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 20px;
    padding: 16px 25px;
    color: #ffffff;
    background: #830060;
    border-radius: 70px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.pkkd-faq-section .pkkd-faq-whatsapp:hover {
  color: #111111;
  background: #ffb400;
  transform: translateY(-4px);
}

/* FAQ Items */

.pkkd-faq-section .pkkd-faq-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  animation: pkkdFaqRight 0.8s ease both;
}

.pkkd-faq-section .pkkd-faq-item {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e4e7f0;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(18, 57, 172, 0.06);
  transition: 0.3s ease;
}

.pkkd-faq-section .pkkd-faq-item:hover,
.pkkd-faq-section .pkkd-faq-item[open] {
  border-color: #ffb400;
  box-shadow: 0 14px 30px rgba(18, 57, 172, 0.12);
}
.pkkd-faq-section .pkkd-faq-item summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 13px;
    padding: 14px 17px;
    color: #1b1c1c;
    font-size: 18px;
    font-weight: 600;
    list-style: none;
    cursor: pointer;
}

.pkkd-faq-section .pkkd-faq-item summary::-webkit-details-marker {
  display: none;
}

.pkkd-faq-section .pkkd-faq-item summary span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #830060;
  background: #edf0fb;
  border-radius: 50%;
  transition: 0.3s ease;
}

.pkkd-faq-section .pkkd-faq-item[open] summary {
    color: #ffffff;
    background: linear-gradient(45deg, #540048, #830060);
}
.pkkd-faq-section .pkkd-faq-item[open] summary span {
  color: #830060;
  background: #ffb400;
  transform: rotate(45deg);
}

.pkkd-faq-section .pkkd-faq-item p {
    margin: 0;
    padding: 16px 21px 18px;
    color: #000000;
    font-size: 16px;
    line-height: 1.5;
    animation: pkkdFaqAnswer 0.3s ease;
}
/* Responsive */

@media (max-width: 991px) {
 

  .pkkd-faq-section .pkkd-faq-intro {
    max-width: 700px;
    margin: auto;
    padding-right: 0;
    text-align: center;
  }

  .pkkd-faq-section .pkkd-faq-intro h2 {
    font-size: 28px;
  }

  .pkkd-faq-section .pkkd-faq-contact {
    max-width: 420px;
    margin: auto;
    text-align: left;
  }
}

@media (max-width: 575px) {
 
  .pkkd-faq-section .pkkd-faq-intro h2 {
    font-size: 24px;
  }

.pkkd-faq-section .pkkd-faq-item summary {
    padding: 13px;
    font-size: 16px;
    line-height: 1.3;
}

  .pkkd-faq-section .pkkd-faq-item p {
    padding: 16px 17px 18px;
    font-size: 15px;
  }

  .pkkd-faq-section .pkkd-faq-whatsapp {
    width: 100%;
    justify-content: center;
  }
}

/* Animations */

@keyframes pkkdFaqLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pkkdFaqRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pkkdFaqAnswer {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =================================
   CONTACT FORM SECTION
================================= */

.pkkd-contact-form-section {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  background: #f6f8fd;
}

.pkkd-contact-form-section::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  top: -170px;
  right: -150px;
  background: rgba(18, 57, 172, 0.07);
  border-radius: 50%;
}

.pkkd-contact-form-section .pkkd-contact-form-row {
  position: relative;
  z-index: 2;
  align-items: stretch;
  row-gap: 30px;
}

/* Left Side */

.pkkd-contact-form-section .pkkd-contact-info {
  height: 100%;
  padding: 45px 38px;
  color: #ffffff;
 background: linear-gradient(45deg, #540048, #830060);
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(2, 47, 124, 0.2);
  animation: pkkdContactLeft 0.8s ease both;
}

.pkkd-contact-form-section .pkkd-contact-subtitle {
  display: inline-block;
  margin-bottom: 12px;
  color: #ffb400;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.pkkd-contact-form-section .pkkd-contact-info h2 {
  margin: 0; 
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
  text-shadow: 0px 3px #0606061c;
}

.pkkd-contact-form-section .pkkd-contact-info h2 strong {
  display: block;
  margin-top: 5px;
  color: #ffb400;
}

.pkkd-contact-form-section .pkkd-contact-info > p {
    margin: 18px 0 28px;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
}
.pkkd-contact-form-section .pkkd-contact-point {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 15px;
    padding: 15px;
    background: rgb(0 2 6 / 6%);
    border: 1px solid rgb(255 255 255 / 25%);
    border-radius: 12px;
    transition: 0.3s ease;
}

.pkkd-contact-form-section .pkkd-contact-point:hover {
  background: rgb(0 2 6 / 25%);
  border-color: #ffb40066;
  transform: translateX(6px);
}

.pkkd-contact-form-section .pkkd-contact-point > i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #830060;
  background: #ffb400;
  border-radius: 50%;
  font-size: 18px;
}

.pkkd-contact-form-section .pkkd-contact-point div {
  display: flex;
  flex-direction: column;
}

.pkkd-contact-form-section .pkkd-contact-point strong {
  font-size: 16px;
}

.pkkd-contact-form-section .pkkd-contact-point span, .pkkd-contact-form-section .pkkd-contact-point a {
    margin-top: 1px;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}
/* Form Box */

.pkkd-contact-form-section .pkkd-contact-form-box {
  height: 100%;
  padding: 40px;
  background: #ffffff;
  border: 1px solid #e4e8f2;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(18, 57, 172, 0.1);
  animation: pkkdContactRight 0.8s ease both;
}

.pkkd-contact-form-section .pkkd-contact-form-heading {
  margin-bottom: 27px;
}
.pkkd-contact-form-section .pkkd-contact-form-heading span {
    color: #000000;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.pkkd-contact-form-section .pkkd-contact-form-heading h3 {
  margin: 6px 0 0;
  color: #830060; 
  font-size: 30px;
  font-weight: 600;
}

.pkkd-contact-form-section .pkkd-contact-input-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.pkkd-contact-form-section .pkkd-contact-field {
  margin-bottom: 17px;
}

.pkkd-contact-form-section .pkkd-contact-field label {
    display: block;
    margin-bottom: 8px;
    color: #26304a;
    font-size: 15px;
    font-weight: 600;
}

.pkkd-contact-form-section .pkkd-contact-input {
  display: flex;
  align-items: center;
  background: #f7f8fc;
  border: 1px solid #e1e5ef;
  border-radius: 9px;
  transition: 0.3s ease;
}

.pkkd-contact-form-section .pkkd-contact-input:focus-within {
  background: #ffffff;
  border-color: #830060;
  box-shadow: 0 0 0 4px rgba(18, 57, 172, 0.08);
}

.pkkd-contact-form-section .pkkd-contact-input > i {
  width: 48px;
  color: #830060;
  text-align: center;
  font-size: 15px;
}

.pkkd-contact-form-section .pkkd-contact-input input,
.pkkd-contact-form-section .pkkd-contact-input select,
.pkkd-contact-form-section .pkkd-contact-input textarea {
  width: 100%;
  padding: 14px 14px 14px 0;
  color: #333a4d;
  background: transparent;
  border: 0;
  outline: none;
  font-size: 14px;
}

.pkkd-contact-form-section .pkkd-contact-textarea {
  align-items: flex-start;
}

.pkkd-contact-form-section .pkkd-contact-textarea > i {
  padding-top: 17px;
}

.pkkd-contact-form-section .pkkd-contact-input textarea {
  resize: vertical;
}

/* Submit Button */

.pkkd-contact-form-section .pkkd-contact-submit {
    padding: 10px 25px;
    width: fit-content;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #000000;
    background: #ffb400;
    border: 0;
    border-radius: 90px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 180, 0, 0.24);
    transition: 0.3s ease;
}
.pkkd-contact-form-section .pkkd-contact-submit:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #830060, #b3008c);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(18, 57, 172, 0.22);
}

.pkkd-contact-form-section .pkkd-contact-submit i:last-child {
  transition: transform 0.3s ease;
}

.pkkd-contact-form-section .pkkd-contact-submit:hover i:last-child {
  transform: translateX(5px);
}

.pkkd-contact-form-section .pkkd-contact-privacy {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin: 13px 0 0;
  color: #7b808c;
  font-size: 11px;
}

.pkkd-contact-form-section .pkkd-contact-privacy i {
  color: #830060;
}

/* Responsive */

@media (max-width: 991px) {
 

  .pkkd-contact-form-section .pkkd-contact-info h2 {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .pkkd-contact-form-section {
    padding: 30px 0;
  }

  .pkkd-contact-form-section .pkkd-contact-info,
  .pkkd-contact-form-section .pkkd-contact-form-box {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .pkkd-contact-form-section .pkkd-contact-info h2 {
    font-size: 24px;
  }

  .pkkd-contact-form-section .pkkd-contact-form-heading h3 {
    font-size: 24px;
  }

  .pkkd-contact-form-section .pkkd-contact-input-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

.pkkd-contact-form-section .pkkd-contact-submit {
    padding: 4px 13px;
    font-size: 15px;
    min-height: 48px;
}


}

/* Animations */

@keyframes pkkdContactLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pkkdContactRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.ftr-sec {
    text-align: center;
    display: block;
    padding: 20px 0;
    border-top: solid 1px #ffd994;
   background: linear-gradient(45deg, #540048, #830060);
}
.ftr-sec .dsclmr span {
    display: block;
    text-align: center;
    border-top: 1px solid #ffffff26;
    padding: 10px 0;
}
/*Top-header*/
.top-head {
    background: linear-gradient(45deg, #540048, #830060);
    padding: 5px 0;
}
.top-head-cta ul li {
    display: inline-block;
    padding: 5px 9px 5px 13px;
}
.top-head-cta ul li a {
    color: #000000;
    display: inline-block;
    text-align: right;
    position: relative;
    background: #ffffff;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 16px;
    padding: 5px 15px 5px 35px;
    border-radius: 50px;
}
.top-head-cta ul li a i {
    display: inline-block;
    border-radius: 12px 0 0 12px;
    width: 34px;
    height: 34px;
    line-height: 34px;
    position: absolute;
    left: -7px;
    text-align: center;
    top: 0px;
    background: linear-gradient(to right, #ffba11, #fece4f, #ffb604);
    fill: #ffffff;
}
.hige-text {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin: 0px;
    padding: 7px 1px;
    border-radius: 100px;
    background: linear-gradient(to right, #ffba11, #fece4f, #ffb604);
}
.hige-text i {
    color: #81005f;
}
.ns-social-area {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}
.ns-social-area a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(to right, #ffba11, #fece4f, #ffb604);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    text-decoration: none;
    transition: .3s;
    font-size: 20px;
}

/**/

.faculties {
    padding: 30px 0;
    background: #fff;
}
.title-h2 {
    font-size: 40px;
    line-height: 1.2;
    text-transform: capitalize;
    color: #b30000;
    font-weight: 700;
}
.payment-option {
    padding: 9px;
    box-shadow: 0 0 15px 0px #c9c9c95e;
    border: 1px solid #eba71e;
    border-radius: 12px;
    background: linear-gradient(to right, #ffebbb, #ffffff, #fffcf6);
}
.fac-1 {
    margin: 0;
    border-right: dashed 1px #7f005e42;
    padding: 0 5px;
}
.fac-1 img {
     background: linear-gradient(to right, #ffebbb, #ffffff, #fffcf6);
     border: 1px solid #eba71e;
    border-radius: 41px;
    padding: 10px 10px;
    margin-bottom: 11px;
}
.fac-1 h3 {
    margin: 5px;
    padding: 0;
    font-size: 20px;
    color: #7c005c;
    font-weight: 700;
}
.fac-1 p {
    color: #000000;
    font-size: 16px;
}


.aw {
    padding: 8px;
}
.aw img {
    border: solid 2px #ffb400;
    border-radius: 12px;
}
.owl-theme .owl-controls .owl-page span { 
    background: #830060 !important;
}


/**/


@media (max-width:991px) {
.top-head-cta {
    text-align: center;
    margin: 0 0 5px 0;
}


}

@media (min-width: 767px) {
  .dask-none {
    display: none;
}


}

@media (max-width: 767px) {
.m-none{
  display: none !important;
}
.ftr-sec p {
    font-size: 14px;
}
.pkkd-banner .pkkd-banner-points {
    display: none;
}
.top-head-cta ul li a i { 
    height: 34px; 
} 
.top-head { 
    padding: 5px 0 8px 0;
}
.top-head-cta ul li { 
    padding: 0 8px 0 0;
}
.hige-text { 
    font-size: 12.4px; 
}
.top-head-cta ul li a {
      font-weight: 500;
    font-size: 14px;
    padding: 6px 12px 5px 33px; 
}
.top-head-cta ul li a i {
    height: 32px;
    width: 32px;
    line-height: 33px;
    left: -3px;
}
.top-head-cta ul li:last-child {
    padding: 0 0 0 2px;
}
.logo-main { 
    padding:0px 0;
}
.top-head-cta ul {
    margin: 3px 0 2px 0;
}
.marquee-item { 
    margin-right: 10px;
    font-size: 14px;
}
.dot {
    width: 6px;
    height: 6px; 
    margin-right: 6px; 
}
p { 
    font-size: 16px;
}
.pkkd-special-services .pkkd-special-services-heading p {
    margin: 9px 0 0;
}
.pkkd-process .pkkd-process-action span {
    font-size: 20px; 
}
.fac-1 {
    background: #ffffff;
    margin-bottom: 12px;
    border-radius: 14px;
    box-shadow: inset 0  1px 24px #e3e3e3; 
    border-right: unset; 
    padding: 20px 14px;
}
.payment-option {
    margin: 0 0 12px 0;
}


}

@media (max-width: 355px) {
.top-head-cta ul li a { 
    font-size: 12px;
    padding: 6px 11px 5px 33px;
}
.top-head-cta ul li a i {
    height: 29px;
    width: 29px;
    line-height: 29px; 
}
.hige-text {
    font-size: 10.4px;
}
.logo-main {
    width: 250px;
    padding:0px 0;
}
}