
/* ===============================
   GLOBAL
================================ */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Plus Jakarta Sans',sans-serif;
    background:#f1f5f9;
    color:#0f172a;
}

a{
    text-decoration:none;
    color:inherit;
}

/* ===============================
   HEADER
================================ */

.main-header{
    width:100%;
    padding:18px 6%;
    position:fixed;
    top:0;
    z-index:1000;
    background:rgba(255,255,255,0.75);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(0,0,0,0.05);
}

.container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo a{
    font-size:22px;
    font-weight:800;
    color:#1e3a8a;
}

/* Navigation */

.menu-wrapper{
    display:flex;
    align-items:center;
}

.main-menu ul{
    display:flex;
    align-items:center;
    gap:28px;
    list-style:none;
}

.main-menu ul li a{
    font-size:15px;
    font-weight:500;
    color:#334155;
    position:relative;
    transition:0.3s;
}

/* Underline Hover Animation */

.main-menu ul li a::after{
    content:"";
    position:absolute;
    bottom:-6px;
    left:0;
    width:0%;
    height:2px;
    background:#2563eb;
    transition:0.3s;
}

.main-menu ul li a:hover::after{
    width:100%;
}

.main-menu ul li a:hover{
    color:#2563eb;
}

/* Buttons */

.nav-outline{
    padding:8px 18px;
    border-radius:8px;
    border:1px solid #2563eb;
    color:#2563eb !important;
}

.nav-primary{
    padding:8px 18px;
    border-radius:8px;
    background:linear-gradient(90deg,#2563eb,#4f46e5);
    color:white !important;
}

.nav-primary:hover{
    box-shadow:0 8px 20px rgba(79,70,229,0.3);
}

.call-btn{
    padding:8px 18px;
    border-radius:8px;
    background:#22c55e;
    color:white !important;
    font-weight:600;
    transition:0.3s;
}

.call-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(34,197,94,0.3);
}

/* Mobile */

.menu-toggle{
    display:none;
    font-size:26px;
    cursor:pointer;
}

/* ===============================
   HERO SECTION
================================ */

.hero{
    position:relative;
    padding:200px 20px 120px;
    text-align:center;
    background:linear-gradient(135deg,#eef2ff,#e0f2fe);
    overflow:hidden;
}

/* Animated Shapes */

.shape1,.shape2{
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    opacity:0.4;
    animation:float 6s ease-in-out infinite alternate;
}

.shape1{
    width:350px;
    height:350px;
    background:#60a5fa;
    top:-100px;
    left:-120px;
}

.shape2{
    width:300px;
    height:300px;
    background:#a78bfa;
    bottom:-120px;
    right:-100px;
}

@keyframes float{
    from{transform:translateY(0px);}
    to{transform:translateY(40px);}
}

.hero-content{
    max-width:1000px;
    margin:auto;
    position:relative;
    z-index:2;
}

.hero-badge{
    display:inline-block;
    padding:8px 18px;
    background:rgba(37,99,235,0.1);
    color:#2563eb;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
}

.hero h1{
    font-size:56px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;
}

.highlight{
    background:linear-gradient(90deg,#2563eb,#7c3aed);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    position:relative;
}

.highlight::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:100%;
    height:8px;
    background:rgba(99,102,241,0.2);
    border-radius:6px;
    animation:underline 3s infinite alternate;
}

@keyframes underline{
    from{width:0%;}
    to{width:100%;}
}

.hero p{
    font-size:18px;
    color:#475569;
    max-width:650px;
    margin:0 auto 50px;
}

/* Search */

.search-card{
    display:flex;
    gap:15px;
    padding:18px;
    background:rgba(255,255,255,0.7);
    backdrop-filter:blur(16px);
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    max-width:850px;
    margin:auto;
    margin-bottom:60px;
}

.search-card select{
    flex:1;
    padding:14px;
    border-radius:12px;
    border:1px solid #e2e8f0;
    font-size:14px;
}

.search-btn{
    padding:14px 28px;
    border-radius:12px;
    border:none;
    background:linear-gradient(90deg,#2563eb,#4f46e5);
    color:white;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.search-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(79,70,229,0.3);
}

/* Stats */

.hero-stats{
    display:flex;
    justify-content:center;
    gap:60px;
    flex-wrap:wrap;
}

.hero-stats h3{
    font-size:28px;
    color:#2563eb;
}

.hero-stats span{
    font-size:14px;
    color:#64748b;
}

/* ===============================
   RESPONSIVE
================================ */

@media(max-width:992px){

    .main-menu{
        position:absolute;
        top:80px;
        right:6%;
        background:white;
        width:260px;
        border-radius:12px;
        box-shadow:0 15px 40px rgba(0,0,0,0.1);
        display:none;
        padding:20px;
    }

    .main-menu ul{
        flex-direction:column;
        gap:18px;
        align-items:flex-start;
    }

    .main-menu.active{
        display:block;
    }

    .menu-toggle{
        display:block;
    }

    .hero h1{
        font-size:38px;
    }

    .search-card{
        flex-direction:column;
    }

    .search-btn{
        width:100%;
    }
}

@media(max-width:576px){

    .hero{
        padding-top:160px;
    }

    .hero h1{
        font-size:30px;
    }

    .hero p{
        font-size:15px;
    }

    .hero-stats{
        gap:30px;
    }
}

/* =================================
   FEATURED JOB SECTION
================================= */

.featured-job-area {
    padding: 120px 6%;
    background: linear-gradient(180deg, #f8fafc, #eef2ff);
    position: relative;
    overflow: hidden;
}

/* Soft Background Glow */
.featured-job-area::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99,102,241,0.15), transparent 70%);
    top: -100px;
    right: -100px;
    filter: blur(80px);
}

