.hero-section {
    position: relative;
    min-height: 75vh;
    background: url('./images/Healthcare.png') no-repeat center right/cover;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0;
}
.hero-section {
    position: relative;
    min-height: 75vh;
    background-image: url('./images/Healthcare.png');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0;
}

/* Tablet */
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 80px 20px;
        background-position: center;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .hero-section {
        padding: 60px 15px;
        background-position: top center;
        background-size: cover;
    }
}

/* Optional overlay for better text readability */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;

    z-index: 0;
}

/* Ensure content stays above overlay */
.hero-section .container {
    position: relative;
    z-index: 1;
}
/* OVERLAY */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 66%;
    height: 100%;
    /* background: linear-gradient(135deg, hsl(0, 0%, 8%), #4a9dff); */
    clip-path: polygon(0 0, 85% 0, 65% 100%, 0% 100%);
    z-index: 1;
    opacity: 0.9;
}

/* TEXT */
.text-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
}

.hero-section h1 {
    font-size: clamp(28px, 5vw, 48px);
    line-height: 1.2;
    margin-top: 4rem;
}

.hero-section p {
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.6;
    color: white;
}

.para {
    color: white;
}

/* BUTTON */
.btn-talk {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid white;
    color: white;
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 600;
    border-radius: 30px;
    padding: 12px 24px;
    transition: 0.3s ease;
}

.btn-talk i {
    transition: 0.3s;
}

.btn-talk:hover i {
    transform: translateX(5px);
}

.btn-talk:hover {
    background-color: white;
    color: black;
}

/* ================= MOBILE ================= */
@media (max-width: 992px) {
    .hero-section {
        min-height: 60vh;
        background-position: center;
    }

    .hero-section::before {
        width: 80%;
        clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 60px 20px;
        text-align: center;
        justify-content: center;
    }

    .hero-section::before {
        width: 100%;
        clip-path: none;
        opacity: 0.85;
    }

    .text-content {
        max-width: 100%;
    }

    .btn-talk {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 15px;
    }

    .hero-section h1 {
        font-size: 24px;
    }

    .hero-section p {
        font-size: 14px;
    }

    .btn-talk {
        width: 100%;
        justify-content: center;
        padding: 12px;
    }
}
/* ── Main Card Structure ── */
.tekniko-cs-card {
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    margin-bottom: 60px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.tekniko-cs-card:hover {
    /* transform: translateY(-8px); */
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.12), 0 18px 36px -18px rgba(0, 0, 0, 0.15);
}

/* ── Image Section ── */
.tekniko-cs-img-wrap {
    padding: 40px;
    /* background: #f8f9fa; */
    /* Light grey base */
    display: flex;
    align-items: center;
    justify-content: center;
}

.tekniko-img-inner {
    width: 100%;
    transition: transform 0.6s ease;
}

.tekniko-cs-card:hover .tekniko-img-inner {
    transform: scale(1.03);
}

.tekniko-cs-img-wrap img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* ── Text Content ── */
.tekniko-cs-text {
    padding: 60px 80px;
  
}

.tekniko-brand-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.tekniko-logo-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
}

.tekniko-brand-name {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #2d3436;
}

.tekniko-cs-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.tekniko-cs-desc {
    font-size: 17px;
    line-height: 1.8;
    color: #636e72;
    margin-bottom: 32px;
}

/* ── Interactive Button ── */
.tekniko-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-bottom: 2px solid #eee;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.tekniko-view-btn:hover {
    color: #000;
    border-color: #1a1a1a;
    gap: 12px;
}

/* ── Responsive Refinements ── */
@media (max-width: 991px) {
    .tekniko-cs-text {
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .tekniko-cs-card {
        border-radius: 24px;
        margin-bottom: 40px;
    }

    .tekniko-cs-text {
        padding: 32px 24px;
    }

    .tekniko-cs-img-wrap {
        padding: 20px;
        min-height: 300px;
    }

    /* Ensure image stays on top for mobile regardless of order */
    .tekniko-reverse .row {
        flex-direction: column-reverse;
    }
}
/* HEALTHCARE SECTION STYLING */
.healthcare-projects {
    /* background: #f8fbff; */
    padding: 80px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #0b1c39;
}

.section-subtitle {
    max-width: 700px;
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
}

   /* CARD */
   .feature-card {
       border: 1px solid gainsboro;
       border-radius: 16px;
       transition: all 0.4s ease;
       height: 100%;
       background: rgba(255, 255, 255, 0.9);
       backdrop-filter: blur(10px);
       position: relative;
       overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
   }
.fw-bold-sec{
    font-size: 2rem;
    font-weight: 600;
}
   /* HOVER EFFECT */
   .feature-card:hover {
       transform: translateY(-10px) scale(1.02);
       box-shadow: 0 15px 40px rgba(37, 132, 244, 0.2);
   }

   /* GLOW BORDER */
  .feature-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 16px;
      padding: 1.5px;
      /* border thickness */
      background: linear-gradient(120deg, transparent, #2584f4, transparent);

      /* MAGIC PART */
      -webkit-mask:
          linear-gradient(#fff 0 0) content-box,
          linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;

      opacity: 0;
      transition: 0.4s ease;
  }


   .feature-card:hover::before {
       opacity: 1;
   }

   /* ICON */
   .icon-box {
       width: 65px;
       height: 65px;
       background: linear-gradient(135deg, #2584f4, #6fb1ff);
       color: #fff;
       display: flex;
       align-items: center;
       justify-content: center;
       border-radius: 14px;
       font-size: 1.6rem;
       margin-bottom: 1.2rem;
       transition: 0.4s;
   }

   /* ICON ANIMATION */
   .feature-card:hover .icon-box {
       transform: rotate(8deg) scale(1.1);
   }

   /* TEXT */
   .feature-card h5 {
       transition: 0.3s;
   }

   .feature-card:hover h5 {
       color: var(--primary-blue);
   }

   /* FADE ANIMATION */
   .fade-up {
       opacity: 0;
       transform: translateY(40px);
       transition: all 0.8s ease;
   }

   .fade-up.show {
       opacity: 1;
       transform: translateY(0);
   }

.tech-section {
    padding: 80px 0;
    background: #f8fbff;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 15px;
}

.section-header p {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.tech-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    border: 1px solid #eef2f7;
}

.tech-card h3 {
    font-size: 20px;
    color: #2584f4;
    margin-bottom: 12px;
}

.tech-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Hover Effect */
.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Top Accent Line */
.tech-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #2584f4, #00c6ff);
}


.why-section {
    padding: 80px 0;
    background: #ffffff;
}

.why-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 50px;
}

.why-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 15px;
}

