﻿p
{
    font-size:14px;
}
/* ==== Floating Glass Tabs Section ==== */
.page-links-section {
  background: linear-gradient(90deg, #fff7f0, #fff);
  padding: 3px 0;
  border-top: 1px solid #005f6e;
  border-bottom: 2px solid #f5c000;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

/* Wrapper becomes horizontally scrollable */
.page-links-wrapper {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 60px; /* space for arrows */
  scrollbar-width: none; /* Firefox */
}
.page-links-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

/* Background line */
.page-links-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ee482c, #ff7b00, #ee482c);
  opacity: 0.2;
  transform: translateY(-50%);
  z-index: 0;
}

.link-item {
  position: relative;
  display: inline-block;
  padding: 12px 25px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #333;
  border-radius: 40px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.35s ease;
  z-index: 1;
  border:none !important;
 /* border: 1px solid rgba(255,255,255,0.6); */
  white-space: nowrap;
}

.link-item:hover {
  transform: translateY(-5px);
  background:#f5c000;
  color: #fff;
  box-shadow: 0 6px 20px rgba(238,72,44,0.25);
}

.link-item.active 
{
  border: 2px solid #00bcd4;
  /*background: linear-gradient(135deg, #ee482c, #ff7b00); */
  background: linear-gradient(135deg, #fde116, #00000000);
  color: #000;
  box-shadow: 0 6px 20px rgba(238,72,44,0.35);
  border: none;
}

/* Subtle glow */
.link-item.active::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  padding: 2px;
  background: linear-gradient(135deg, #ee482c, #ff7b00);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Scroll arrows */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #00295e;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
}

.scroll-btn:hover {
 /* background: linear-gradient(135deg, #ee482c, #ff7b00); */
 background: linear-gradient(135deg, #fde116, #00000000);
  color: #000;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .link-item {
    padding: 10px 18px;
    font-size: 14px;
  }
  .scroll-btn {
    width: 32px;
    height: 32px;
  }
}

/* ========= Inner Banner with Breadcrumb section Style ==========*/
.inner-banner {
  height: 30vw;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.inner-banner::before,
.inner-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ===== Overlay on image ===== */
.inner-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
  z-index: 2;
}

.inner-heading-content {
  transform: translateY(-50%);
  background-color: var(--primary-color);
  padding: 10px 2rem;
  border-radius: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner-title {
  color: #fff;
  font: 700 2rem / 1 var(--serif);
}

.inner-breadcrumb {
  width: auto;
  background: none;
  margin-bottom: 0;
  padding-left: 0;
  justify-content: center;
  display: flex;
  gap: 5px;
}

.inner-breadcrumb li 
{
  list-style:none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}

.inner-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  float: none;
  content: "\f101";
  font: 900 13px "Font Awesome 6 Free";
  color: #fff;
}

.inner-breadcrumb li a {
  color: #fff;
}

.inner-breadcrumb li a:hover {
  text-decoration: underline;
}

.inner-breadcrumb .breadcrumb-item.active {
  color: #eab04e;
}

/* ========= Inner Banner with Breadcrumb section Style END ==========*/

.about-title
{
    font-size:30px; 
    font-weight:700;
    text-align:center;
}

/* General Instruction Style */
  .instruction-section {
    border-radius: 12px;
    padding: 40px 30px;
    font-family: 'Poppins', sans-serif;
    color: #333;
    margin-bottom: 40px;
  }

  .instruction-title {
    font-size: 26px;
    font-weight: 600;
    color: #d96600;
    margin-bottom: 25px;
   /* border-left: 6px solid #ff7474; */
    padding-left: 15px;
  }

  .instruction-list {
    counter-reset: instruction-counter;
    list-style: none;
    padding-left: 0;
    margin: 0;
  }

  .instruction-list li {
    counter-increment: instruction-counter;
    position: relative;
    background: #fff;
    padding: 15px 20px 15px 60px;
    margin-bottom: 15px;
   /* border-left: 4px solid #ff7474; */
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(68, 50, 102, 0.08);
  }

  .instruction-list li:hover {
    background: #ebe0ca;
    transform: scale(1.01);
   /* box-shadow: 0 6px 20px rgba(68, 50, 102, 0.15); */
  }

  .instruction-list li::before {
    content: counter(instruction-counter) ".";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    font-size: 18px;
    color: #003366;
  }
 /* General Instruction Style END */