/* Section Header */

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 70px;
}

.section-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(37,99,235,0.1);
    color: #2563eb;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.gradient-text {
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 17px;
    color: #64748b;
}

/* ===================================
   TECH JOB GRID SECTION
=================================== */

.tech-jobs-section {
  padding: 120px 6%;
  background: linear-gradient(180deg, #f8fafc, #eef2ff);
}

.section-container {
  max-width: 1300px;
  margin: auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.section-tag {
  display: inline-block;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 30px;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 15px;
}

.gradient-text {
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  font-size: 17px;
  color: #64748b;
}

/* ==========================
   GRID
========================== */

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* ==========================
   CARD
========================== */

.tech-card {
  background: white;
  padding: 35px 30px;
  border-radius: 22px;
  text-align: left;
  transition: 0.35s ease;
  border: 1px solid #eef2f7;
  position: relative;
  overflow: hidden;
}

.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  border-color: #dbeafe;
}

/* Soft hover gradient overlay */
.tech-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(124,58,237,0.08));
  opacity: 0;
  transition: 0.4s;
}

.tech-card:hover::before {
  opacity: 1;
}

/* Icon */

.tech-icon {
  font-size: 34px;
  margin-bottom: 18px;
}

/* Title */

.tech-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

/* Description */

.tech-card p {
  font-size: 14.5px;
  color: #64748b;
  margin-bottom: 22px;
  line-height: 1.5;
}

/* Button */

.explore-btn {
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  transition: 0.3s;
  position: relative;
}

.explore-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #2563eb;
  transition: 0.3s;
}

