    
    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
    }

    .yellow-side {
      background-color: #facc15;
      width: 60px;
    }

    @media (max-width: 992px) {
      .yellow-side {
        display: none;
      }
    }

    .top-bar {
      background-color: #ffffff;
      padding: 12px 0;
      position: relative;
      z-index: 10;
    }

    .logo-container {
      position: relative;
      display: flex;
      align-items: center;
    }

    .logo-container::after {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 60px;
      height: 6px;
      background-color: #facc15;
    }

    .logo-img {
      height: 50px;
      width: auto;
    }

    .brand-text {
      font-weight: 700;
      font-size: 20px;
      margin-left: 10px;
    }

    .login-register {
      display: flex;
      gap: 5px;
    }

    .btn-login {
      background-color: #0f1e2e;
      color: white;
      border-radius: 0;
      border: none;
      padding: 6px 15px;
      font-weight: 500;
    }

    .btn-register {
      background-color: #facc15;
      color: black;
      border-radius: 0;
      border: none;
      padding: 6px 15px;
      font-weight: 600;
    }

    .nav-bar {
      background-color: #0f172a;
      position: relative;
      z-index: 9;
    }

    .nav-link {
      color: white !important;
      font-weight: 400;
      padding: 12px 15px;
    }

    .nav-link.active,
    .nav-link:hover {
      color: #facc15 !important;
    }

    .navbar-nav .dropdown-menu {
      background-color: #ffffff;
    }

    .navbar-nav .dropdown-item:hover {
      background-color: #f8f9fa;
    }
	
	.hero-section {
    height: auto;
    position: relative;
    overflow: hidden;
    }

    .hero-section img {
        width: 100%;
        object-fit: cover;
    }

    .hero-section h2, .hero-section p {
        text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
    }
    
    /* Play Button */
    .play-button {
      position: absolute;
      bottom: 15px;
      right: 15px;
      font-size: 40px;
      background: #000;
      color: #fff;
      border-radius: 50%;
      width: 100px;
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      z-index: 10;
      transition: background 0.3s;
    }

    .play-button:hover {
    background: rgba(0, 0, 0, 0.8); /* Darken more on hover */
    }

    @media (max-width: 576px) {
        .play-button {
        bottom: 15px;
        right: 15px;
        font-size: 20px;
        width: 50px;
        height: 50px;
      }
    }
    /* Service Box */
    .service-box {
    position: relative;
    overflow: hidden;
    padding: 30px 20px;
    background-color: #fff;
    border-right: 1px solid #e0e0e0;
    transition: transform 0.4s ease-in-out;
    height: 100%;
    z-index: 0;
    }
    .service-box:last-child {
    border-right: none;
    }
    .service-box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: #0d1b2a;
    transform: translateY(-50%);
    transition: height 0.6s ease-in-out;
    z-index: 0;
    }
    .service-box:hover::before {
    height: 300%;
    }
    .service-box:hover {
    transform: scale(1.02);
    }
    .service-content {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    z-index: 1;
    }
    .icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    transition: 0.3s ease;
    }
    .service-box:hover .icon {
    animation: bounce 0.6s ease-in-out;
    filter: brightness(0) invert(1);
    }
    @keyframes bounce {
    0%   { transform: translateY(0); }
    30%  { transform: translateY(-10px); }
    60%  { transform: translateY(5px); }
    100% { transform: translateY(0); }
    }
    .service-text h6 {
    font-weight: 700;
    margin-bottom: 6px;
    transition: color 0.3s ease;
    }
    .service-text a {
    margin-bottom: 0;
    font-size: 14px;
    color: #666;
    text-decoration: solid;
    transition: color 0.3s ease;
    }
    .service-box:hover .service-text h6,
    .service-box:hover .service-text a {
    color: #fff;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
    .service-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .icon {
        margin-bottom: 10px;
    }
    .service-box {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    }

    .fixed-grid {
    max-height: 500px;   /* only 2 rows visible */
    overflow-y: auto;    /* scroll if more cards */
    }

    /* Responsive grid */
    .service-grid {
      display: grid;
      gap: 1rem;
      grid-template-columns: repeat(1, 1fr);
      grid-auto-rows: 1fr;
    }

    @media (min-width: 576px) {
      .service-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (min-width: 768px) {
      .service-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (min-width: 992px) {
      .service-grid { grid-template-columns: repeat(4, 1fr); }
    }
    /* Keep header fixed */
    .modal-header.sticky-top {
      z-index: 1056; /* above modal body */
    }
    /* Auto-scroll styles */
    .scroll-container {
    overflow: hidden;
    width: 100%;
    }
    .scroll-track {
    display: flex;
    will-change: transform;
    }
    .scroll-item {
    flex: 0 0 auto;
    width: 300px;
    margin-right: 15px;
    }
    @media (max-width: 992px) {
    .scroll-item {
        width: 250px;
    }
    }
    @media (max-width: 768px) {
    .scroll-item {
        width: 80%;
        margin-right: 10px;
    }
    }

    /* Circular Label */
    .circle-progress {
      position: relative;
      width: 100px;
      height: 100px;
      margin: auto;
    }

    .circle-progress svg {
      transform: rotate(-90deg);
    }

    .circle-bg {
      fill: none;
      stroke: #eaeaea;
      stroke-width: 5;
    }

    .circle-bar {
      fill: none;
      stroke: #facc15;
      stroke-width: 5;
      stroke-linecap: round;
      stroke-dasharray: 282.6; /* 2πr (r = 45) */
      stroke-dashoffset: 282.6;
      transition: stroke-dashoffset 1s ease-out;
    }

    .circle-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-weight: 500;
      font-size: 18px;
      color: #333;
    }

    .label {
      text-align: center;
      font-weight: 600;
      margin-top: 10px;
      text-transform: uppercase;
      font-size: 13px;
      color: #222;
    }

    /* Policy Slider Container */
    .slider-wrapper {
      overflow: hidden;
      position: relative;
    }

    .slider-container {
      overflow-x: auto;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
    }

    .card-slider {
      display: flex;
      gap: 20px;
      padding: 10px;
    }

    /* Clean card style */
    /* .custom-card {
      flex: 0 0 calc(100% / 3 - 20px);
      padding: 20px;
      background-color: #fff;
      height: 100%;
      border: none;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      border-radius: 10px;
    } */
    .custom-card {
      flex: 0 0 calc(100% / 3 - 20px); /* 3 per row desktop */
      display: flex;
      flex-direction: column;
      text-align: center;
      justify-content: space-between;
      padding: 20px;
      background-color: #fff;
      border: none;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      border-radius: 10px;
      height: 350px; /* fixed desktop height */
    }

    .custom-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    }

    /* .custom-card img {
      width: 100%;
      height: auto;
      object-fit: cover;
      margin-bottom: 15px;
      border-radius: 8px;
    } */
    .custom-card img {
      width: 100%;
      height: 150px;       /* fixed image size */
      object-fit: contain; /* keeps full image visible */
      margin-bottom: 15px;
      border-radius: 8px;
    }
    /* .custom-card .card-title {
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 10px;
    } */
    .custom-card .card-title {
      flex-grow: 1;
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: 10px;
      text-align: center;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;  /* show max 2 lines */
      -webkit-box-orient: vertical;
    }

    .custom-card .card-text {
      color: #666;
      font-size: 0.9rem;
      margin-bottom: 15px;
    }
    /* Tablet: 2 per row, smaller height */
    @media (max-width: 992px) {
      .custom-card {
        flex: 0 0 calc(100% / 2 - 15px);
        height: 300px;
      }

      .custom-card img {
        height: 130px;
      }
    }

    /* Mobile: 1 per row, auto height */
    @media (max-width: 576px) {
      .custom-card {
        flex: 0 0 100%;
        height: auto; /* let card grow naturally */
      }

      .custom-card img {
        height: 120px;
      }
    }
    .read-more {
      display: inline-block;
      padding: 10px 18px;
      background: #facc15; /* green gradient for download */
      color: #fff;
      font-weight: 600;
      text-transform: uppercase;
      font-size: 0.9rem;
      border-radius: 50px; /* pill shape */
      text-decoration: none;
      letter-spacing: 0.5px;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
      transition: all 0.3s ease;
    }

    .read-more:hover {
      background: linear-gradient(135deg, #218838, #1e7e34);
      box-shadow: 0 5px 14px rgba(0, 0, 0, 0.25);
      transform: translateY(-2px) scale(1.03);
    }

    .read-more::after {
      color: #facc15;
      font-weight: bold;
    }

    /* Nav buttons */
    .policy-nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: #facc15;
      color: white;
      border: none;
      border-radius: 50%;
      width: 35px;
      height: 35px;
      font-size: 1.5rem;
      cursor: pointer;
      z-index: 10;
    }

    .policy-nav-left {
      left: 0;
    }

    .policy-nav-right {
      right: 0;
    }

    /* Responsive tweaks */
    @media (max-width: 768px) {
      .custom-card {
        flex: 0 0 80%;
      }

      .policy-nav-btn {
        display: none;
      }
    }

    @media (max-width: 480px) {
      .custom-card {
        flex: 0 0 90%;
      }
    }

    /* Logo Slider */
    .logo-slider {
    overflow: hidden;
    background: #fff;
    padding: 20px 0;
  }

.logo-slide-track {
  display: flex;
  gap: 30px;
  flex-wrap: nowrap;
}

.logo-slide {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-slide img {
  max-width: 120px;
  height: auto;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

.logo-slide img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .logo-slide img {
    max-width: 80px;
  }
}

/* Contact Details */
    .section-title {
      font-weight: bold;
      text-align: center;
      margin-bottom: 20px;
    }

    .section-title::after {
      content: "";
      display: block;
      width: 100px;
      height: 5px;
      background-color: #facc15;
      margin: 8px auto 20px;
    }

    .contact-box {
      background-color: #fffbfb;
    border-radius: 16px;
    box-shadow: -13px 5px 20px 12px rgb(0 0 0 / 8%);
    padding: 30px;
    }

    .contact-box .icon {
      font-size: 1.5rem;
      color: #facc15;
      margin-right: 15px;
    }

    .contact-info {
      margin-bottom: 20px;
      display: flex;
      align-items: start;
    }

    .contact-text {
      font-size: 0.95rem;
    }

    iframe {
      border: 0;
      width: 100%;
      height: 350px;
      border-radius: 10px;
    }

    /* Footer */
    .footer {
      display: flex;
      flex-wrap: wrap;
      color: #fff;
    }

    .footer-left {
      background-color: #facc15; /* Bright yellow */
      color: #000;
      flex: 1;
      min-width: 250px;
      padding: 30px;
    }
    .footer-left a{
      color: black;
      text-decoration: inherit;
    }
    .footer-right {
      background-color: #0e1a23; /* Deep navy */
      flex: 3;
      min-width: 300px;
      padding: 30px;
      --bs-gutter-x: 0;
    }

    .footer-right .footer-column {
      margin-bottom: 20px;
    }

    .footer-right h6 {
      font-weight: 600;
      margin-bottom: 10px;
    }

    .footer-right ul {
      list-style: none;
      padding-left: 0;
    }

    .footer-right ul li {
      margin-bottom: 5px;
      font-size: 0.95rem;
    }

    .footer-right ul li a {
      color: #ccc;
      text-decoration: none;
    }

    .footer-right ul li a:hover {
      color: #fff;
      text-decoration: underline;
    }

    .footer-bottom {
      background-color: #0e1a23;
      color: #ccc;
      font-size: 0.85rem;
      padding: 10px 30px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      border-top: 1px solid #ddd;
    }

    .footer-bottom span {
      display: block;
      margin-top: 5px;
    }
    @media (max-width: 768px) {
      .footer {
        flex-direction: column;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
    }

    /* services templates */
    .services-header {
    background: url('/images/commonasset1.png'), #333; /* dark bg with dots */
    background-size: contain;
    color: #fff;
    padding: 20px 40px;
    }

    .services-title {
    font-weight: 700;
    font-size: 28px;
    display: inline-block;
    position: relative;
    }

    .services-title .underline {
    display: inline-block;
    height: 3px;
    width: 50px;
    background: #facc15;
    margin-left: 10px;
    vertical-align: middle;
    }

    .breadcrumb-custom {
    font-size: 16px;
    color: #fff;
    }

    .breadcrumb-custom i {
    margin-right: 5px;
    color: #fff;
    }


    /* Card Styling */
    .service-card {
      border: none;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgb(22 21 21);
      transition: transform 0.2s;
      height: 100%;
    }
    .service-card:hover {
      transform: translateY(-4px);
    }
    .service-card .card-body {
      padding: 20px;
    }
    .service-card .authority {
      color: #f47c1c;
      font-size: 14px;
      font-weight: 500;
    }
    .service-card .service-title {
      font-weight: 600;
      font-size: 15px;
      margin-top: 8px;
    }

    /* Pagination */
    .custom-pagination {
    gap: 0; /* remove Bootstrap gap */
    }

    .custom-pagination .page-item {
    margin: 0; /* ensure no extra space */
    }

    .custom-pagination .page-link {
    border: none;
    color: #7a7a9d;
    font-weight: 500;
    background: transparent;
    }

    .custom-pagination .page-item.active .page-link {
    background-color: #1dd1a1; /* green */
    border-radius: 6px;
    color: #fff;
    margin-left: 5px;
    }

    .custom-pagination .prev-next {
    border: 1px solid #ff7f32; /* orange */
    border-radius: 6px;
    padding: 5px 14px;
    font-weight: 600;
    color: #ff7f32;
    display: flex;
    align-items: center;
    gap: 5px;
    }

    .custom-pagination .prev-next:hover {
    background: #ff7f32;
    color: #fff;
    }

    .custom-pagination .disabled .page-link {
    pointer-events: none;
    color: #999;
    }


    /* Search */
    .search-box {
      /* max-width: 350px; */
      margin: 0 auto 30px auto;
    }

    /* About Templates */

    .section-about-title {
      font-weight: bold;
      text-align: left;
      margin-bottom: 20px;
      font-family: ui-monospace;
    }

    .section-about-title::after {
      content: "";
      display: block;
      width: 100px;
      height: 5px;
      background-color: #facc15;
    }