<style>

/* =========================================
   CARD SLIDER – ONLY ARROWS
   ========================================= */
html {
  scroll-behavior: smooth;
}

.kn-slider-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 70px;
}

/* Slider */
.kn-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.kn-slider::-webkit-scrollbar {
  display: none;
}

/* Card */
.kn-card {
  min-width: 320px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  overflow: hidden;

  display: flex;
  flex-direction: column;
}

.kn-card img {
  width: 100%;
  display: block;
}

.kn-card-content {
  padding: 22px;
 display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.kn-card-content h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.kn-card-content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
	padding-bottom:20px;
}

/* Buttons */
.kn-buttons {
  margin-top: auto;          /* 👈 buttons ko bottom push karega */
  padding-bottom: 10px; 
  display: flex;
  justify-content: space-between; /* 👈 left & right */
  gap: 12px;
}

.kn-btn {
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 1px;
}
.kn-buttons .kn-btn {
  flex: 0 0 auto;
}

.kn-buttons .kn-primary {
  position: relative;
  overflow: hidden;          /* 👈 curtain ke liye zaroori */
  background: #4f6ea8;
  color: #ffffff;
  z-index: 1;
  border: 1px solid #4f6ea8;
  transition: color 0.3s ease;
}

/* Curtain layer */
.kn-buttons .kn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;       /* hover curtain color */
  transform: scaleX(0);     /* start hidden */
  transform-origin: left;   /* left se start */
  transition: transform 0.4s ease;
  z-index: -1;
}

/* Hover */
.kn-buttons .kn-primary:hover::before {
  transform: scaleX(1);     /* left → right fill */
}

.kn-buttons .kn-primary:hover {
  color: #4f6ea8;
}


.kn-buttons .kn-secondary {
  position: relative;
  overflow: hidden;              /* 👈 curtain ke liye */
  background: transparent;
  border: 1px solid #4f6ea8;
  color: #4f6ea8;
  z-index: 1;
  transition: color 0.3s ease;
}

/* Curtain layer */
.kn-buttons .kn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #4f6ea8;           /* fill color */
  transform: scaleX(0);          /* hidden */
  transform-origin: left;        /* left → right */
  transition: transform 0.4s ease;
  z-index: -1;
}

/* Hover state */
.kn-buttons .kn-secondary:hover::before {
  transform: scaleX(1);          /* curtain open */
}

.kn-buttons .kn-secondary:hover {
  color: #ffffff;
  border-color: #4f6ea8;
}


/* =========================================
   BOTTOM CENTER ARROWS
   ========================================= */
.kn-arrow {
  position: absolute;
  bottom: -60px;              /* cards ke niche */
  left: 50%;                 /* center base */
  transform: translateX(-50%);
  
  background: none !important;
  background-color: transparent !important;
  border: none;
  box-shadow: none;
  outline: none;

  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  transition: opacity 0.25s ease;
  z-index: 5;
}

/* Hover / Active / Focus — all clean */
.kn-arrow:hover,
.kn-arrow:active,
.kn-arrow:focus,
.kn-arrow:focus-visible {
  background: none !important;
  background-color: transparent !important;
  box-shadow: none;
  outline: none;
  opacity: 0.7;
}


/* Arrow positions */
.kn-prev {
  transform: translateX(-120%);
}

.kn-next {
  transform: translateX(20%);
}

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

@media (min-width: 1024px) {
  .kn-card {
    min-width: calc(33.333% - 20px);
  }
}

@media (max-width: 1023px) {
  .kn-card {
    min-width: calc(50% - 20px);
  }
}

@media (max-width: 767px) {
  .kn-slider-wrapper {
    overflow: visible;
  }

  .kn-slider {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-left: 16px;
    padding-right: 80px; /* 👈 next card peek space */
    scroll-snap-type: x mandatory;
  }

  .kn-card {
    flex: 0 0 calc(100% - 0px); /* 👈 exactly one full card */
    scroll-snap-align: start;
  }
	.kn-btn {
  padding: 7px 14px;
  font-size: 11px;
  border-radius: 5px;
  text-decoration: none;
  letter-spacing: 1px;
}
}

@media (max-width: 530px) {
.kn-card-content h3 {
  font-size: 18px;
	line-height:20px;
}

.kn-card-content p {
  font-size: 12px;
	line-height:15px;
}
	.kn-primary{
display:none;
	}
}

/* tabs on 767px shimpi */
@media (max-width: 767px) {

  /* Tabs heading container */
  .e-n-tabs-heading {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px;
    justify-content: flex-start;
  }

  /* Each tab button */
  .e-n-tab-title {
    width: auto !important;
    flex: 0 0 auto !important;
    padding: 10px 18px !important;
    border-radius: 999px;
    white-space: nowrap;
  }

  /* Remove full width behavior */
  .e-n-tab-title[role="tab"] {
    max-width: unset !important;
  }
}



/* tab hover animated line */
/* ===== Tab title text wrapper ===== */
/* ONLY this specific tabs heading */
.e-n-tabs-heading:has(#e-n-tab-title-302006681) .e-n-tab-title-text {
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}

/* underline */
.e-n-tabs-heading:has(#e-n-tab-title-302006681)
.e-n-tab-title-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: #f4821e;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

/* hover */
.e-n-tabs-heading:has(#e-n-tab-title-302006681)
.e-n-tab-title:hover
.e-n-tab-title-text::after {
    transform: scaleX(1);
}

/* active */
.e-n-tabs-heading:has(#e-n-tab-title-302006681)
.e-n-tab-title[aria-selected="true"]
.e-n-tab-title-text::after {
    transform: scaleX(1);
}
/* hotspot icon wave animation */
.imh-6310-point-icons {
    position: relative;
}

.imh-6310-point-icons::before,
.imh-6310-point-icons::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: rgba(32, 65, 214, 0.25);
    animation: hotspotWave 2s infinite;
}

.imh-6310-point-icons::after {
    animation-delay: 1s;
}

@keyframes hotspotWave {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.2);
        opacity: 0;
    }
}

/* contact form styling */
.cf7-form input,
.cf7-form textarea{
    width:100%;
    padding:14px 16px;
    border-radius:8px;
    border:none;
    background:#f2f2f2;
    font-size:15px;
    box-sizing:border-box;
    margin-bottom:10px;
}

.row-2{
    display:flex;
    gap:20px;
	margin-bottom:-12px;
    flex-wrap:wrap;
}

.col-50{
    width:calc(50% - 10px);
}

@media(max-width:768px){
    .col-50{
        width:100%;
    }
	.row-2{
    display:flex;
    gap:0px !important;
	margin-bottom:-12px;
    flex-wrap:wrap;
}
.row-2 .col-50:first-child {
   margin-bottom:-18px;
}
}

.cf7-form textarea{
    height:180px;
    resize:none;
}

.cf7-form input[type="submit"]{
    width:auto;
    background:#8dbdf1 !important;
    color:#fff;
    border:none;
    padding:10px 30px;
    border-radius:4px;
    cursor:pointer;
    font-weight:600;
	transition:all ease-in-out;
}
.cf7-form input[type="submit"]:hover{
    background:#fff !important;
   color:#8dbdf1;
}