.explore-btn:hover::after {
  width: 100%;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 992px) {
  .section-header h2 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .tech-jobs-section {
    padding: 80px 5%;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .tech-card {
    padding: 28px 22px;
  }
}

.job-meta {
  font-size: 14px;
  color: #475569;
  margin-bottom: 8px;
}

.job-meta strong {
  color: #1e293b;
}

/* ===============================
   DESCRIPTION
================================ */

.job-desc {
  margin-top: 12px;
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}
/* ===============================
   WALK-IN SECTION
================================ */

.walkin-section {
  padding: 110px 6%;
  background: linear-gradient(180deg, #eef2ff, #f8fafc);
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Animated heading */
.walkin-header {
  text-align: center;
  margin-bottom: 70px;
}

.walkin-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  animation: fadeSlide 1s ease forwards;
}

.walkin-header span {
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.walkin-header p {
  margin-top: 12px;
  color: #64748b;
  font-size: 16px;
  animation: fadeSlide 1.2s ease forwards;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   GRID
================================ */

.walkin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 35px;
  max-width: 1300px;
  margin: auto;
}

/* ===============================
   CARD DESIGN
================================ */

.walkin-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 30px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.walkin-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(15, 23, 42, 0.12);
  border-color: #dbeafe;
}

/* Subtle top highlight strip */
.walkin-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
}

/* ===============================
   TECHNOLOGY BADGE
================================ */

.tech-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  background: rgba(37,99,235,0.1);
  color: #2563eb;
  margin-bottom: 18px;
}

/* ===============================
   CONTENT
================================ */

.walkin-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0f172a;
}

.walkin-desc {
  font-size: 14.5px;
  color: #64748b;
  margin-bottom: 18px;
  line-height: 1.6;
}

.walkin-info {
  font-size: 14px;
  margin-bottom: 6px;
  color: #475569;
}

.walkin-info strong {
  color: #1e293b;
}

/* Walk-in date highlight */
.walkin-date {
  margin-top: 15px;
  padding: 10px 14px;
  background: rgba(124,58,237,0.08);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #7c3aed;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .walkin-header h2 {
    font-size: 30px;
  }

  .walkin-card {
    padding: 24px;
  }
}
/* ==================================
   TRUSTED COMPANIES SECTION
================================== */

/* ===================================
   TRUSTED COMPANIES CAROUSEL
=================================== */

.trusted-carousel-section {
  padding: 100px 6%;
  background: linear-gradient(180deg, #eef2ff, #f8fafc);
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
}

.carousel-header {
  text-align: center;
  margin-bottom: 60px;
}

.carousel-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
}

.carousel-header span {
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.carousel-header p {
  margin-top: 12px;
  color: #64748b;
  font-size: 16px;
}

/* ==========================
   CAROUSEL
========================== */

.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 30px;
  animation: scroll 25s linear infinite;
}

.carousel-wrapper:hover .carousel-track {
  animation-play-state: paused;
}

/* Infinite scrolling animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================
   COMPANY ITEM
========================== */

.company-item {
  min-width: 240px;
  background: #ffffff;
  padding: 25px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.05);
  text-align: center;
  transition: 0.3s;
}

.company-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.1);
  border-color: #dbeafe;
}

.company-logo {
  width: 55px;
  height: 55px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: white;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.company-item span {
  font-size: 13px;
  color: #64748b;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 768px) {
  .carousel-header h2 {
    font-size: 28px;
  }

  .company-item {
    min-width: 200px;
  }
}

/* ===================================
   TECHNOLOGY JOB STATS SECTION
=================================== */

.tech-stats-section {
  padding: 110px 6%;
  background: linear-gradient(180deg, #f8fafc, #eef2ff);
  font-family: 'Segoe UI', sans-serif;
}

.tech-stats-header {
  text-align: center;
  margin-bottom: 70px;
}

.tech-stats-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
}

.tech-stats-header span {
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tech-stats-header p {
  margin-top: 12px;
  color: #64748b;
  font-size: 16px;
}

/* ==========================
   GRID
========================== */

.tech-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: auto;
}

/* ==========================
   CARD
========================== */

.tech-stat-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: 0.35s ease;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.05);
}

.tech-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
  border-color: #dbeafe;
}

/* ICON */

.tech-icon {
  font-size: 36px;
  margin-bottom: 15px;
}

/* TITLE */

.tech-stat-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 10px;
}

/* COUNT */

