<style>
.table-custom {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
}

.table-custom th, 
.table-custom td {
    padding: 8px 10px;
    border: 1px solid #ddd;
}
.table-custom th.sr {
    min-width: 45px;
    text-align: center;
}

.table-custom th.apply {
    min-width: 180px;
    text-align: center;
}
.table-custom th.fee {
    min-width: 180px;
    text-align: center;
}
.table-custom thead {
    background-color: #0056b3;
    color: #fff;
}

.table-custom tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.table-custom tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

.table-custom td.fee {
    text-align: right;
}

.table-custom td.apply {
    text-align: center;
}
/* ===== Mobile Horizontal Scroll for Table ===== */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
}
@media (max-width: 768px) {
    .table-responsive {
        overflow-x: auto;
    }

    .table-custom {
        min-width: 900px;
    }
}
.applyBtn {
    background-color: #007bff;      /* Blue background */
    color: #ffffff;                 /* White text */
    border: none;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;           /* Prevent text wrapping */
    display: inline-block;         /* Ensures proper button behavior for <a> */
    text-decoration: none;         /* Remove underline if anchor tag */
}

/* Hover effect */
.applyBtn:hover {
    background-color: #0056b3;      /* Darker blue */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Active click effect */
.applyBtn:active {
    transform: translateY(0);
    box-shadow: none;
}
/* Make tabs equal width */
.zptabs {
    display: flex !important;
    flex-wrap: nowrap !important;
}

/* Individual tab */
.zptab {
    flex: 1 1 0 !important;
    height: auto !important;
    padding: 14px 8px !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

/* Tab title styling */
.zptab-name {
    white-space: normal !important;     /* allow wrapping */
    text-align: center !important;
    line-height: 1.25;
    font-size: 14px;
    font-weight: 600;
    max-width: 140px;                   /* controls 2-line layout */
}
/* First Tab */
.zptabs .zptab:nth-child(1) .zptab-name::before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 auto 8px;
    background: url("https://aicanushakti.zohosites.in/Tech-Department/6ueusAPDhIvUiglSsh03o3YuZMfLVaE5w5Or1KBq.jpeg") no-repeat center;
    background-size: contain;
}

/* Second Tab */
.zptabs .zptab:nth-child(2) .zptab-name::before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 auto 8px;
    background: url("IMAGE2_URL") no-repeat center;
    background-size: contain;
}
.reset-btn {
    padding: 6px 12px;
    background-color: #444;   /* Dark grey */
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.reset-btn:hover {
    background-color: #222;   /* Slightly darker on hover */
}

/* ===== Global Typography ===== */
body {
  font-family: "Inter", sans-serif;
  color: #222;
  line-height: 1.8;
  background: #ffffff;
}

/* ===== Container Width ===== */
.tech-container {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
}

/* ===== Hero Layout ===== */
.tech-hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ===== Title Styling ===== */
.tech-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}

.tech-category {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 30px;
}

/* ===== Divider ===== */
.tech-divider {
  height: 1px;
  background: #e5e5e5;
  margin: 60px 0;
}

/* ===== Section Heading ===== */
.tech-section-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
}

/* ===== Buttons ===== */
.tech-btn {
  display: inline-block;
  padding: 12px 26px;
  border: 1px solid #111;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.tech-btn:hover {
  background: #111;
  color: #fff;
}
</style>