.why-header p {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.why-card {
    background: #f9fbff;
    padding: 25px;
    border-radius: 16px;
    transition: 0.3s;
    border: 1px solid #e6ecf5;
    position: relative;
}

/* Number Badge */
.why-card::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #2584f4;
    border-radius: 50%;
    opacity: 0.1;
}

.why-card h3 {
    font-size: 20px;
    color: #2584f4;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Hover Effect */
.why-card:hover {
    background: #2584f4;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.why-card:hover h3,
.why-card:hover p {
    color: #fff;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Tablet */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}


.mockup-section {
    padding: 80px 0;
    background: #f8fbff;
}

.mockup-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* IMAGE */
.mockup-image {
    flex: 1;
    position: relative;
}

.mockup-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* CONTENT */
.mockup-content {
    flex: 1;
}

.mockup-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #0d1b2a;
}

.mockup-content p {
    color: #6c757d;
    margin-bottom: 30px;
}

/* FEATURES */
.mockup-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-box {
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    border-left: 4px solid #2584f4;
    transition: 0.3s;
}

.feature-box h4 {
    margin-bottom: 5px;
    color: #2584f4;
}

.feature-box p {
    font-size: 14px;
    color: #555;
}

.feature-box:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .mockup-wrapper {
        flex-direction: column;
    }
}




.blog-slider-section {
    padding: 80px 0;
    background: #f8fbff;
}

.blog-header h2 {
    text-align: center;
    margin-bottom: 40px;
}

/* CARD */
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-align: left;
    border: 1px solid #e6ecf5;
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card h3 {
    font-size: 18px;
    margin: 15px;
}

.blog-card p {
    font-size: 14px;
    margin: 0 15px 20px;
    color: #555;
}

/* Swiper spacing */
.swiper {
    padding-bottom: 50px;
}

/* MODERN PREMIUM LAYOUT */
.tekniko-blog-section {
    padding: 100px 0;
    background: #ffffff;
    /* Clean white base */
    overflow: hidden;
}

.tekniko-blog-header h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #0f172a;
    margin-bottom: 60px;
}

/* THE CARD - GLASS STYLE */
.tekniko-blog-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
    position: relative;
}

.tekniko-blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
    border-color: #e2e8f0;
}

/* Image with Overlay */
.tekniko-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.tekniko-blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.tekniko-blog-card:hover img {
    transform: scale(1.1);
}

/* Modern Content Styling */
.tekniko-card-body {
    padding: 30px;
}

.tekniko-category {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #3b82f6;
    margin-bottom: 12px;
    display: block;
}

.tekniko-blog-card h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: #1e293b;
    margin-bottom: 15px;
}

.tekniko-blog-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
}

/* Clean Swiper Controls */
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #cbd5e1 !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 24px !important;
    border-radius: 4px !important;
    background: #0f172a !important;
}

.swiper-button-next,
.swiper-button-prev {
    display: none;
    /* Hidden for a cleaner auto-slide look, dots only */
}


/* PREMIUM DARK MODE LAYOUT */
.tekniko-tech-section {
    padding: 100px 0;
    background: #050a10; /* Deep midnight background */
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.tekniko-tech-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.tekniko-tech-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(120deg, #fff 30%, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* THE STEPPER LINE */
.tekniko-timeline-wrapper {
    position: relative;
    padding-top: 40px;
}

/* Horizontal line behind cards */
.tekniko-timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

/* THE CARD - HIGH END GLASS */
.tekniko-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.tekniko-glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

/* Step Indicator (The Dot) */
.tekniko-step-indicator {
    position: absolute;
    top: -45px;
    left: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tekniko-dot {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 15px #fff;
    margin-bottom: 10px;
}

.tekniko-step-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #94a3b8;
}

/* Content Styling */
.tekniko-glass-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #f1f5f9;
}

.tekniko-glass-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
}

/* Swiper Pagination */
.swiper-pagination {
    margin-top: 40px;
    position: relative !important;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.2) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: #fff !important;
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}