.job-count {
  font-size: 20px;
  font-weight: 400;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 768px) {
  .tech-stats-header h2 {
    font-size: 28px;
  }

  .tech-stat-card {
    padding: 28px 20px;
  }
}
/* ===================================
   REVIEWS SECTION
=================================== */

.reviews-section {
  padding: 110px 6%;
  background-color: #0f172a;
  position: relative;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  overflow: hidden;
}

/* Dotted pattern overlay */
.reviews-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.3;
  pointer-events: none;
}

/* Header */

.reviews-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}

.reviews-header h2 {
  font-size: 40px;
  font-weight: 800;
}

.reviews-header span {
  background: linear-gradient(90deg, #3b82f6, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reviews-header p {
  margin-top: 12px;
  color: #cbd5e1;
  font-size: 16px;
}

/* Grid */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* Card */

.review-card {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  transition: 0.35s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Text */

.review-text {
  font-size: 15px;
  line-height: 1.6;
  color: #e2e8f0;
  margin-bottom: 20px;
}

/* User */

.review-user h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.review-user span {
  font-size: 13px;
  color: #94a3b8;
}

/* Responsive */

@media (max-width: 768px) {
  .reviews-header h2 {
    font-size: 28px;
  }

  .review-card {
    padding: 22px;
  }
}

/* ============================
   FOOTER
============================ */

.main-footer {
  background: #0b0f19;
  color: #cbd5e1;
  padding: 90px 6% 30px;
  position: relative;
  overflow: hidden;
}

/* Subtle Grid Background */

.main-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 50px;
  position: relative;
  z-index: 2;
}

/* Logo */

.footer-logo {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 15px;
  color: white;
}

/* Paragraph */

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #94a3b8;
}

/* Headings */

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 18px;
  font-weight: 600;
  color: white;
}

/* Links */

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #94a3b8;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #6366f1;
  padding-left: 5px;
}

/* Social Icons */

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: white;
  transition: 0.3s;
  font-size: 14px;
}

.social-icons a:hover {
  background: linear-gradient(90deg,#6366f1,#2563eb);
  transform: translateY(-4px);
}

/* Contact */

.contact-info li {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 10px;
}

/* Bottom */

.footer-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: #64748b;
  position: relative;
  z-index: 2;
}

/* Responsive */

@media (max-width: 768px) {
  .main-footer {
    padding: 70px 6% 30px;
  }
}

/* =========================================
   TECHNOKRI HOW IT WORKS (ISOLATED BLOCK)
========================================= */

.tnk-how-works {
  padding: 120px 5%;
  background: linear-gradient(180deg, #f9fbff, #eef2ff);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.tnk-how-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */

.tnk-how-header {
  text-align: center;
  margin-bottom: 80px;
}

.tnk-how-badge {
  display: inline-block;
  padding: 7px 18px;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.tnk-how-header h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #0f172a;
}

.tnk-how-header h2 span {
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tnk-how-header p {
  font-size: 16px;
  color: #64748b;
}

/* Steps Grid */

.tnk-how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  position: relative;
}

/* Cards */

.tnk-how-card {
  background: #ffffff;
  padding: 50px 30px 40px;
  border-radius: 22px;
  text-align: center;
  position: relative;
  transition: 0.4s ease;
  border: 1px solid #eef2f7;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.05);
}

.tnk-how-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.12);
}

/* Step Number */

.tnk-how-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  color: #fff;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 40px;
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

/* Icon */

.tnk-how-icon {
  width: 75px;
  height: 75px;
  margin: 30px auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  transition: 0.4s ease;
}

.tnk-how-card:hover .tnk-how-icon {
  transform: rotateY(180deg);
}

/* Text */

.tnk-how-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0f172a;
}

.tnk-how-card p {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.6;
}

/* Responsive */

@media (max-width: 768px) {
  .tnk-how-works {
    padding: 90px 5%;
  }

  .tnk-how-header h2 {
    font-size: 32px;
  }
}

