:root {
  --primary: #004aad;
  --secondary: #00b4d8;
  --overlay: rgba(0, 20, 60, 0.45);
  --primary-dark: #1e40af;
  --success: #10b981;
  --success-dark: #059669;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --radius: 8px;
  --radius-lg: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
/* Global */
body {
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Poppins,
    Oxygen, Ubuntu, sans-serif;
}


.bg-wrapper {
  position: relative;
  background:  linear-gradient(30deg, #ce9033, #0077ff);
}
.bg-wrapper .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(27, 73, 172, 0.75),
    rgba(255, 165, 81, 0.35)
  );
  z-index: 0;
}
/* NAVBAR */
.navbar {
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
}

/* Logo sizing */
.site-logo {
  height: 40px; /* Mobile default */
  transition: height 0.3s ease;
}

/* Desktop: 992px and above (Bootstrap's lg breakpoint) */
@media (min-width: 992px) {
  .site-logo {
    height: 50px;
  }
}

.nav-icon i {
  font-size: 1.3rem;
  color: #fff;
}
.btn-menu {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn-investor {
  font-weight: 600;
  background: rgba(12, 93, 241, 0.7);
  border: 1px solid white;
  color: #fff;
}
.btn-investor:hover {
  background: #fff;
  color: var(--primary);
}
/* ===== MEGA MENU ===== */
.mega-menu {
  position: fixed; /* Changed from absolute to fixed */
  top: 80px; /* Adjust based on your navbar height */
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  padding: 30px 40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 9999;
  border: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  max-height: calc(100vh - 100px); /* Prevent it from going off-screen */
  overflow-y: auto; /* Add scroll if content is too long */
}
.mega-menu.open {
  opacity: 1;
  visibility: visible;
}
.mega-title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(0, 180, 216, 0.2);
  display: inline-block;
  padding-bottom: 3px;
}
.mega-list {
  list-style: disc;
  padding-left: 15px;
  margin: 0;
}

.mega-list a {
  color: #222;
  text-decoration: none;
  font-size: 0.8rem;
  line-height: 0rem;
}
.mega-list a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* OFFCANVAS MENU */
.offcanvas {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}
.offcanvas a {
  font-weight: 500;
  text-decoration: none;
}
.offcanvas a:hover {
  text-decoration: underline;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  bottom: 0;
  left: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  padding: 0 60px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-center-logo{
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  padding: 6px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* CENTERED TITLE */
.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00ffbb, #6abeff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* INFO BUTTONS ROW */
.hero-buttons {
  display: flex;
  gap: 30px;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.info-button {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 10px 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  flex: 0 1 auto;
}

.info-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: left 0.6s ease;
}

.info-button:hover::before {
  left: 100%;
}

.info-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
}

.info-button-content {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.info-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(12, 241, 134, 0.8), rgba(106, 190, 255, 0.8));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.info-button:hover .info-icon-wrapper {
  transform: rotate(-5deg) scale(1.15);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.info-icon-wrapper i {
  font-size: 2rem;
  color: #fff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.info-button-text {
  text-align: left;
}

.info-button-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {

  .hero-buttons {
    gap: 20px;
  }
  
  .info-button {
    padding: 24px 30px;
  }
}

@media (max-width: 992px) {
  .hero-section {
    padding: 40px 0;
  }

  .hero-content {
    padding: 0 40px;
  }

  .hero-grid {
    gap: 50px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .info-button {
    padding: 22px 28px;
  }

  .info-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .info-icon-wrapper i {
    font-size: 1.7rem;
  }

  .info-button-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 0 30px;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-buttons {
    gap: 15px;
    max-width: 100%;
  }

  .info-button {
    padding: 20px 24px;
    flex: 1 1 calc(33.333% - 10px);
    min-width: 140px;
  }

  .info-button-content {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .info-icon-wrapper {
    width: 55px;
    height: 55px;
  }

  .info-icon-wrapper i {
    font-size: 1.5rem;
  }

  .info-button-text {
    text-align: center;
  }

  .info-button-title {
    font-size: 1rem;
    white-space: normal;
  }

  .info-button:hover {
    transform: translateY(-5px) scale(1.02);
  }
}

@media (max-width: 576px) {
  .hero-content {
    padding: 0 20px;
  }

  .hero-grid {
    gap: 35px;
  }

  .hero-title {
    font-size: 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    gap: 15px;
  }

  .info-button {
    width: 100%;
    max-width: 100%;
    padding: 20px 25px;
    flex: none;
  }

  .info-button-content {
    flex-direction: row;
    text-align: left;
    gap: 18px;
  }

  .info-icon-wrapper {
    width: 55px;
    height: 55px;
  }

  .info-icon-wrapper i {
    font-size: 1.5rem;
  }

  .info-button-text {
    text-align: left;
  }

  .info-button-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 400px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .info-button {
    padding: 18px 20px;
  }

  .info-icon-wrapper {
    width: 48px;
    height: 48px;
  }

  .info-icon-wrapper i {
    font-size: 1.3rem;
  }

  .info-button-title {
    font-size: 1rem;
  }
}

/* message from ministers */
.message-section {
  position: relative;
  color: #fff;
  overflow: hidden;
}
.cg-text {
  font-size: 2.2rem;
  font-weight: 700 !important;
  background: linear-gradient(90deg, #62c0d1, #baeba5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3;
}

.message-section .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.message-section .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 47, 108, 0.75),
    rgba(0, 47, 108, 0.35)
  );
  z-index: -1;
}

.message-section .container {
  position: relative;
  z-index: 2;
}

.content-area {
  padding: 60px 0 0 20px;
  margin-left: 0;
  margin-right: 0;
}

.content-area .bg-img {
  padding: 0;
}

.message-section h2 {
  font-size: 3rem;
  color: #ffcc00;
}

.message-section p.lead {
  font-size: 1.1rem;
  color: #f1f1f1;
}

.cm-photo {
  max-width: 100%;
  border-radius: 10px;
  position: relative;
  z-index: 3;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 4px;
  background-color: rgba(31, 31, 31, 0.7);
}

@media (max-width: 992px) {
  .message-section h2 {
    font-size: 2rem;
  }
  .cm-photo {
    margin-top: 2rem;
  }
}
/* Carousel */

.carousel-item.active {
  opacity: 1;
}

.carousel-indicators {
  position: absolute;
}

.carousel-indicators button {
  background-color: rgba(0, 0, 0, 0.7);
  border: none;
}

.carousel-indicators .active {
  background-color: #ffcc00;
}

.carousel-control-prev-icon {
  background-image: url("../img/left_arrow.png") !important;
}

.carousel-control-next-icon {
  background-image: url("../img/right_arrow.png") !important;
}

.section-padding {
  padding: 60px 0 60px;
}
.main-image {
  width: 80%;
  max-width: 450px;
  border-radius: 20px;
  overflow: hidden;
}

.main-image img {
  width: 100%;
  object-fit: cover;
}

.text-content {
  max-width: 500px;
  padding-right: 20px;
}

.highlight {
 
  color: #36943e;
  font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .main-image {
    width: 90%;
  }

  .text-content {
    text-align: left;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .text-content {
    text-align: left;
    max-width: 95%;
  }

  .main-image {
    width: 80%;
  }

  .highlight {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .main-image {
    width: 100%;
  }

  .highlight {
    font-size: 1.8rem;
  }

  .text-content h2 {
    font-size: 1.5rem;
  }

  .text-content p {
    font-size: 1rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 10%;
  }
}
/* ============================================
   ABOUT CHHATTISGARH SECTION
   ============================================ */

.about-cg-section {

  position: relative;
  overflow: hidden;
}

.about-cg-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 119, 255, 0.03) 100%);
  pointer-events: none;
}

/* Carousel Wrapper */
.about-carousel-wrapper {
  position: relative;
}

.about-slide {
  padding: 50px 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid #f0f0f0;
  position: relative;
}

/* Image Wrapper - Reduced Size */
.about-image-wrapper {
  position: relative;
  padding: 15px;
  max-width: 400px;
  margin: 0 auto;
}

.image-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.08), rgba(0, 184, 169, 0.08));
  border-radius: 20px;
  transform: rotate(-3deg);
  z-index: 0;
}

.about-image {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

/* Content */
.about-content {
  padding: 0 20px;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 30px;
  line-height: 1.2;
}

.highlight-text {
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* List Items - Clean, No Background */
.about-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 0;
  transition: all 0.3s ease;
}

.list-item:hover {
  transform: translateX(5px);
}

.list-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.list-icon i {
  font-size: 1rem;
  color: #0077ff;
}

.list-content {
  flex: 1;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* Navigation Inside Box at Bottom */
.carousel-navigation-inside {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.carousel-nav-btn {
  width: 30px;
  height: 30px;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 50%;
  color: #0077ff;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-nav-btn:hover {
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  color: #fff;
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 119, 255, 0.3);
}

/* Carousel Transitions */
.carousel-item {
  transition: transform 0.6s ease-in-out;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .about-slide {
    padding: 40px 30px 25px;
  }

  .about-title {
    font-size: 2.2rem;
  }

  .about-image-wrapper {
    max-width: 350px;
  }
}

@media (max-width: 992px) {


  .about-slide {
    padding: 35px 25px 25px;
  }

  .about-title {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .about-content {
    padding: 0 10px;
    margin-top: 30px;
  }

  .about-image-wrapper {
    max-width: 320px;
  }

  .list-content {
    font-size: 0.9rem;
  }

  .carousel-navigation-inside {
    margin-top: 35px;
    padding-top: 25px;
  }
}

@media (max-width: 768px) {


  .about-slide {
    padding: 30px 20px 20px;
  }

  .about-image-wrapper {
    padding: 10px;
 
  }

  .about-title {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }

  .about-list {
    gap: 10px;
  }

  .list-icon {
    width: 22px;
    height: 22px;
  }

  .list-icon i {
    font-size: 0.9rem;
  }

  .list-content {
    font-size: 0.875rem;
  }

  .carousel-navigation-inside {
    margin-top: 30px;
    padding-top: 20px;
    gap: 15px;
  }

  .carousel-nav-btn {
    width: 25px;
    height: 25px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .about-slide {
    padding: 25px 15px 20px;
    border-radius: 20px;
  }


  .about-title {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }

  .about-content {
    padding: 0;
  }

  .about-list {
    gap: 8px;
  }

  .list-item {
    gap: 10px;
  }

  .list-icon {
    width: 20px;
    height: 20px;
  }

  .list-icon i {
    font-size: 0.85rem;
  }

  .list-content {
    font-size: 0.85rem;
  }

  .carousel-navigation-inside {
    margin-top: 25px;
    padding-top: 20px;
  }

  .carousel-nav-btn {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 400px) {


  .about-title {
    font-size: 1.35rem;
  }

  .list-content {
    font-size: 0.8rem;
  }

  .carousel-nav-btn {
    width: 24px;
    height: 24px;
    font-size: 0.9rem;
  }
}

/* Animation */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.carousel-item.active .list-item {
  animation: slideInRight 0.5s ease-out backwards;
}

.carousel-item.active .list-item:nth-child(1) { animation-delay: 0.1s; }
.carousel-item.active .list-item:nth-child(2) { animation-delay: 0.15s; }
.carousel-item.active .list-item:nth-child(3) { animation-delay: 0.2s; }
.carousel-item.active .list-item:nth-child(4) { animation-delay: 0.25s; }
.carousel-item.active .list-item:nth-child(5) { animation-delay: 0.3s; }
.carousel-item.active .list-item:nth-child(6) { animation-delay: 0.35s; }
.carousel-item.active .list-item:nth-child(7) { animation-delay: 0.4s; }
.carousel-item.active .list-item:nth-child(8) { animation-delay: 0.45s; }
.carousel-item.active .list-item:nth-child(9) { animation-delay: 0.5s; }
.carousel-item.active .list-item:nth-child(10) { animation-delay: 0.55s; }

/* about */
.why-invest-section {
  position: relative;
  /* background: url("../../assets/img/why_invest.jpg") center/cover no-repeat; */
  margin: 60px 0;
}

.why-invest-box {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 1;
  height: auto;
}

.why-left {
  position: relative;
  z-index: 2;
}

.why-subtitle {
  font-size: 1.5rem;
  color: #1c4da1;
  margin-bottom: 0;
}

.why-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1c4da1;

}

/* Buttons */
.why-buttons {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  align-items: stretch;
  height: 100%;
  z-index: 2;
  position: relative;
}

.btn-invest {
  display: flex;

  align-items: center;
  font-weight: 600;
  font-size: 16px;
  color: #164bbf;
  border-radius: 14px;
  padding: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
 background: linear-gradient(90deg, #baeba5,#62c0d1);
}
.btn-invest i {
  position: absolute;
  margin-left: 10px;
  font-size: 15px;
  right: 15px;
}

.btn-invest:hover {
  background: #164bbf;
  color: #fff;
}

.btn-invest:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

/* Bottom image inside the box */
.why-img {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 991px) {
  .why-invest-box {
    padding: 40px 25px 200px;
  }
  .btn-invest{
    font-size: 1rem;
    padding: 10px;
    border-radius: 8px;
  }

  .why-title {
    font-size: 1.5rem;
  }
  .why-subtitle {
    font-size: 1.2rem;
  }

  .why-img {
    width: 180%;
    bottom: -10px;
  }

  .why-buttons {
    margin-top: 0px;
    gap: 5px;
  }
}


/* testimonial */
.investor-testimonials {
  /* background: #00135a url("../../assets/img/how-to-invest.jpg") center/cover  no-repeat; */

  position: relative;
  overflow: hidden;
}

.testimonial-subtitle {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 5px;
}

.testimonial-title {
  font-size: 46px;
  font-weight: 700;
  color: #ffffff;
}

.testimonial-box {
  background: rgba(255, 255, 255);
  border-radius: 18px;
  padding: 60px 60px 40px;
  margin: 80px auto 60px; /* Increased bottom margin */
  position: relative;

}
.testimonial-profile {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #eaf5f2;
  background: #fff;
}
 
.testimonial-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  margin-top: 30px;
  text-align: left;
  color: #222;
}

.quote-icon {
  font-size: 5rem;
  color: #43c99d;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.7;
  color: #0f3063;
  margin-bottom: 25px;
}

.testimonial-name {
  font-size: 18px;
  font-weight: 700;
  color: #0f3063;
  margin-bottom: 5px;
}

.testimonial-position {
  font-size: 15px;
  color: #2a64db;
}

/* Modern Glass-Style Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  width: 30px !important;
  height: 30px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  top: 50% !important;
  transform: translateY(-50%);
  margin-top: 0 !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px !important;
  font-weight: 700 !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: linear-gradient(135deg, #43c99d, #35b0e3);
  color: #fff;
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 10px 30px rgba(67, 201, 157, 0.5);
}
/* Glow Effect */
.swiper-button-next::before,
.swiper-button-prev::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(67, 201, 157, 0.4),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.swiper-button-next:hover::before,
.swiper-button-prev:hover::before {
  opacity: 1;
}

/* Adjust arrow placement */
.swiper-button-next {
  right: 50px;
}

.swiper-button-prev {
  left: 50px;
}

@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 20px !important;
    height: 20px !important;
  }
  .swiper-button-next {
    right: 20px;
  }
  .swiper-button-prev {
    left: 20px;
  }
}
/* Responsive */
@media (max-width: 991px) {
  .testimonial-box {
    padding: 80px 30px 50px;
  }

  .testimonial-title {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .testimonial-text {
    font-size: 15px;
  }

  .testimonial-profile {
    width: 140px;
    height: 140px;
    top: -60px;
  }
}

/* ============================================
   POLICY SECTION - Minimalist & Professional
   ============================================ */
.policy-section {
  position: relative;
  padding: 40px 0 60px 0;

}

.policy-stack {
  padding: 60px 0 90px;
}

.policy-divider {
  border-color: rgba(15, 23, 42, 0.08);
}

.policy-stack .policy-section {
  padding-top: 0;
}

/* Policy Card */
.policy-card {
  background: #fff;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.policy-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Card Body */
.policy-card-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.policy-card-body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #212529;
  margin: 0;
  line-height: 1.4;
}

/* Card Footer */
.policy-card-footer {
  padding: 0 24px 24px;
  margin-top: auto;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border: 2px solid #e9ecef;
  border-radius: 6px;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.download-btn i:last-child {
  margin-left: auto;
}

.download-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  transition: left 0.4s ease;
  z-index: 0;
}

.download-btn:hover::before {
  left: 0;
}

.download-btn span,
.download-btn i {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.download-btn:hover {
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}

.download-btn:hover span,
.download-btn:hover i {
  color: #fff;
}

.policy-icon-in-btn {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  color: #fff;
}

.download-btn:hover .policy-icon-in-btn {
  background: transparent;
}

.policy-icon-in-btn i {
  font-size: 0.8rem;
  color: #fff;
}

.download-btn i:last-child {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.download-btn:hover i:last-child {
  transform: translateY(2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .policy-section {
    padding: 40px 0;
  }

  .policy-card {

    margin-bottom: 16px;
  }

  .policy-card-body,
  .policy-card-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .policy-card-body {
    padding-bottom: 20px;
  }

  .policy-card-footer {
    padding-bottom: 20px;
  }

  .policy-card-body h3 {
    font-size: 1.1rem;
  }

  .download-btn {
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  .policy-icon-in-btn {
    width: 20px;
    height: 20px;
  }

  .policy-icon-in-btn i {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .policy-card-body {
    padding-top: 20px;
    padding-bottom: 16px;
  }

  .download-btn i:last-child {
    font-size: 1rem;
  }
}

/* ===== POLICY & NOTIFICATIONS SECTION ===== */
.policy-notifications-section {
  padding: 40px 0 60px;
  background: #f8f9fa;
}

/* Tab Navigation */
.policy-tabs-wrapper {
  background: #fff;
  border-radius: 12px;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 80px;
  z-index: 100;
}

.policy-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border: none;
  margin: 0;
  padding: 0;
}

.policy-tabs .nav-item {
  flex: 1;
  min-width: 150px;
}

.policy-tabs .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  border: none;
  border-radius: 4px;
  background: transparent;
  color: #6c757d;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.policy-tabs .nav-link i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.policy-tabs .nav-link:hover {
  color: var(--primary);
  background: rgba(0, 74, 173, 0.05);
  transform: translateY(-2px);
}

.policy-tabs .nav-link:hover i {
  transform: scale(1.1);
}

.policy-tabs .nav-link.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 74, 173, 0.3);
}

.policy-tabs .nav-link.active i {
  transform: scale(1.1);
}

/* Tab Content */
.policy-tab-content {
  margin-top: 30px;
}

.policy-documents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

/* Document Card */
.policy-doc-card {
  background: #fff;
  border-radius: 8px;
  padding: 14px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.policy-doc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.policy-doc-card:hover {
  box-shadow: 0 4px 16px rgba(0, 74, 173, 0.12);
  transform: translateY(-2px);
  border-color: var(--primary);
}

.policy-doc-card:hover::before {
  transform: scaleY(1);
}

/* Doc Header Row - Icon and Size parallel */
.doc-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.doc-icon-wrapper {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(0, 74, 173, 0.08), rgba(0, 180, 216, 0.08));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.doc-icon-wrapper i {
  font-size: 1.25rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.policy-doc-card:hover .doc-icon-wrapper {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: scale(1.05);
}

.policy-doc-card:hover .doc-icon-wrapper i {
  color: #fff;
  transform: scale(1.1);
}

.doc-size {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(0, 74, 173, 0.05);
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.75rem;
  color: #6c757d;
}

.doc-size i {
  font-size: 0.7rem;
}

.doc-content {
  flex-grow: 1;
  margin-bottom: 12px;
}

.doc-content h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.policy-doc-card:hover .doc-content h4 {
  color: var(--primary);
}

.doc-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #6c757d;
  margin: 0;
}

.doc-meta i {
  font-size: 0.85rem;
  margin-right: 2px;
}

.doc-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.doc-download-btn,
.doc-view-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 7px 12px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.3s ease;

  position: relative;
  overflow: hidden;
}

.doc-download-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 74, 173, 0.2);
}

.doc-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 74, 173, 0.3);
  color: #fff;
}

.doc-download-btn i {
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.doc-download-btn:hover i {
  transform: translateY(1px);
}

.doc-view-btn {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.doc-view-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 74, 173, 0.2);
}

.doc-view-btn i {
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.doc-view-btn:hover i {
  transform: scale(1.1);
}

/* Policy Period Accordion */
.policy-period-accordion {
  margin-top: 30px;
}

.policy-period-accordion .accordion-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.policy-period-accordion .accordion-item:hover {
  box-shadow: 0 4px 16px rgba(0, 74, 173, 0.1);
  border-color: var(--primary);
}

.policy-period-accordion .accordion-header {
  margin: 0;
}

.policy-period-accordion .accordion-button {
  background: linear-gradient(135deg, rgba(0, 74, 173, 0.05), rgba(0, 180, 216, 0.1));
  border: none;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: none !important;
}

.policy-period-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 74, 173, 0.2) !important;
}

.policy-period-accordion .accordion-button:focus {
  box-shadow: none !important;
  border-color: transparent;
  outline: none;
}

.policy-period-accordion .accordion-button i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.policy-period-accordion .accordion-button:not(.collapsed) i {
  color: #fff;
  transform: scale(1.1);
}

.policy-period-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a1a1a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.policy-period-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(180deg);
}

.policy-period-accordion .accordion-body {
  padding: 18px;
  background: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 992px) {
  .policy-tabs-wrapper {
    position: relative;
    top: 0;
  }

  .policy-tabs .nav-item {
    min-width: 120px;
  }

  .policy-tabs .nav-link {
    padding: 12px 16px;
    font-size: 0.85rem;
  }

  .policy-tabs .nav-link span {
    display: none;
  }

  .policy-tabs .nav-link i {
    font-size: 1.3rem;
  }

  .policy-period-accordion .accordion-button {
    padding: 16px 20px;
    font-size: 1rem;
  }

  .policy-period-accordion .accordion-body {
    padding: 24px 20px;
  }
}

@media (max-width: 768px) {
  .policy-notifications-section {
    padding: 40px 0 60px;
  }

  .policy-documents-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .policy-doc-card {
    padding: 20px;
  }

  .doc-icon-wrapper {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
  }

  .doc-icon-wrapper i {
    font-size: 1.75rem;
  }

  .doc-content h4 {
    font-size: 1.05rem;
  }

  .doc-meta {
    font-size: 0.8rem;
    gap: 12px;
  }

  .doc-actions {
    flex-direction: column;
    gap: 10px;
  }

  .doc-download-btn,
  .doc-view-btn {
    width: 100%;
    padding: 14px 20px;
  }
}

@media (max-width: 576px) {
  .policy-tabs-wrapper {
    padding: 6px;
  }

  .policy-tabs .nav-item {
    min-width: calc(50% - 4px);
  }

  .policy-tabs .nav-link {
    padding: 14px 12px;
  }

  .policy-period-accordion .accordion-button {
    padding: 14px 16px;
    font-size: 0.95rem;
  }

  .policy-period-accordion .accordion-body {
    padding: 20px 16px;
  }

  .policy-doc-card {
    padding: 18px;
  }

  .doc-content h4 {
    font-size: 1rem;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #02224d;
  color: #e6e6e6;
  padding: 60px 20px 30px;
  font-family: "Poppins", sans-serif;
}
.footer .container {
  margin: 0 auto;
  padding: 0;
}
.footer-title {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 0px;
}

.quick-links a {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 25px;
  border-radius: 25px;
  transition: 0.3s;
  text-decoration: none;
}

.quick-links a:hover {
  background: linear-gradient(135deg, #4ed1b1, #52b6f0);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.5);
  margin: 25px 0;
}

.footer-subtitle {
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer p {
  font-size: 15px;
  line-height: 1.6;
  color: #dcdcdc;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  font-size: 15px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  
}
.contact-list li a{
text-decoration:underline;
color:#fff;
}

.contact-list i {
  color: #4ed1b1;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  background: linear-gradient(135deg, #4ed1b1, #52b6f0);
  color: #fff;
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
}

.footer-bottom a {
  color: #4ed1b1;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 576px) {
  .quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
  }

  .quick-links a {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px 15px;
    border-radius: 25px;
    transition: 0.3s;
    text-decoration: none;
    font-size: 16px;
  }
  .follow {
    margin-top: 10px;
  }
}

/* investment_promotion */
/* ---------------- Banner ---------------- */
.page-banner {
  position: relative;
  height: 340px;
  background: url("../../assets/img/how-to-invest.jpg") center/cover
    no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.page-banner .one-click {
  position: absolute;
  width: 10%;
  z-index: 10;
  top: 30%;

 
}

.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.page-banner h1 {
  position: absolute;
  font-size: 42px;
  font-weight: 700;
  z-index: 2;
  bottom: 20px;
}

/* ---------------- Breadcrumb ---------------- */
.breadcrumb-nav {
  background: #dadada;

  font-size: 14px;
}

/* Legacy breadcrumb styles - only apply if not inside .breadcrumb-nav */
.breadcrumb-container:not(.breadcrumb-nav .breadcrumb-container):not(.breadcrumb-nav > .container) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  gap: 6px;
}

.breadcrumb-container:not(.breadcrumb-nav .breadcrumb-container):not(.breadcrumb-nav > .container) a {
  background: #3a3a3a;
  color: #ffffff;
  padding: 6px 14px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
}

.breadcrumb-container a:hover {
  background: #00a36c;
  color: #fff;
}

.breadcrumb-container a.active {
  background: #10b981;
  color: #fff;
}

.breadcrumb-container span {
  color: #333;
  font-weight: bold;
}

.startup-nav {
  position: relative;
  z-index: 1200;
  background: rgba(218, 218, 218, 0.9);
  overflow: visible !important;
}

.startup-nav .breadcrumb-wrapper {
  position: relative;
  z-index: 1201;
}

.startup-nav-container {
  gap: 10px;
  overflow-x: auto !important;
  overflow-y: visible !important;
  padding: 0;
  flex-wrap: nowrap !important;
  position: relative;
  scrollbar-width: none;
  max-width: 100%;
}

.startup-nav-container::-webkit-scrollbar {
  display: none;
}

.startup-nav .breadcrumb-container {
  overflow-x: auto !important;
  overflow-y: visible !important;
  scrollbar-width: none;
  position: relative;
  max-width: 100%;
  flex-wrap: nowrap !important;
}

.startup-nav .breadcrumb-container::-webkit-scrollbar {
  display: none;
}

/* Allow dropdowns to overflow vertically but control horizontal */
.startup-nav .breadcrumb-wrapper {
  overflow-x: auto !important;
  overflow-y: visible !important;
  max-width: 100%;
  scrollbar-width: none;
}

.startup-nav .breadcrumb-wrapper::-webkit-scrollbar {
  display: none;
}

.startup-nav .nav-separator {
  color: #333;
  font-weight: 600;
}

.startup-nav-item {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  z-index: 1202;
}

.startup-nav-item.show {
  z-index: 10000 !important;
}

.startup-nav-item .tab-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  border: 1px solid transparent;
}

.startup-nav-item.is-active .tab-breadcrumb {
  border-color: rgba(16, 185, 129, 0.3);
}

.startup-nav .dropdown-menu {
  display: none;
  position: fixed !important;
  top: auto !important;
  left: auto !important;
  min-width: 280px;
  max-width: 90vw;
  width: auto;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 6px 0;
  z-index: 10001 !important;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
  list-style: none;
  margin: 0 !important;
  box-sizing: border-box;
  transform: none !important;
}

.startup-nav-item.show .dropdown-menu {
  display: block;
  z-index: 10001 !important;
}

.startup-nav .dropdown-item {
  white-space: normal;
  display: block;
  padding: 10px 16px;
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.4;
  transition: all 0.2s ease;
}

.startup-nav .dropdown-item:hover {
  background: rgba(0, 119, 255, 0.05);
  color: #0077ff;
}

.startup-nav .dropdown-item.active,
.startup-nav .dropdown-item:active {
  background: var(--primary);
  color: #fff;
}

/* Responsive dropdown styles */
@media (max-width: 768px) {
  .startup-nav .dropdown-menu {
    min-width: 200px !important;
    max-width: calc(100vw - 20px) !important;
    width: auto !important;
    padding: 4px 0;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
    margin-top: 2px;
    left: 0 !important;
    right: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .startup-nav .dropdown-item {
    padding: 8px 12px;
    font-size: 0.85rem;
    white-space: normal;
    word-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .startup-nav .dropdown-menu {
    min-width: 180px !important;
    max-width: calc(100vw - 16px) !important;
    width: auto !important;
    padding: 3px 0;
    border-radius: 6px;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.15);
    margin-top: 2px;
    left: 0 !important;
    right: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .startup-nav .dropdown-item {
    padding: 6px 10px;
    font-size: 0.8rem;
    line-height: 1.3;
    white-space: normal;
    word-wrap: break-word;
  }
}

@media (max-width: 768px) {
  .startup-nav-container {
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 6px;
    flex-wrap: nowrap;
  }

  .startup-nav-container .nav-separator {
    display: none;
  }

  .startup-nav-item {
    flex: 0 0 auto;
  }
}

/* Responsive behavior */
@media (max-width: 768px) {
  .breadcrumb-container {
    gap: 4px;
  }

  .breadcrumb-container a {
    padding: 5px 10px;
    font-size: 13px;
  }

  .breadcrumb-container span {
    display: none; /* hide › symbols on mobile for cleaner look */
  }
}
/* Responsive behavior */
@media (max-width: 480px) {
  .breadcrumb-container {
    gap: 4px;
  }

  .breadcrumb-container a {
    padding: 2px 6px;
    font-size: 10px;
  }

  .breadcrumb-container span {
    display: none; /* hide › symbols on mobile for cleaner look */
  }
}

/* ---------------- Key Features Section ---------------- */
.key-features-section{
  padding: 0 0 60px;
}

.key-title {
  font-size: 40px;
  color: #003a8c;
  font-weight: 700;
}

.key-subtitle {
  font-size: 20px;
  color: #333;
  margin-bottom: 30px;
}

/* Swiper container */
.key-features-section .swiper {
 background: linear-gradient(135deg, #19d4a1, #5db9ff);
  border-radius: 20px;
  padding: 20px 20px;
  position: relative;
}

/* Each card */
.feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s ease;
}

.feature-card:hover {
 background:  #1c5fd4;
  color: #fff;
  transform: scale(1.02);
  cursor: grab;
}

.feature-icon {
  font-size: 45px;
  color: #9b9b9b;
  margin-bottom: 15px;
}

.feature-card h3 {
  font-size: 30px;
  font-weight: 700;
  color: #003a8c;
  margin-bottom: 5px;
}

.feature-card p {
  font-size: 16px;
  margin: 0;
  color: #333;
}

.feature-card:hover h3,
.feature-card:hover p,
.feature-card:hover .feature-icon {
  color: #fff;
}

/* Swiper navigation buttons */
.key-features-section .keyPrev,
.key-features-section .keyNext {
  background: #1c5fd4;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

.key-features-section .keyPrev::after,
.key-features-section .keyNext::after {
  font-size: 16px;
}

/* -------- Pagination (below box, exact like image) -------- */
.key-features-section .keyPagination {
  position: relative;
  margin-top: 20px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.key-features-section .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #c0e1f7;
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.key-features-section .swiper-pagination-bullet-active {
  width: 32px;
  height: 8px;
  border-radius: 10px;
  background: #00a36c;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-card h3 {
    font-size: 22px;
  }
  .feature-card p {
    font-size: 14px;
  }
}

/* ---------- Focus Sectors ---------- */
.focus-sectors {
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  padding: 60px 0 60px;
}

.focus-sectors a{
  text-decoration: none;
}
.section-title {
  font-size: 2rem;
  color: #004aad;
}

.section-subtitle {
  font-size: 1rem;
  color: #6c757d;
}

/* Cards */
.focus-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.focus-content i{
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #004aad;
}




.focus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.focus-img {
  background: #f3f3f3;
  border-bottom: 1px solid #ddd;
}
.focus-img img {
  width: 100%;
  object-fit: cover;
  transition: 0.4s ease;
  padding: 20px;
}

.focus-card:hover .focus-img img {
  transform: scale(1.05);
}

.focus-content {
  padding: 18px 20px 25px;
 
}

.focus-content h5 {
  font-weight: 700;
  color: #003b8e;
  font-size: 1.05rem;
  margin-bottom: 10px;

}

.focus-content p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 15px;

}

.btn-learn {
  color: #00a36c;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s ease;
}

.btn-learn:hover {
  color: #00885a;
}

/* Responsive */

@media (max-width: 576px) {
  .section-title {
    font-size: 1.6rem;
  }
}

/* ---------------- NEWS SECTION BOX ---------------- */
.news-section {
  position: relative;
}

.news-box {
  background: #fff;
  border-radius: 24px;
  padding: 60px 50px 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: visible;
  position: relative;
}

/* Section Header */
.section-title {
  font-weight: 700;
  font-size: 2rem;
  color: #1c4da1;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  border-radius: 2px;
}

/* News Swiper */
.news-swiper {
  width: 100%;
  padding-bottom: 0;
  overflow: visible;
}



/* News Card - Professional Design */
.news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 6px rgba(0, 0, 0, 0.02);
  border-color: #e0e0e0;
}

.news-img {
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
}

.news-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-img img {
  transform: scale(1.05);
}

.news-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-content a {
  text-decoration: none;
}

.news-content h5 {
  font-weight: 600;
  font-size: 1.05rem;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
  min-height: 2.8em;
}

.news-content a:hover h5 {
  color: #0077ff;
}

.news-content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
}

.read-more {
  color: #0077ff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  margin-top: auto;
}
.read-more i{ 
  font-size: 0.7rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-left: 5px;
}

.read-more:hover {
  color: #00b8a9;
  gap: 8px;
}

/* Pagination - Below Cards */
.news-pagination {
  position: relative;
  margin-top: 40px;
  text-align: center;
  display: block;
}

.news-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #d1d5db;
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.news-pagination .swiper-pagination-bullet-active {
  background: #0077ff;
  width: 28px;
  border-radius: 5px;
}

/* View All Button */
.view-all-btn {
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 119, 255, 0.3);
  margin-top: 10px;
}

.view-all-btn:hover {
  background: linear-gradient(135deg, #00b8a9, #0077ff);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 119, 255, 0.4);
  color: #fff;
}

/* ---------------- RESPONSIVE ---------------- */
/* Desktop */
@media (min-width: 992px) {
  .news-pagination {
    display: none; /* Hide pagination on desktop - shows all 4 cards */
  }
}

/* Tablet */
@media (max-width: 991px) and (min-width: 768px) {
  .news-box {
    padding: 50px 35px;
  }
  
  .news-img img {
    height: 180px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .news-section {
    padding: 60px 0;
  }

  .news-box {
    padding: 40px 25px;
    border-radius: 20px;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 35px;
  }

  .news-img img {
    height: 200px;
  }

  .news-content {
    padding: 20px;
  }

  .news-content h5 {
    font-size: 1rem;
  }

  .news-content p {
    font-size: 0.875rem;
  }

  .news-pagination {
    margin-top: 30px;
  }

  .view-all-btn {
    padding: 12px 30px;
    font-size: 0.95rem;
  }
}
/* ============================================
   REFORMS SECTION - Modern & Professional
   ============================================ */
.reforms-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.reforms-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,119,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.reforms-section .container {
  position: relative;
  z-index: 1;
}



.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-top: 20px;
}

/* Reforms Grid */
.reforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  perspective: 1000px;
}

/* Reform Card - Flip Effect */
.reform-card {
  height: 450px;
  position: relative;
  cursor: pointer;
}

.reform-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.reform-card:hover .reform-card-inner {
  transform: rotateY(180deg);
}

.reform-front,
.reform-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Front Side */
.reform-front {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid #e9ecef;
  padding: 50px 30px;
}

.reform-icon-wrapper {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 119, 255, 0.3);
  transition: transform 0.3s ease;
}

.reform-card:hover .reform-icon-wrapper {
  transform: scale(1.1);
}

.reform-icon-wrapper i {
  font-size: 2.8rem;
  color: #fff;
}

.reform-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0;
}

.flip-hint {
  font-size: 0.95rem;
  color: #0077ff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
}

.flip-hint i {
  transition: transform 0.3s ease;
}

.reform-card:hover .flip-hint i {
  transform: translateX(5px);
}

/* Back Side */
.reform-back {
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  transform: rotateY(180deg);
  color: #fff;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  padding: 30px 25px;
  overflow-y: auto;
}

/* Custom scrollbar for back side */
.reform-back::-webkit-scrollbar {
  width: 6px;
}

.reform-back::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.reform-back::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.reform-back::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.reform-title-back {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.reform-title-back i {
  font-size: 1.3rem;
}

.reform-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.reform-list li {
  padding: 10px 0;
  font-size: 0.88rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.reform-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.reform-list li i {
  color: #fff;
  font-size: 0.8rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1200px) {
  .reforms-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .reforms-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .reforms-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reform-card {
    height: 400px;
  }

  .reform-front {
    padding: 40px 25px;
  }

  .reform-back {
    padding: 25px 20px;
  }

  .reform-icon-wrapper {
    width: 85px;
    height: 85px;
    margin-bottom: 25px;
  }

  .reform-icon-wrapper i {
    font-size: 2.3rem;
  }

  .reform-title {
    font-size: 1.4rem;
  }

  .reform-title-back {
    font-size: 1.15rem;
  }

  .reform-list li {
    font-size: 0.85rem;
    padding: 9px 0;
  }

  .flip-hint {
    margin-top: 25px;
    font-size: 0.9rem;
  }
}

/* Mobile - Tap to Flip */
@media (max-width: 991px) {
  .reform-card-inner {
    transition: transform 0.6s ease;
  }
  
  .reform-card.flipped .reform-card-inner {
    transform: rotateY(180deg);
  }
}

/* ============================================
   MODERN SECTOR PAGE - PROFESSIONAL LAYOUT
   ============================================ */

/* Hero Section */
.sector-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
  height: 350px;
}
.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(0, 74, 173, 0.5) 0%, 
    rgba(0, 119, 255, 0.6) 50%,
    rgba(0, 184, 169, 0.8) 100%);
  z-index: 1;
}
.sector-hero .container {
  position: relative;
  z-index: 2;
}
.hero-content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  padding: 80px 0;
}
.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.hero-text{
  margin-top: 50px;
}


.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
  padding: 10px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.btn-hero-primary:hover {

  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, #00b8a9, #0077ff);
  color: #ffffff;
}

.btn-hero-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon i {
  font-size: 1.8rem;
  color: #fff;
}

.stat-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
  line-height: 1;
}

.stat-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.4;
}



@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}


.video-close-btn {
  position: absolute;
  top: -50px;
  right: 0;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-close-btn:hover {
  background: #fff;
  color: #0077ff;
  transform: rotate(90deg);
}


.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: linear-gradient(135deg, #e0f2fe, #dbeafe);
  color: #0077ff;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
  border: 1px solid rgba(0, 119, 255, 0.2);
}

.section-title-modern {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
}

.section-desc-modern {
  font-size: 1.15rem;
  color: #666;
  line-height: 1.8;
}

.text-center .section-desc-modern {
  margin-left: auto;
  margin-right: auto;
}

/* Opportunities Section */
.opportunities-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.opportunities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 60px;
}

.opportunity-card {
  background: #fff;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.opportunity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0077ff, #00b8a9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.opportunity-card:hover::before {
  transform: scaleX(1);
}

.opportunity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 119, 255, 0.15);
  border-color: rgba(0, 119, 255, 0.2);
}

.opportunity-card.featured {
  border-color: rgba(0, 119, 255, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.opportunity-card.premium {
  border-color: rgba(255, 193, 7, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #fffbeb 100%);
}

.card-full-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.opportunity-header {
  padding: 30px 30px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.opportunity-icon-box {
  width: 70px;
  height: 70px;

  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 119, 255, 0.15);
  transition: all 0.3s ease;
}

.opportunity-card:hover .opportunity-icon-box {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 30px rgba(0, 119, 255, 0.25);
}

.opportunity-icon-box i {
  font-size: 32px;
  color: #007bff;
  transition: color 0.3s ease, transform 0.3s ease;
}

.opportunity-tag {
  padding: 6px 16px;
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  color: #fff;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.opportunity-tag.gold {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.opportunity-tag.blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.opportunity-tag.green {
  background: linear-gradient(135deg, #10b981, #059669);
}

.opportunity-body {
  padding: 0 30px 0px;
  flex-grow: 1;
}

.opportunity-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.opportunity-body p {
  font-size: 0.95rem;
  color: #666;

}

.opportunity-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: rgba(0, 119, 255, 0.05);
  border-radius: 10px;
  border-left: 3px solid #0077ff;
}

.highlight-item i {
  color: #0077ff;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.highlight-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
}

.tool-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(0, 119, 255, 0.05);
  border-radius: 12px;
  margin-top: 15px;
}

.tool-feature i {
  color: #0077ff;
  font-size: 1.3rem;
}

.tool-feature span {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.opportunity-footer {
  padding: 10px;
  margin-top: auto;
}

.explore-btn {
  width: 100%;
  padding: 8px 12px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border: 1px solid #e9ecef;
  border-radius: 8px;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.explore-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  transition: left 0.4s ease;
  z-index: 0;
}

.explore-btn:hover::before {
  left: 0;
}

.explore-btn span,
.explore-btn i {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.explore-btn:hover {
  border-color: transparent;
  color: #fff;
}

.explore-btn:hover span,
.explore-btn:hover i {
  color: #fff;
}

.explore-btn i {
  transition: transform 0.3s ease;
}

.explore-btn:hover i {
  transform: translateX(5px);
}

/* Ecosystem Section */
.ecosystem-section {

  background: #fff;
  position: relative;
  overflow: hidden;
  padding: 60px 0 60px;
}

.ecosystem-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, #f8f9fa 100%);
  opacity: 0.5;
  pointer-events: none;
}

.ecosystem-layout {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.ecosystem-visual {
  position: relative;
}

.visual-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.visual-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.visual-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(0, 119, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.overlay-stat h4 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 5px;
  line-height: 1;
}

.overlay-stat p {
  font-size: 1rem;
  margin: 0;
  opacity: 0.95;
}

.ecosystem-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;

}

.feature-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e7e7e7;
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  gap: 20px;
  justify-content: center;
  cursor: grab;
}
.feature-item h4 {
 font-size: 1.2rem;
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 40px rgba(0, 119, 255, 0.12);
  border-color: rgba(0, 119, 255, 0.2);
  background: #fff;
}

.feature-item.highlight {
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  color: #fff;

}

.feature-item.highlight:hover {
  transform: translateY(-5px);
}

.feature-number {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(0, 119, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0077ff;
}

.feature-item.highlight .feature-number {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.feature-icon-circle {
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-item.highlight .feature-icon-circle {
  background: rgba(255, 255, 255, 0.2);
}

.feature-icon-circle i {
  font-size: 1.2rem;
  color: #fff;
}

.feature-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.3;
}

.feature-item.highlight .feature-content h4 {
  color: #fff;
}

.feature-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.feature-item.highlight .feature-content p {
  color: rgba(255, 255, 255, 0.95);
}

.feature-content-centered {
  text-align: center;

}

.highlight-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.highlight-icon i {
  font-size: 2rem;
  color: #fff;
}

/* Partners Section */
.partners-section {
  padding: 40px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.partners-showcase {
  margin-top: 60px;
  position: relative;
}

.partner-card {
  background: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #e7e7e7;
}

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: #e0e0e0;
}

.partner-logo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;

  transition: all 0.3s ease;
}

.partner-card:hover .partner-logo img {
  filter: grayscale(0%) opacity(1);
}

.swiper-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.partners-prev,
.partners-next {
  position: static;
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #0077ff;
  transition: all 0.3s ease;
  margin: 0;
}

.partners-prev:hover,
.partners-next:hover {
  background: #0077ff;
  color: #fff;
  transform: scale(1.1);
}

.partners-prev::after,
.partners-next::after {
  font-size: 1rem;
  font-weight: 700;
}

.partners-pagination {
  position: static;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.partners-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #d1d5db;
  opacity: 1;
  margin: 0;
  transition: all 0.3s ease;
}

.partners-pagination .swiper-pagination-bullet-active {
  background: #0077ff;
  width: 20px;
  border-radius: 5px;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #0077ff 0%, #00b8a9 100%); 
  padding: 50px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  box-shadow: 0 20px 60px rgba(0, 119, 255, 0.3);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(60px);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-btn {
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-btn.primary {
  background: #fff;
  color: #0077ff;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
  background: #f8f9fa;
}

.cta-btn.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-3px);
}

/* Enhanced Modal */
.incentive-modal .modal-dialog {
  max-width: 1100px;
}

.incentive-modal .modal-content {
  border-radius: 24px;
  border: none;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.incentive-modal .modal-header {
  background: linear-gradient(135deg, #0077ff 0%, #00b8a9 100%);
  color: #fff;

  border: none;
  position: relative;
}

.modal-header-content {
  flex: 1;
}

.modal-category {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.incentive-modal .modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.btn-close-custom {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.btn-close-custom:hover {
  background: #fff;
  color: #0077ff;
  transform: rotate(90deg);
}

.incentive-modal .modal-body {
  padding: 45px 40px;
}

.modal-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  height: 100%;
}

/* Make image cover the entire container */
.modal-visual img {

  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 10px 20px;
  background: rgba(0, 119, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

.visual-badge i {
  font-size: 1rem;
}

.modal-benefits {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.benefits-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  flex-grow: 1;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 10px;
}

.benefits-list::-webkit-scrollbar {
  width: 6px;
}

.benefits-list::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

.benefits-list::-webkit-scrollbar-thumb {
  background: #0077ff;
  border-radius: 10px;
}

.benefits-list li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s ease;
}

.benefits-list li:last-child {
  border-bottom: none;
}

.benefits-list li:hover {
  background: rgba(0, 119, 255, 0.02);
  padding-left: 10px;
  margin-left: -10px;
  border-radius: 8px;
}

.benefit-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #e0f2fe, #dbeafe);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-icon i {
  font-size: 0.85rem;
  color: #0077ff;
}

.benefit-text {
  flex: 1;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

.benefit-main .benefit-text {
  font-weight: 600;
  color: #1a1a1a;
}

.benefit-main .benefit-icon {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.benefit-main .benefit-icon i {
  color: #f59e0b;
}

.benefit-sub {
  padding-left: 43px;
}

.benefit-sub .benefit-icon {
  width: 24px;
  height: 24px;
  background: #f8f9fa;
}

.benefit-sub .benefit-icon i {
  font-size: 0.75rem;
  color: #00b8a9;
}

.benefit-sub .benefit-text {
  font-size: 0.9rem;
  color: #666;
}

.investment-notice {
  padding: 8px;
  background: linear-gradient(135deg, #fff3cd, #fef3c7);
  border-left: 2px solid #f59e0b;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 25px;
}

.investment-notice i {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.investment-notice span {
  font-size: 0.9rem;
  color: #92400e;
  line-height: 1.5;
}

.modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.modal-action-btn {
  flex: 1;
  min-width: 180px;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.modal-action-btn.primary {
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 119, 255, 0.25);
}

.modal-action-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 119, 255, 0.35);
  color: #fff;
}

.modal-action-btn.secondary {
  background: #f8f9fa;
  color: #1a1a1a;
  border: 2px solid #e9ecef;
}

.modal-action-btn.secondary:hover {
  background: #e9ecef;
  border-color: #dee2e6;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .ecosystem-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .sector-hero {
    min-height: 60vh;
  }

  .hero-title {
    font-size: 2rem;
    text-align: center;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section-title-modern {
    font-size: 2.2rem;
  }

  .opportunities-grid {
    grid-template-columns: 1fr;
  }

  .opportunities-section,
  .ecosystem-section,
  .partners-section {
    padding: 60px 0;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  .cta-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .sector-hero {
    min-height: 20vh;
  }

  .hero-content-wrapper {
    gap: 40px;
padding: 60px 0;
}

.hero-description {
font-size: 1rem;
}
.hero-actions {
flex-direction: column;
width: 100%;
}
.btn-hero-primary,
.btn-hero-secondary {
width: 100%;
justify-content: center;
}
.stat-card {
padding: 25px 20px;
}
.stat-icon {
width: 50px;
height: 50px;
}
.stat-icon i {
font-size: 1.5rem;
}
.stat-content h3 {
font-size: 1.5rem;
}
.section-title-modern {
font-size: 1.8rem;
}
.section-desc-modern {
font-size: 1rem;
}
.opportunities-section,
.ecosystem-section,
.partners-section {
padding: 60px 0;
}
.opportunities-grid {
gap: 20px;
margin-top: 40px;
}
.opportunity-header {
padding: 25px 25px 15px;
}
.opportunity-icon-box {
width: 60px;
height: 60px;
}
.opportunity-icon-box img {
width: 35px;
height: 35px;
}
.opportunity-body {
padding: 0 25px 15px;
}
.opportunity-body h3 {
font-size: 1.3rem;
}
.opportunity-footer {
padding: 15px 25px 25px;
}
.ecosystem-layout {
gap: 40px;
margin-top: 40px;
}
.visual-overlay {
bottom: 15px;
left: 15px;
padding: 15px 20px;
}
.overlay-stat h4 {
font-size: 2rem;
}
.ecosystem-features {
gap: 20px;
}
.feature-item {
padding: 25px;
flex-direction: column;
text-align: center;
}
.feature-item:hover {
transform: translateY(-5px);
}
.feature-number {
top: 10px;
right: 10px;
width: 35px;
height: 35px;
font-size: 1rem;
}
.feature-icon-circle {
width: 55px;
height: 55px;
}
.feature-icon-circle i {
font-size: 1.3rem;
}
.feature-content h4 {
font-size: 1.1rem;
}
.feature-content p {
font-size: 0.875rem;
}
.partner-card {
padding: 30px 20px;
height: 140px;
}

.incentive-modal .modal-body {
padding: 30px 25px;
}
.benefits-title {
font-size: 1.15rem;
}
.benefits-list {
max-height: 300px;
}
.benefits-list li {
padding: 14px 0;
}
.benefit-text {
font-size: 0.9rem;
}
.modal-actions {
flex-direction: column;
}
.modal-action-btn {
width: 100%;
}
}
@media (max-width: 576px) {

.hero-description {
font-size: 0.95rem;
}
.hero-badge {
font-size: 0.8rem;
padding: 6px 16px;
}
.btn-hero-primary,
.btn-hero-secondary {
padding: 12px 24px;
font-size: 0.95rem;
}
.stat-card {
flex-direction: column;
align-items: center;
text-align: center;
padding: 20px;
}
.section-tag {
font-size: 0.75rem;
padding: 5px 15px;
}
.section-title-modern {
font-size: 1.6rem;
}
.section-desc-modern {
font-size: 0.95rem;
}
.opportunity-body h3 {
font-size: 1.2rem;
}
.highlight-item {
padding: 8px 12px;
}
.highlight-item span {
font-size: 0.85rem;
}
.tool-feature {
padding: 12px;
flex-direction: column;
align-items: flex-start;
text-align: left;
}
.visual-overlay {
bottom: 10px;
left: 10px;
padding: 12px 16px;
}
.overlay-stat h4 {
font-size: 1.6rem;
}
.overlay-stat p {
font-size: 0.85rem;
}
.feature-item {
padding: 20px;
}
.feature-content h4 {
font-size: 1rem;
}
.highlight-icon {
width: 65px;
height: 65px;
}
.highlight-icon i {
font-size: 1.6rem;
}
.partner-card {
height: 120px;
padding: 20px 15px;
}
.swiper-controls {
gap: 15px;
}
.partners-prev,
.partners-next {
width: 40px;
height: 40px;
}

.video-close-btn {
top: -40px;
width: 40px;
height: 40px;
}
.incentive-modal .modal-header {
padding: 25px 20px;
}
.incentive-modal .modal-title {
font-size: 1.5rem;
}
.modal-visual {
margin-bottom: 25px;
}
.visual-badge {
font-size: 0.8rem;
padding: 8px 15px;
bottom: 15px;
left: 15px;
}
.investment-notice {
padding: 12px 15px;
}
.investment-notice span {
font-size: 0.85rem;
}
}
/* Smooth Animations */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.opportunity-card {
animation: fadeIn 0.6s ease-out backwards;
}
.opportunity-card:nth-child(1) { animation-delay: 0.1s; }
.opportunity-card:nth-child(2) { animation-delay: 0.2s; }
.opportunity-card:nth-child(3) { animation-delay: 0.3s; }
.opportunity-card:nth-child(4) { animation-delay: 0.4s; }
.feature-item {
animation: fadeIn 0.6s ease-out backwards;
}
.feature-row:nth-child(1) .feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-row:nth-child(1) .feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-row:nth-child(2) .feature-item:nth-child(1) { animation-delay: 0.3s; }
.feature-row:nth-child(2) .feature-item:nth-child(2) { animation-delay: 0.4s; }
.feature-row:nth-child(3) .feature-item:nth-child(1) { animation-delay: 0.5s; }
.feature-row:nth-child(3) .feature-item:nth-child(2) { animation-delay: 0.6s; }
/* Loading state */
/* Accessibility */
.opportunity-card:focus,
.explore-btn:focus,
.cta-btn:focus,
.modal-action-btn:focus {
outline: 3px solid rgba(0, 119, 255, 0.5);
outline-offset: 3px;
}
/* Print styles */
@media print {
.sector-hero,
.video-modal,
.cta-banner,
.breadcrumb-nav {
display: none;
}
.opportunities-section,
.ecosystem-section,
.partners-section {
page-break-inside: avoid;
}
}
/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
}


.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-header {
  text-align: center;
  margin-bottom: 40px;
}

.cta-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.cta-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.6;
}

/* Sectors Slider Wrapper */
.sectors-slider-wrapper {
  position: relative;
  max-width: 1860px;
  margin: 0 auto;
}

.sectorsSwiper {
  padding: 20px 60px;
  overflow: visible !important;
  cursor: grab;

}

.sectorsSwiper .swiper-wrapper {
  align-items: stretch;
}

.sectorsSwiper .swiper-slide {
  height: auto;
  display: flex;
}

/* Sector Mini Card */
.sector-mini-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 25px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  height: 100%;
  min-height: 150px;
  text-align: center;
}

.sector-mini-card:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

/* Icon Container */
.sector-mini-icon {
  width: 65px;
  height: 65px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.sector-mini-card:hover .sector-mini-icon {
  background: #fff;
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.sector-mini-icon i {
  font-size: 1.8rem;
  color: #fff;
  transition: color 0.3s ease;
}

.sector-mini-card:hover .sector-mini-icon i {
  color: #0077ff;
}

/* Sector Name */
.sector-mini-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  display: block;
  max-width: 100%;
}

/* Navigation Buttons */
.sectors-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 35px;
}

.sectors-prev,
.sectors-next {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.sectors-prev:hover:not(:disabled),
.sectors-next:hover:not(:disabled) {
  background: #fff;
  color: #0077ff;
  transform: scale(1.12);
  border-color: #fff;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.sectors-prev:disabled,
.sectors-next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .cta-banner {
    padding: 45px 40px;
  }

  .sectorsSwiper {
    padding: 20px 55px;
  }

  .sector-mini-card {
    min-height: 145px;
  }
}

@media (max-width: 992px) {
  .cta-banner {
    padding: 40px 30px;
    margin-top: 60px;
  }

  .cta-header h3 {
    font-size: 1.75rem;
  }

  .cta-header p {
    font-size: 1rem;
  }

  .sectorsSwiper {
    padding: 20px 50px;
  }

  .sector-mini-card {
    padding: 22px 12px;
    min-height: 140px;
  }

  .sector-mini-icon {
    width: 60px;
    height: 60px;
  }

  .sector-mini-icon i {
    font-size: 1.7rem;
  }

  .sector-mini-name {
    font-size: 0.9rem;
  }

  .sectors-prev,
  .sectors-next {
    width: 45px;
    height: 45px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 35px 25px;
  }

  .cta-header {
    margin-bottom: 35px;
  }

  .cta-header h3 {
    font-size: 1.5rem;
  }

  .cta-header p {
    font-size: 0.95rem;
  }

  .sectorsSwiper {
    padding: 20px 45px;
  }

  .sector-mini-card {
    padding: 20px 12px;
    min-height: 135px;
    gap: 12px;
  }

  .sector-mini-icon {
    width: 55px;
    height: 55px;
  }

  .sector-mini-icon i {
    font-size: 1.5rem;
  }

  .sector-mini-name {
    font-size: 0.875rem;
  }

  .sectors-nav {
    gap: 12px;
    margin-top: 30px;
  }

  .sectors-prev,
  .sectors-next {
    width: 42px;
    height: 42px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .cta-banner {
    padding: 30px 20px;
 
  }

  .cta-header {
    margin-bottom: 30px;
  }

  .cta-header h3 {
    font-size: 1.35rem;
  }

  .cta-header p {
    font-size: 0.9rem;
  }

  .sectorsSwiper {
    padding: 20px 40px;
  }

  .sector-mini-card {
    padding: 18px 10px;
    min-height: 130px;
    gap: 12px;
  }

  .sector-mini-icon {
    width: 52px;
    height: 52px;
  }

  .sector-mini-icon i {
    font-size: 1.4rem;
  }

  .sector-mini-name {
    font-size: 0.85rem;
  }

  .sectors-nav {
    margin-top: 28px;
  }

  .sectors-prev,
  .sectors-next {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }
}

@media (max-width: 400px) {
  .cta-banner {
    padding: 25px 15px;
  }

  .cta-header h3 {
    font-size: 1.25rem;
  }

  .cta-header p {
    font-size: 0.85rem;
  }

  .sectorsSwiper {
    padding: 15px 35px;
  }

  .sector-mini-card {
    padding: 16px 8px;
    min-height: 125px;
    gap: 10px;
  }

  .sector-mini-icon {
    width: 48px;
    height: 48px;
  }

  .sector-mini-icon i {
    font-size: 1.3rem;
  }

  .sector-mini-name {
    font-size: 0.8rem;
  }

  .sectors-prev,
  .sectors-next {
    width: 38px;
    height: 38px;
    font-size: 0.8rem;
  }
}

/* Single Window Intro Section */
.single-window-intro {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.intro-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}


.intro-text {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

.intro-text strong {
  color: #35b0e3;
  font-weight: 600;
}

.intro-tagline {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
  font-style: italic;
}

.intro-tagline .highlight {
  color: #84d150;
  font-weight: 600;
}

/* Services Layout Section */
.services-layout {
  padding: 30px 0;
  background: #fff;
}

.services-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.services-wrapper a{
  text-decoration: none;
}

.services-left,
.services-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 25px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
}

.service-item:hover {
  transform: translateX(-10px);
  box-shadow: 0 8px 30px rgba(53, 176, 227, 0.25);
  background: linear-gradient(135deg, rgba(53, 176, 227, 0.05), rgba(132, 209, 80, 0.05));
}

.services-right .service-item:hover {
  transform: translateX(10px);
}

.service-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
background: linear-gradient(135deg, #0077ff, #00b8a9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.service-item:hover .service-icon {
  transform: scale(1.1) rotate(10deg);
}

.service-icon i {
  font-size: 32px;
  color: #fff;
}

.service-info {
  flex: 1;
}

.service-name {
  font-size: 20px;
  font-weight: 700;
  color: #0f3063;
  margin-bottom: 8px;
}

.service-description {
  font-size: 15px;
  line-height: 1.5;
  color: #666;
  margin: 0;
}

/* Center Logo */
.center-logo {
  flex: 0 0 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-wrapper {
  width: 280px;
  height: 280px;
background: linear-gradient(135deg, #0077ff, #00b8a9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 50px rgba(53, 176, 227, 0.3);
  padding: 40px;
  position: relative;
  animation: float 3s ease-in-out infinite;
}

.logo-wrapper::before {
  content: "";
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(53, 176, 227, 0.2), rgba(132, 209, 80, 0.2));
  z-index: -1;
  animation: pulse 2s ease-in-out infinite;
}

.logo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Life Cycle Section - Horizontal */
.lifecycle-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.lifecycle-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
background: linear-gradient(135deg, #0077ff, #00b8a9);
}

.lifecycle-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.lifecycle-title {
  font-size: 42px;
  font-weight: 700;
  color: #0f3063;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.lifecycle-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  border-radius: 2px;
}

.lifecycle-description {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-top: 25px;
}

.lifecycle-scroll-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.lifecycle-horizontal-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 40px 0 60px;
  cursor: grab;
  scroll-behavior: smooth;

}

.lifecycle-horizontal-wrapper::-webkit-scrollbar {
  height: 8px;
}

.lifecycle-horizontal-wrapper::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.lifecycle-horizontal-wrapper::-webkit-scrollbar-thumb {
 background: linear-gradient(135deg, #0077ff, #00b8a9);
  border-radius: 10px;
}

.lifecycle-horizontal-wrapper::-webkit-scrollbar-thumb:hover {
 background: linear-gradient(90deg, #0077ff, #00b8a9);
}

.lifecycle-horizontal {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  padding: 0 50px;
}

.lifecycle-start,
.lifecycle-end {
  flex-shrink: 0;
}

.start-badge,
.end-badge {
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  color: #fff;
  padding: 10px 15px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 40px rgba(53, 176, 227, 0.3);
  animation: badgePulse 2s ease-in-out infinite;
}

.start-badge i,
.end-badge i {
  font-size: 20px;
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.timeline-step {
  flex-shrink: 0;
  position: relative;
}

.step-content {
  background: #fff;
  padding: 20px 10px;
  border-radius: 18px;
  width: 220px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.step-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(53, 176, 227, 0.1), transparent);
  transition: left 0.6s ease;
}

.step-content:hover::before {
  left: 100%;
}

.step-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(53, 176, 227, 0.25);
}

.step-number {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 15px rgba(53, 176, 227, 0.3);
}

.step-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(53, 176, 227, 0.1), rgba(132, 209, 80, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.step-content:hover .step-icon {
  background: linear-gradient(135deg, #35b0e3, #84d150);
  transform: scale(1.1) rotate(360deg);
}

.step-icon i {
  font-size: 20px;
  color: #35b0e3;
  transition: all 0.4s ease;
}

.step-content:hover .step-icon i {
  color: #fff;
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f3063;
  margin-bottom: 20px;
  line-height: 1.4;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
 background: linear-gradient(135deg, #0077ff, #00b8a9);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(53, 176, 227, 0.3);
}

.video-play-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(53, 176, 227, 0.5);
  gap: 12px;
}

.video-play-btn i {
  font-size: 18px;
}

.step-arrow {
  flex-shrink: 0;
  font-size: 25px;
  color: #35b0e3;
  animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}

/* Scroll Buttons */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-80%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #35b0e3, #84d150);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(53, 176, 227, 0.4);
}

.scroll-btn:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 35px rgba(53, 176, 227, 0.6);
}

.scroll-left {
  left: 20px;
}

.scroll-right {
  right: 20px;
}

/* Video Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  z-index: 10000;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.video-modal.active .video-modal-content {
  transform: scale(1);
}

.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-modal-close:hover {
  background: #fff;
  color: #35b0e3;
  transform: rotate(90deg);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0077ff, #00b8a9);
}

.cta-box {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 35px;
  line-height: 1.6;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #35b0e3;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
  background: #0f3063;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  gap: 16px;
}

/* Responsive */
@media (max-width: 1200px) {
  .services-wrapper {
    gap: 40px;
  }

  .center-logo {
    flex: 0 0 240px;
  }

  .logo-wrapper {
    width: 220px;
    height: 220px;
    padding: 30px;
  }

  .service-item {
    gap: 20px;
    padding: 20px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }

  .service-icon i {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  .services-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .services-left,
  .services-right {
    width: 100%;
    max-width: 600px;
  }

  .center-logo {
    order: -1;
  }

  .services-right .service-item {
    flex-direction: row-reverse;
  }

  .services-right .service-info {
    text-align: left !important;
  }

  .section-title, .cta-title, .lifecycle-title {
    font-size: 32px;
  }

  .intro-text, .cta-text, .lifecycle-description {
    font-size: 16px;
  }

  .scroll-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .scroll-left {
    left: 10px;
  }

  .scroll-right {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .single-window-intro, .services-layout, .lifecycle-section, .cta-section {
    padding: 30px 0;
  }

  .section-title, .cta-title, .lifecycle-title {
    font-size: 28px;
  }

  .logo-wrapper {
    width: 180px;
    height: 180px;
    padding: 25px;
  }

  .service-item {
    padding: 18px;
    gap: 15px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .service-icon i {
    font-size: 24px;
  }

  .service-name {
    font-size: 18px;
  }

  .service-description {
    font-size: 14px;
  }

  .step-content {
    width: 240px;
    padding: 30px 25px;
  }

  .step-icon {
    width: 75px;
    height: 75px;
  }

  .step-icon i {
    font-size: 32px;
  }

  .step-title {
    font-size: 16px;
    min-height: 45px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .lifecycle-horizontal {
    gap: 30px;
    padding: 0 30px;
  }

  .step-arrow {
    font-size: 30px;
  }

  .start-badge,
  .end-badge {
    padding: 20px 30px;
    font-size: 16px;
  }

  .start-badge i,
  .end-badge i {
    font-size: 32px;
  }

  .scroll-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .single-window-intro, .services-layout, .lifecycle-section, .cta-section {
    padding: 50px 0;
  }

  .section-title, .cta-title, .lifecycle-title {
    font-size: 24px;
  }

  .intro-text, .cta-text, .lifecycle-description {
    font-size: 15px;
  }

  .step-content {
    width: 220px;
    padding: 25px 20px;
  }

  .step-icon {
    width: 65px;
    height: 65px;
  }

  .step-icon i {
    font-size: 28px;
  }

  .video-play-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .video-play-btn i {
    font-size: 16px;
  }

  .lifecycle-horizontal {
    gap: 25px;
    padding: 0 20px;
  }

  .step-arrow {
    font-size: 25px;
  }

  .scroll-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .scroll-left {
    left: 5px;
  }

  .scroll-right {
    right: 5px;
  }

  .video-modal-close {
    top: -40px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
  .lifecycle-horizontal-wrapper {
    cursor: grab;
    -webkit-overflow-scrolling: touch;
  }

  .lifecycle-horizontal-wrapper:active {
    cursor: grabbing;
  }
}


/* Breadcrumb Navigation as Tabs */
/* Breadcrumb Navigation as Tabs */
.breadcrumb-nav {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

/* Startup nav should have higher z-index than regular breadcrumb */
.startup-nav.breadcrumb-nav {
  z-index: 1200;
}

/* Universal breadcrumb slider styles - applies to all breadcrumbs */
.breadcrumb-nav {
  position: relative;
}

.breadcrumb-nav .breadcrumb-wrapper,
.breadcrumb-nav .breadcrumb-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  width: 100%;

  justify-content: center;
}

/* If breadcrumb-container is direct child (no wrapper), add padding for buttons */
.breadcrumb-nav > .container.breadcrumb-container:not(.has-wrapper) {
  padding-left: 48px;
  padding-right: 48px;
}

/* Override any conflicting breadcrumb styles for this specific nav */
.breadcrumb-nav .breadcrumb-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  justify-content: center;
}

/* Startup nav - allow dropdowns to overflow but control horizontal scroll */
.startup-nav .breadcrumb-wrapper {
  overflow-x: auto !important;
  overflow-y: visible !important;
  scrollbar-width: none;
}

.startup-nav .breadcrumb-wrapper::-webkit-scrollbar {
  display: none;
}

.breadcrumb-nav .breadcrumb-container,
.breadcrumb-nav > .container.breadcrumb-container {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 0 !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scrollbar-width: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap !important;
  position: relative;
  min-width: 0;
  max-width: 100%;
  justify-content: flex-start !important;
  margin: 0 auto;
  padding: 0;
  scroll-padding-left: 0;
  scroll-padding-right: 0;
}

/* Startup nav - allow dropdowns to overflow vertically but control horizontal */
.startup-nav .breadcrumb-container {
  overflow-x: auto !important;
  overflow-y: visible !important;
  max-width: 100%;
  scrollbar-width: none;
  flex-wrap: nowrap !important;
}

.startup-nav .breadcrumb-container::-webkit-scrollbar {
  display: none;
}

.breadcrumb-nav .breadcrumb-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
}

.breadcrumb-nav .breadcrumb-wrapper .breadcrumb-container {
  flex: 1;
  padding: 0;
  margin: 0;
}

.breadcrumb-nav > .container.breadcrumb-container:not(.has-wrapper) {
  flex: 1;
  margin: 0 auto;
}

.breadcrumb-nav .breadcrumb-container::-webkit-scrollbar {
  display: none;
}

.breadcrumb-nav .breadcrumb-separator,
.breadcrumb-nav .breadcrumb-container span {
  color: #cbd5e1;
  font-weight: 600;
  padding: 0 6px;
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 1.2rem !important;
  display: inline-block;
}

.breadcrumb-nav .tab-breadcrumb,
.breadcrumb-nav .breadcrumb-container a {
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
  min-width: fit-content;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  padding: 18px 24px;
  border-radius: 6px;
  margin: 0 2px;
}

.breadcrumb-nav .breadcrumb-container a:hover {
  color: #0077ff;
  background: rgba(0, 119, 255, 0.05);
}

.breadcrumb-nav .breadcrumb-container a.active {
  color: #0077ff;
  font-weight: 600;
  background: rgba(0, 119, 255, 0.08);
}

.breadcrumb-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.breadcrumb-container {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  padding: 0;
  flex: 1;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  position: relative;
  min-width: 0;
  max-width: 100%;
}

.breadcrumb-container::-webkit-scrollbar {
  display: none;
}

.breadcrumb-separator {
  color: #cbd5e1;
  font-weight: 600;
  padding: 0 6px;
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 12px;
  display: inline-block;
}

.tab-breadcrumb {
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
  min-width: fit-content;
}

.breadcrumb-nav-btn {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 36px;
  height: 36px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  color: #64748b;
  font-size: 12px;
  z-index: 10;
  border-radius: 6px;
  margin: 0 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  position: relative;
}

.breadcrumb-wrapper.has-scroll .breadcrumb-nav-btn {
  display: flex;
}

/* Always show buttons when wrapper exists - they'll be disabled if not needed */
.breadcrumb-wrapper .breadcrumb-nav-btn {
  display: flex;
}

.breadcrumb-wrapper:not(.has-scroll) .breadcrumb-nav-btn {
  opacity: 0.3;
  pointer-events: none;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .breadcrumb-nav-btn {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

.breadcrumb-nav-btn:hover {
  background: #f1f5f9;
  color: #0077ff;
  border-color: rgba(0, 119, 255, 0.2);
}

.breadcrumb-nav-btn:active {
  transform: scale(0.95);
}

.breadcrumb-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.breadcrumb-nav-prev {
  border-right: none;
}

.breadcrumb-nav-next {
  border-left: none;
}



.tab-breadcrumb::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #0077ff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.tab-breadcrumb:hover {
  color: #0077ff;
  background: rgba(0, 119, 255, 0.05);
}

.tab-breadcrumb.active {
  color: #0077ff;
  font-weight: 600;
  background: rgba(0, 119, 255, 0.08);
}

.tab-breadcrumb.active::before {
  transform: scaleX(1);
}

/* Tab Content */
.export-content-area {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  min-height: 600px;
}

.tab-panel {
  display: none;
  animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-panel.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Introduction Section */
.export-introduction {
  padding: 70px 0 50px;
}

.content-title {
  font-size: 32px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.content-title::after {
  display: none;
}

.section-description {
  font-size: 17px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 50px;
  max-width: 900px;
}



.intro-text-block p {
  font-size: 16px;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 20px;
}

.intro-text-block strong {
  color: #0077ff;
  font-weight: 600;
}

/* Data Section - Two Columns */
.export-data-section {
  padding: 50px 0;
}

.data-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.data-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 20px 40px -10px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.data-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 30px 60px -15px rgba(0, 119, 255, 0.15);
  transform: translateY(-4px);
  cursor: grab;
}

.card-header {
  padding: 10px 20px 10px;
     background: linear-gradient(135deg, #0077ff 0%, #00b8a9 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: #fff;
}

.card-title {
  font-size: 20px;
  font-weight: 700;

}

.card-subtitle {
  font-size: 14px;

  font-weight: 600;
  text-transform: uppercase;

}

.data-table-container {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table thead {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.data-table th {
  padding: 18px 32px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.data-table th.text-right {
  text-align: right;
}

.data-table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

.data-table tbody tr:hover {
  background: linear-gradient(90deg, rgba(0, 119, 255, 0.02) 0%, transparent 100%);
}

.data-table tbody tr:last-child {
  border-bottom: none;
}

.data-table td {
  padding: 18px 32px;
  font-size: 14px;
  color: #334155;
  line-height: 1.5;
}

.data-table td.text-right {
  text-align: right;
}

.data-table td strong {
  color: #0f172a;
  font-weight: 700;
  font-size: 15px;
}

.rank {
  width: 26px;
  height: 26px;
  margin-right: 12px;
 
}

.card-note {
  padding: 20px 32px;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  font-style: italic;
}

/* Export Trend Section */
.export-trend-section {
  padding: 70px 0;
    background: linear-gradient(135deg, #0077ff 0%, #00b8a9 100%);
    width: 100%;
}

.trend-card {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 30px 60px -15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.trend-chart {
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.trend-chart img {
  width: 100%;
  height: auto;
  display: block;
}

.trend-summary p {
  font-size: 17px;
  line-height: 1.8;
  color: #334155;

  margin: 0 auto;
}

.trend-summary strong {
  color: #0077ff;
  font-weight: 700;
}

.growth-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #00b8a9 0%, #008c80 100%);
  color: #fff;
  border-radius: 20px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 2px 10px rgba(0, 184, 169, 0.3);
}

/* Resources Section */
.export-resources-section {
  padding: 70px 0 90px;
}

.resources-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;

}

.resource-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 30px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.resource-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #0077ff, #00b8a9);
  transform: scaleY(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.resource-link:hover::before {
  transform: scaleY(1);
}

.resource-link:hover {
  border-color: #0077ff;
  background: linear-gradient(90deg, rgba(0, 119, 255, 0.02) 0%, transparent 100%);
  transform: translateX(8px);
  box-shadow: 0 4px 20px rgba(0, 119, 255, 0.12);
}

.resource-link.featured {
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.05), rgba(0, 184, 169, 0.05));
  border-color: #0077ff;
  box-shadow: 0 2px 12px rgba(0, 119, 255, 0.1);
}

.resource-text {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
}

.resource-arrow {
  font-size: 22px;
  color: #0077ff;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 300;
}

.resource-link:hover .resource-arrow {
  transform: translateX(6px);
}

/* GI Products Section */
.gi-products-section {
  padding: 70px 0 90px;
}

.gi-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 28px;
}

.gi-product-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 20px 40px -10px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.gi-product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0077ff, #00b8a9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gi-product-card:hover::before {
  transform: scaleX(1);
}

.gi-product-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 30px 60px -15px rgba(0, 119, 255, 0.15);
  transform: translateY(-6px);
  border-color: rgba(0, 119, 255, 0.2);
}

.gi-badge {
  flex-shrink: 0;
}

.gi-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0077ff 0%, #00b8a9 100%);
  color: #fff;
  border-radius: 14px;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(0, 119, 255, 0.25);
}

.gi-content {
  flex: 1;
}

.gi-product-name {
  margin-bottom: 14px;
}

.gi-product-name a {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: -0.01em;
}

.gi-product-name a:hover {
  color: #0077ff;
}

.gi-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gi-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #00b8a9;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.gi-category i {
  font-size: 13px;
}

.gi-applicant {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

/* Facilitation Centre Section */
.facilitation-section {
  padding: 70px 0 90px;
}
.intro-text-block{
    background: #fff;
  border-radius: 20px;
  padding: 50px;

  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 30px 60px -15px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #0077ff;
  position: relative;
  overflow: hidden;
}

.efc-intro-card {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 70px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 30px 60px -15px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #0077ff;
  position: relative;
  overflow: hidden;
}

.efc-intro-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 119, 255, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.efc-intro-content {
  position: relative;
  z-index: 1;
}

.efc-intro-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 20px;
}

.efc-intro-content strong {
  color: #0077ff;
  font-weight: 700;
}

.subsection-title {
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 35px;
  letter-spacing: -0.01em;
  position: relative;
  display: inline-block;
}

.subsection-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #0077ff, #00b8a9);
  border-radius: 2px;
}

/* Deliverables Grid */
.deliverables-section {
  margin-bottom: 70px;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.deliverable-item {
  background: #fff;
  padding: 28px;
  border-radius: 14px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 10px 30px -5px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.deliverable-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0077ff, #00b8a9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.deliverable-item:hover::before {
  transform: scaleX(1);
}

.deliverable-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 20px 40px -10px rgba(0, 119, 255, 0.15);
  border-color: rgba(0, 119, 255, 0.1);
}

.deliverable-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.08), rgba(0, 184, 169, 0.08));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.deliverable-item:hover .deliverable-icon {
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0, 119, 255, 0.3);
}

.deliverable-icon i {
  font-size: 22px;
  color: #0077ff;
  transition: color 0.3s ease;
}

.deliverable-item:hover .deliverable-icon i {
  color: #fff;
}

.deliverable-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #334155;
  margin: 0;
  font-weight: 500;
}

/* Contact Section */
.contact-section {
  margin-top: 70px;
}

.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 30px 60px -15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-person {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 35px;
  margin-bottom: 35px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}

.person-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0077ff 0%, #00b8a9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 119, 255, 0.3);
}

.person-icon i {
  font-size: 36px;
  color: #fff;
}

.person-details h4 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.person-details p {
  font-size: 15px;
  color: #64748b;
  margin: 0;
  font-weight: 500;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-item i {
  font-size: 24px;
  color: #0077ff;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item p {
  font-size: 15px;
  color: #334155;
  margin: 0;
  line-height: 1.6;
}

.contact-item a {
  color: #0077ff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.contact-item a:hover {
  color: #00b8a9;
}

/* FAQs Section */
.faqs-section {
  padding: 70px 0 90px;
}

.faq-category {
  margin-bottom: 60px;
}

.faq-category:last-child {
  margin-bottom: 0;
  margin-top: 40px;
}

.category-title {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  letter-spacing: -0.01em;
}

.category-badge {
  display: inline-flex;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.category-badge.sps {
  background: linear-gradient(135deg, #0077ff 0%, #0056cc 100%);
}

.category-badge.tbt {
  background: linear-gradient(135deg, #00b8a9 0%, #008c80 100%);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 10px 30px -5px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  border-color: rgba(0, 119, 255, 0.2);
}

.faq-item.active {
  border-color: #0077ff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 20px 40px -10px rgba(0, 119, 255, 0.15);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(90deg, rgba(0, 119, 255, 0.02) 0%, transparent 100%);
}

.faq-item.active .faq-question {
  background: linear-gradient(90deg, rgba(0, 119, 255, 0.03) 0%, transparent 100%);
}

.faq-question span {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  text-align: left;
  line-height: 1.5;
}

.faq-question i {
  font-size: 16px;
  color: #94a3b8;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: #0077ff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 600px;
}

.faq-answer p {
  padding: 0 28px 28px;
  font-size: 15px;
  line-height: 1.8;
  color: #475569;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .data-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .content-title {
    font-size: 28px;
  }

  .trend-card {
    padding: 40px 30px;
  }

  .gi-products-grid {
    grid-template-columns: 1fr;
  }

  .deliverables-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .efc-intro-card {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .export-introduction,
  .export-data-section,
  .export-trend-section,
  .export-resources-section,
  .gi-products-section,
  .facilitation-section,
  .faqs-section {
    padding: 50px 0;
  }

  .tab-breadcrumb {
    padding: 20px 28px;
    font-size: 14px;
  }

  .content-title {
    font-size: 26px;
  }

  .subsection-title {
    font-size: 22px;
  }

  .intro-text-block p {
    font-size: 15px;
  }

  .card-header {
    padding: 28px 24px 20px;
  }

  .card-title {
    font-size: 18px;
  }

  .data-table th,
  .data-table td {
    padding: 16px 24px;
    font-size: 13px;
  }

  .card-note {
    padding: 18px 24px;
    font-size: 12px;
  }

  .trend-summary p {
    font-size: 15px;
  }

  .resources-list {
    grid-template-columns: 1fr;
  }

  .gi-product-card {
    padding: 24px;
  }

  .gi-number {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .deliverables-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 30px 20px;
  }

  .contact-person {
    flex-direction: column;
    text-align: center;
  }

  .subsection-title {
    font-size: 20px;
  }

  .category-title {
    font-size: 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .tab-breadcrumb {
    padding: 16px 20px;
    font-size: 13px;
  }

  .content-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .data-table th,
  .data-table td {
    padding: 12px 15px;
    font-size: 12px;
  }

  .rank {
    width: 20px;
    height: 20px;
    font-size: 11px;
    margin-right: 8px;
  }

  .resource-link {
    padding: 20px;
  }

  .resource-text {
    font-size: 14px;
  }

  .gi-product-card {
    flex-direction: column;
  }

  .gi-number {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .deliverable-item {
    padding: 20px;
  }

  .deliverable-icon {
    width: 40px;
    height: 40px;
  }

  .deliverable-icon i {
    font-size: 18px;
  }

  .person-icon {
    width: 60px;
    height: 60px;
  }

  .person-icon i {
    font-size: 28px;
  }

  .faq-question {
    padding: 18px 20px;
  }

  .faq-question span {
    font-size: 15px;
  }

  .faq-answer p {
    padding: 0 20px 20px;
    font-size: 14px;
  }
}

/* PM Gati Shakti Overview */
.gati-shakti-overview {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.overview-content {

  margin: 0 auto;
}




.overview-text {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 20px 40px -10px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.overview-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #0077ff, #00b8a9);
}

.overview-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 20px;
  padding-left: 20px;
}

.overview-text p:last-child {
  margin-bottom: 0;
}

/* Progress Section */
.gati-shakti-progress {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

/* Progress Highlights */
.progress-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 70px;
}

.highlight-card {
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 20px 40px -10px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0077ff, #00b8a9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-card:hover::before {
  transform: scaleX(1);
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 30px 60px -15px rgba(0, 119, 255, 0.15);
  border-color: rgba(0, 119, 255, 0.2);
}

.highlight-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.1), rgba(0, 184, 169, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-card:hover .highlight-icon {
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 119, 255, 0.3);
}

.highlight-icon i {
  font-size: 36px;
  color: #0077ff;
  transition: color 0.3s ease;
}

.highlight-card:hover .highlight-icon i {
  color: #fff;
}

.highlight-content {
  flex: 1;
}

.highlight-number {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}



/* Charts Section */
.charts-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.chart-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 20px 40px -10px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chart-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 30px 60px -15px rgba(0, 119, 255, 0.1);
}

.chart-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}

.chart-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
  margin: 0;
}

.chart-container {
  position: relative;
  height: 400px;
}

/* Responsive */
@media (max-width: 991px) {
  .gati-shakti-overview,
  .gati-shakti-progress {
    padding: 60px 0;
  }

  .section-title {
    font-size: 30px;
  }

  .progress-highlights {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 50px;
  }

  .highlight-card {
    padding: 30px;
  }

  .highlight-icon {
    width: 70px;
    height: 70px;
  }

  .highlight-icon i {
    font-size: 32px;
  }

  .highlight-number {
    font-size: 28px;
  }

  .chart-card {
    padding: 30px;
  }

  .chart-container {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .gati-shakti-overview,
  .gati-shakti-progress {
    padding: 50px 0;
  }

  .section-title {
    font-size: 26px;
  }

  .overview-text {
    padding: 30px 25px;
  }

  .overview-text p {
    font-size: 15px;
    padding-left: 15px;
  }

  .highlight-card {
    padding: 25px;
  }

  .highlight-icon {
    width: 65px;
    height: 65px;
  }

  .highlight-icon i {
    font-size: 28px;
  }

  .highlight-number {
    font-size: 26px;
  }


  .chart-card {
    padding: 25px;
  }

  .chart-title {
    font-size: 18px;
  }

  .chart-container {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .gati-shakti-overview,
  .gati-shakti-progress {
    padding: 40px 0;
  }

  .section-title {
    font-size: 24px;
  }

  .overview-text {
    padding: 25px 20px;
  }

  .overview-text p {
    font-size: 14px;
  }

  .progress-highlights {
    gap: 20px;
  }

  .highlight-card {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }

  .highlight-icon {
    width: 60px;
    height: 60px;
  }

  .highlight-icon i {
    font-size: 26px;
  }

  .highlight-number {
    font-size: 24px;
  }

  .chart-card {
    padding: 20px;
  }

  .chart-title {
    font-size: 16px;
  }

  .chart-container {
    height: 280px;
  }
}

/* Meeting Notice Section */
.meeting-notice-section {
  padding: 80px 0;
  background: #fff;
}

.meeting-table-wrapper {
  overflow-x: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 20px 40px -10px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.meeting-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.meeting-table thead {
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.08), rgba(0, 184, 169, 0.08));
}

.meeting-table th {
  padding: 20px 24px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}

.meeting-table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: background 0.2s ease;
}

.meeting-table tbody tr:hover {
  background: linear-gradient(90deg, rgba(0, 119, 255, 0.02) 0%, transparent 100%);
}

.meeting-table tbody tr:last-child {
  border-bottom: none;
}

.meeting-table td {
  padding: 18px 24px;
  font-size: 14px;
  color: #334155;
  vertical-align: middle;
}

.meeting-table td:first-child {
  font-weight: 600;
  color: #64748b;
  width: 80px;
}

.meeting-type {
  font-weight: 600;
  color: #0f172a;
  background: linear-gradient(90deg, rgba(0, 119, 255, 0.03) 0%, transparent 100%);
  border-left: 3px solid #0077ff;
}

/* Use Cases Section */
.use-cases-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.use-case-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 20px 40px -10px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.use-case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0077ff, #00b8a9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.use-case-card:hover::before {
  transform: scaleX(1);
}

.use-case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 30px 60px -15px rgba(0, 119, 255, 0.15);
  border-color: rgba(0, 119, 255, 0.2);
}

.use-case-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.1), rgba(0, 184, 169, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.use-case-card:hover .use-case-icon {
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 8px 24px rgba(0, 119, 255, 0.3);
}

.use-case-icon i {
  font-size: 32px;
  color: #0077ff;
  transition: color 0.3s ease;
}

.use-case-card:hover .use-case-icon i {
  color: #fff;
}

.use-case-content {
  position: relative;
  z-index: 1;
}

.use-case-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.use-case-description {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 24px;
}

.use-case-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.05), rgba(0, 184, 169, 0.05));
  border: 1px solid rgba(0, 119, 255, 0.2);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #0077ff;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.use-case-link:hover {
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  color: #fff;
  border-color: transparent;
  transform: translateX(5px);
  box-shadow: 0 4px 16px rgba(0, 119, 255, 0.3);
}

.use-case-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.use-case-link:hover i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
  .meeting-notice-section,
  .use-cases-section {
    padding: 60px 0;
  }

  .use-cases-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .meeting-notice-section,
  .use-cases-section {
    padding: 50px 0;
  }

  .meeting-table th,
  .meeting-table td {
    padding: 16px 20px;
    font-size: 13px;
  }

  .use-case-card {
    padding: 32px;
  }

  .use-case-icon {
    width: 65px;
    height: 65px;
  }

  .use-case-icon i {
    font-size: 28px;
  }

  .use-case-title {
    font-size: 18px;
  }

  .use-case-description {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .meeting-notice-section,
  .use-cases-section {
    padding: 40px 0;
  }

  .meeting-table {
    min-width: 500px;
  }

  .meeting-table th,
  .meeting-table td {
    padding: 14px 16px;
    font-size: 12px;
  }

  .use-case-card {
    padding: 28px;
  }

  .use-case-icon {
    width: 60px;
    height: 60px;
  }

  .use-case-icon i {
    font-size: 26px;
  }

  .use-case-title {
    font-size: 17px;
  }

  .use-case-description {
    font-size: 13px;
  }

  .use-case-link {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* Department Content Area */
.department-content-area {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  min-height: 600px;
}

/* Department Introduction */


.intro-card {
  background: #fff;
  border-radius: 18px;
  padding: 48px 44px;
  box-shadow: 0 20px 60px -28px rgba(15, 23, 42, 0.35), 0 10px 30px -20px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.08);

  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.intro-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.08), rgba(0, 184, 169, 0.08));
  opacity: 0.6;
  pointer-events: none;
}

.intro-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #0077ff, #00b8a9);
}

.intro-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 20px;
}

.intro-text p:last-child {
  margin-bottom: 0;
}



.bodies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}

.body-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 16px 50px -28px rgba(15, 23, 42, 0.35), 0 8px 20px -16px rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.body-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 119, 255, 0.25);
  box-shadow: 0 18px 44px -24px rgba(0, 119, 255, 0.35), 0 12px 30px -18px rgba(15, 23, 42, 0.25);
}

.body-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.12), rgba(0, 184, 169, 0.12));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.body-card:hover .body-icon {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  box-shadow: 0 10px 26px rgba(0, 119, 255, 0.28);
}

.body-icon i {
  font-size: 24px;
  color: #0f172a;
  transition: color 0.25s ease;
}

.body-card:hover .body-icon i {
  color: #fff;
}

.body-name {
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.45;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.body-arrow {
  display: none;
}

.functions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.function-item {
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 10px 30px -5px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.function-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 20px 40px -10px rgba(0, 119, 255, 0.12);
  border-color: rgba(0, 119, 255, 0.1);
}

.function-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.1), rgba(0, 184, 169, 0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.function-item:hover .function-icon {
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  transform: scale(1.05);
}

.function-icon i {
  font-size: 32px;
  color: #0077ff;
  transition: color 0.3s ease;
}

.function-item:hover .function-icon i {
  color: #fff;
}

.function-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.function-description {
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* Bodies List */
.bodies-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
}

.bodies-list li {
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.06), rgba(0, 184, 169, 0.06));
  border-radius: 10px;
  border-left: 4px solid #0077ff;
  font-size: 15px;
  color: #1e293b;
  font-weight: 500;
  position: relative;
  padding-left: 40px;
}

.bodies-list li::before {
  content: "→";
  position: absolute;
  left: 16px;
  color: #0077ff;
  font-weight: 700;
}

/* Organizational Structure Tree */
.org-structure-section {
  margin: 60px 0;
}

.org-structure-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.org-structure-title {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 32px 0;
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 2px solid #e2e8f0;
}

.org-tree {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.org-tree-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: #f8fafc;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  font-weight: 600;
  color: #1e293b;
  min-width: 280px;
  transition: all 0.3s ease;
}

.org-tree-item i {
  font-size: 20px;
  color: #0077ff;
}

.org-tree-root {
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.1), rgba(0, 184, 169, 0.1));
  border-color: rgba(0, 119, 255, 0.3);
  font-size: 18px;
}

.org-tree-department {
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.15), rgba(0, 184, 169, 0.15));
  border-color: rgba(0, 119, 255, 0.4);
  font-size: 16px;
  margin-top: 20px;
}

.org-tree-connector {
  width: 3px;
  height: 20px;
  background: linear-gradient(180deg, #0077ff, #00b8a9);
  border-radius: 2px;
}

.org-tree-branches {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
  width: 100%;
  align-items: center;
}

.org-tree-branch {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 600px;
}

.org-tree-connector-horizontal {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #0077ff, #00b8a9);
  border-radius: 2px;
  flex-shrink: 0;
}

.org-tree-body {
  flex: 1;
  background: #fff;
  font-size: 15px;
  min-width: 0;
}

.org-tree-body:hover {
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.05), rgba(0, 184, 169, 0.05));
  border-color: rgba(0, 119, 255, 0.3);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 119, 255, 0.1);
}

/* Key Functions Closing */
.key-functions-closing {
  margin-top: 40px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.04), rgba(0, 184, 169, 0.04));
  border-radius: 12px;
  border-left: 4px solid #0077ff;
}

.key-functions-section {
  padding: 60px 0;
}
.function-closing-text {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
  margin: 0;
  font-style: italic;
}

/* Key Functions Grid Layout */
.functions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;

}

.function-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.function-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0077ff, #00b8a9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.function-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 119, 255, 0.15);
  border-color: rgba(0, 119, 255, 0.3);
}

.function-card:hover::before {
  transform: scaleX(1);
}

.function-card-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.1), rgba(0, 184, 169, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  position: relative;
}

.function-card-icon::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.function-card:hover .function-card-icon {
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  transform: scale(1.05);
}

.function-card:hover .function-card-icon::after {
  opacity: 1;
}

.function-card-icon i {
  font-size: 32px;
  color: #0077ff;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.function-card:hover .function-card-icon i {
  color: #fff;
  transform: scale(1.1);
}

.function-card-content {
  flex: 1;
}

.function-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 12px 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.function-card-description {
  font-size: 15px;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

/* Section Divider */
.section-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 90px 0;
  padding: 0 12px;
}

.divider-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 119, 255, 0.35), transparent);
}

.divider-content {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #fff;
  border-radius: 999px;
  border: 1px solid rgba(0, 119, 255, 0.12);
  box-shadow: 0 10px 30px -20px rgba(0, 119, 255, 0.35);
  white-space: nowrap;
}

.divider-content i {
  font-size: 18px;
  color: #0077ff;
}

.divider-content span {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

/* Contact Information Wrapper */
.contact-information-wrapper {
  background: #f8fafc;
  padding: 60px 20px;
  margin-top: 0;
  border-top: 1px solid #e2e8f0;
}

/* Contact Section Header */
.contact-section-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 32px;
}

.contact-section-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.1), rgba(0, 184, 169, 0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 12px 32px -20px rgba(0, 119, 255, 0.45);
  border: 1px solid rgba(0, 119, 255, 0.12);
}

.contact-section-icon i {
  font-size: 22px;
  color: #0077ff;
}

.contact-section-header .section-title {
  margin-bottom: 6px;
}

.section-subtitle {
  font-size: 14px;
  color: #475569;
  margin: 0;
  font-weight: 400;
}

/* Contact Table */
.contact-table-wrapper {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-table {
  width: 100%;
  border-collapse: collapse;
}

.contact-table thead {
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.08), rgba(0, 184, 169, 0.08));
}

.contact-table th {
  padding: 18px 24px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(0, 119, 255, 0.1);
}

.contact-table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
}

.contact-table tbody tr:hover {
  background: rgba(0, 119, 255, 0.02);
}

.contact-table tbody tr:last-child {
  border-bottom: none;
}

.contact-table td {
  padding: 20px 24px;
  vertical-align: middle;
}

.contact-table-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-table-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 119, 255, 0.2);
}

.contact-table-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-table-avatar i {
  font-size: 20px;
  color: #fff;
}

.contact-table-name {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
}

.contact-table-designation {
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.contact-table-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 119, 255, 0.08);
  border-radius: 8px;
  color: #0077ff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid rgba(0, 119, 255, 0.15);
}

.contact-table-link:hover {
  background: #0077ff;
  color: #fff;
  border-color: #0077ff;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 119, 255, 0.2);
}

.contact-table-link i {
  font-size: 14px;
}

.contact-table-empty {
  color: #94a3b8;
  font-style: italic;
  font-size: 13px;
}

/* Commissioner Grid */
.commissioner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.commissioner-item {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 16px 50px -28px rgba(15, 23, 42, 0.35), 0 10px 30px -20px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.08);
  text-align: left;
  transition: all 0.3s ease;
}

.commissioner-item:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 119, 255, 0.25);
  box-shadow: 0 18px 44px -24px rgba(0, 119, 255, 0.35), 0 12px 30px -18px rgba(15, 23, 42, 0.25);
}

.commissioner-avatar {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.08), rgba(0, 184, 169, 0.08));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 16px 0;
  box-shadow: 0 12px 26px -18px rgba(0, 119, 255, 0.4);
  overflow: hidden;
  border: 1px solid rgba(0, 119, 255, 0.2);
}

.commissioner-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.commissioner-avatar i {
  font-size: 26px;
  color: #0f172a;
}

.commissioner-name {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}

.commissioner-designation {
  font-size: 13px;
  color: #475569;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 14px;
}

.commissioner-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(0, 119, 255, 0.07);
  border-radius: 10px;
  color: #0f172a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  border: 1px solid rgba(0, 119, 255, 0.18);
}

.commissioner-contact:hover {
  background: #0077ff;
  color: #fff;
  border-color: #0077ff;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px -18px rgba(0, 119, 255, 0.4);
}

.commissioner-contact i {
  font-size: 16px;
}

/* DTIC List Layout */
.dtic-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.dtic-list-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 16px 50px -28px rgba(15, 23, 42, 0.35), 0 10px 30px -20px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.dtic-list-item:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 119, 255, 0.25);
  box-shadow: 0 18px 44px -24px rgba(0, 119, 255, 0.35), 0 12px 30px -18px rgba(15, 23, 42, 0.25);
}

.dtic-list-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 0 14px 0;
  background: transparent;
  border-bottom: 1px solid #e2e8f0;
}

.dtic-list-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.08), rgba(0, 184, 169, 0.08));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 12px 26px -18px rgba(0, 119, 255, 0.4);
  border: 1px solid rgba(0, 119, 255, 0.2);
}

.dtic-list-icon i {
  font-size: 18px;
  color: #0f172a;
}

.dtic-list-info {
  flex: 1;
}

.dtic-list-name {
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 6px 0;
}

.dtic-list-person {
  font-size: 13px;
  color: #475569;
  margin: 0;
  font-weight: 500;
}

.dtic-list-contacts {
  display: flex;
  gap: 14px;
  padding: 14px 0 0 0;
  flex-wrap: wrap;
}

.dtic-list-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(0, 119, 255, 0.07);
  border-radius: 10px;
  color: #0f172a;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
  border: 1px solid rgba(0, 119, 255, 0.18);
}

.dtic-list-link:hover {
  background: #0077ff;
  color: #fff;
  border-color: #0077ff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -18px rgba(0, 119, 255, 0.4);
}

/* Quick Access Shortcuts */
.info-shortcuts {
  padding: 60px 0 20px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-top: 1px solid #e2e8f0;

}

.info-shortcuts-inner {

  margin: 0 auto;
  padding: 0 16px;
}

.info-shortcuts .section-title {
  margin-bottom: 6px;
}

.info-shortcuts .section-subtitle {
  margin-bottom: 20px;
}

.shortcut-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.shortcut-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border-radius: 16px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 119, 255, 0.1);
  color: #e2e8f0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.shortcut-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.2), rgba(0, 184, 169, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.shortcut-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0077ff, #00b8a9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.shortcut-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 119, 255, 0.4);
  box-shadow: 0 16px 40px rgba(0, 119, 255, 0.25), 0 8px 20px rgba(0, 0, 0, 0.4);
}

.shortcut-card:hover::before {
  opacity: 1;
}

.shortcut-card:hover::after {
  transform: scaleX(1);
}

.shortcut-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.2), rgba(0, 184, 169, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.shortcut-card:hover .shortcut-icon {
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(0, 119, 255, 0.3);
}

.shortcut-icon i {
  color: #00b8a9;
  font-size: 22px;
  transition: all 0.3s ease;
}

.shortcut-card:hover .shortcut-icon i {
  color: #fff;
  transform: scale(1.1);
}

.shortcut-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 1;
}

.shortcut-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.shortcut-desc {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.4;
}

.shortcut-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  border-radius: 999px;
  align-self: flex-start;
  margin-top: 6px;
  box-shadow: 0 2px 8px rgba(0, 119, 255, 0.3);
  transition: all 0.3s ease;
}

.shortcut-card:hover .shortcut-badge {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 119, 255, 0.4);
}

.shortcut-arrow {
  margin-left: auto;
  font-size: 20px;
  color: #94a3b8;
  z-index: 1;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.shortcut-card:hover .shortcut-arrow {
  transform: translateX(6px);
  color: #00b8a9;
  opacity: 1;
}

/* Criminal Provision Page */
.cp-hero {
  padding: 80px 0 40px;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.08), rgba(0, 184, 169, 0.08));
  border-bottom: 1px solid #e2e8f0;
}

.cp-hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cp-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: #0f172a;
  margin-bottom: 8px;
  font-weight: 700;
}

.cp-title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
}

.cp-subtitle {
  font-size: 15px;
  color: #475569;
  margin: 0;
  max-width: 720px;
}

/* Criminal Provision Content Section */
.cp-content-section {
  padding: 60px 0 100px;
  background: #f8fafc;
}

/* Filters */
.cp-filters {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.cp-filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 200px;
}

.cp-filter-group label {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
}

.cp-filter-select {
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  font-size: 14px;
  color: #1e293b;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cp-filter-select:hover {
  border-color: #0077ff;
}

.cp-filter-select:focus {
  outline: none;
  border-color: #0077ff;
  box-shadow: 0 0 0 3px rgba(0, 119, 255, 0.1);
}

.cp-search-group {
  position: relative;
  flex: 2;
  min-width: 300px;
}

.cp-search-input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  font-size: 14px;
  color: #1e293b;
  transition: all 0.2s ease;
}

.cp-search-input:focus {
  outline: none;
  border-color: #0077ff;
  box-shadow: 0 0 0 3px rgba(0, 119, 255, 0.1);
}

.cp-search-group i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 16px;
}

/* Stats Bar */
.cp-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 40px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  flex-wrap: wrap;
}

.cp-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cp-stat-item.cp-search-item {
  flex: 1;
  min-width: 300px;
  flex-direction: row;
  align-items: center;
}

.cp-stat-number {
  font-size: 32px;
  font-weight: 700;
  color: #0077ff;
  line-height: 1;
}

.cp-stat-label {
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Cards Grid */
.cp-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 24px;
}

.cp-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.cp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 119, 255, 0.15);
  border-color: rgba(0, 119, 255, 0.3);
}

.cp-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.08), rgba(0, 184, 169, 0.08));
  border-bottom: 2px solid #e2e8f0;
}

.cp-card-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0, 119, 255, 0.3);
}

.cp-card-dept {
  padding: 6px 14px;
  background: #fff;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: #0077ff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(0, 119, 255, 0.2);
}

.cp-dept-cards .cp-card-body {
  padding: 24px;
}

.cp-card-body {
  padding: 24px;
}

.cp-card-service {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 20px 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.cp-dept-cards .cp-card-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}

.cp-card-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}

.cp-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.cp-meta-item i {
  color: #0077ff;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
}

.cp-meta-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.cp-meta-label {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cp-meta-value {
  font-size: 14px;
  color: #1e293b;
  line-height: 1.5;
  font-weight: 500;
}

.cp-card-description {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}

.cp-card-description p {
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

.cp-card-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.cp-card-punishment {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.08), rgba(239, 68, 68, 0.08));
  border-radius: 12px;
  border-left: 4px solid #dc2626;
}

.cp-punishment-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dc2626;
  border-radius: 8px;
  flex-shrink: 0;
}

.cp-punishment-icon i {
  color: #fff;
  font-size: 16px;
}

.cp-punishment-content {
  flex: 1;
}

.cp-punishment-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #991b1b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.cp-punishment-text {
  font-size: 14px;
  line-height: 1.6;
  color: #7f1d1d;
  font-weight: 600;
}

.cp-card-trigger {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.08), rgba(0, 184, 169, 0.08));
  border-radius: 12px;
  border-left: 4px solid #0077ff;
  margin-bottom: 0;
}

.cp-trigger-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  border-radius: 8px;
  flex-shrink: 0;
}

.cp-trigger-icon i {
  color: #fff;
  font-size: 16px;
}

.cp-trigger-content {
  flex: 1;
}

.cp-trigger-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #1e40af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.cp-trigger-text {
  font-size: 14px;
  line-height: 1.6;
  color: #1e3a8a;
  font-weight: 500;
}

/* Search Wrapper */
.cp-stat-item .cp-search-group {
  width: 100%;
  position: relative;
}

/* Departments Container */
.cp-departments {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Department Category */
.cp-dept-category {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: all 0.3s ease;
}

.cp-dept-category:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 119, 255, 0.2);
}

/* Department Header */
.cp-dept-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.06), rgba(0, 184, 169, 0.06));
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.cp-dept-header:hover {
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.1), rgba(0, 184, 169, 0.1));
}

.cp-dept-header-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.cp-dept-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 119, 255, 0.2);
}

.cp-dept-icon i {
  font-size: 24px;
  color: #fff;
}

.cp-dept-info {
  flex: 1;
}

.cp-dept-name {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 6px 0;
  line-height: 1.2;
}

.cp-dept-count {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.cp-dept-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.cp-dept-toggle i {
  font-size: 18px;
  color: #0077ff;
  transition: transform 0.3s ease;
}

.cp-dept-category.expanded .cp-dept-toggle {
  background: linear-gradient(135deg, #0077ff, #00b8a9);
}

.cp-dept-category.expanded .cp-dept-toggle i {
  color: #fff;
}

/* Department Content */
.cp-dept-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.cp-dept-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: #f8fafc;
}

/* Updated Card Styles for Department Layout */
.cp-dept-cards .cp-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: all 0.3s ease;
  width: 100%;
}

.cp-dept-cards .cp-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 119, 255, 0.12);
  border-color: rgba(0, 119, 255, 0.3);
}

.cp-card-header-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.06), rgba(0, 184, 169, 0.06));
  border-bottom: 1px solid #e2e8f0;
}

.cp-dept-cards .cp-card-number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  color: #fff;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 119, 255, 0.25);
  flex-shrink: 0;
}

.cp-dept-cards .cp-card-service {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  line-height: 1.3;
  flex: 1;
}

/* Expand All Button */
.cp-expand-all {
  padding: 10px 20px;
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 119, 255, 0.2);
}

.cp-expand-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 255, 0.3);
}

.cp-stat-item:last-child {
  margin-left: auto;
  align-items: flex-end;
}

/* No Results */
.cp-no-results {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  border-radius: 16px;
  border: 2px dashed #e2e8f0;
}

.cp-no-results i {
  font-size: 48px;
  color: #cbd5e1;
  margin-bottom: 20px;
}

.cp-no-results h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 8px 0;
}

.cp-no-results p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

@media (max-width: 900px) {
  .cp-hero {
    padding: 60px 0 30px;
  }
  
  .cp-title {
    font-size: 26px;
  }
  
  .cp-content-section {
    padding: 40px 0 60px;
  }
  
  .cp-stats {
    gap: 20px;
  }
  
  .cp-stat-item.cp-search-item {
    min-width: 250px;
  }
  
  .cp-cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
  }
  
  .cp-dept-cards {
    gap: 14px;
    padding: 20px;
  }
  
  .cp-dept-cards .cp-card-meta {
    grid-template-columns: 1fr;
  }
  
  .cp-card-details-grid {
    grid-template-columns: 1fr;
  }
  
  .cp-dept-header {
    padding: 20px;
  }
  
  .cp-dept-name {
    font-size: 20px;
  }
  
  .cp-dept-icon {
    width: 48px;
    height: 48px;
  }
  
  .cp-dept-icon i {
    font-size: 20px;
  }
  
  .cp-filters {
    flex-direction: column;
  }
  
  .cp-filter-group,
  .cp-search-group {
    width: 100%;
    min-width: 100%;
  }
}

@media (max-width: 600px) {
  .cp-hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cp-kicker {
    font-size: 11px;
  }
  
  .cp-title {
    font-size: 24px;
  }
  
  .cp-subtitle {
    font-size: 14px;
  }
  
  .cp-content-section {
    padding: 30px 0 50px;
  }
  
  .cp-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .cp-dept-cards {
    gap: 12px;
    padding: 16px;
  }
  
  .cp-dept-header {
    padding: 16px;
  }
  
  .cp-dept-header-left {
    gap: 12px;
  }
  
  .cp-dept-icon {
    width: 44px;
    height: 44px;
  }
  
  .cp-dept-icon i {
    font-size: 18px;
  }
  
  .cp-dept-name {
    font-size: 18px;
  }
  
  .cp-dept-count {
    font-size: 12px;
  }
  
  .cp-dept-toggle {
    width: 36px;
    height: 36px;
  }
  
  .cp-dept-toggle i {
    font-size: 16px;
  }
  
  .cp-card-header-row {
    padding: 16px;
    gap: 12px;
  }
  
  .cp-dept-cards .cp-card-number {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  
  .cp-dept-cards .cp-card-service {
    font-size: 18px;
  }
  
  .cp-dept-cards .cp-card-body {
    padding: 20px;
  }
  
  .cp-dept-cards .cp-card-meta {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .cp-card-details-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .cp-card-body {
    padding: 20px;
  }
  
  .cp-card-service {
    font-size: 18px;
  }
  
  .cp-stats {
    flex-direction: column;
    gap: 20px;
    padding: 16px;
    align-items: stretch;
  }
  
  .cp-stat-item.cp-search-item {
    min-width: 100%;
    width: 100%;
  }
  
  .cp-stat-item:last-child {
    margin-left: 0;
    align-items: flex-start;
  }
  
  .cp-stat-number {
    font-size: 28px;
  }
  
  .cp-expand-all {
    width: 100%;
  }
  
  .cp-card-punishment,
  .cp-card-trigger {
    flex-direction: column;
    gap: 12px;
  }
  
  .cp-punishment-icon,
  .cp-trigger-icon {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 768px) {
  .shortcut-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .info-shortcuts {
    padding: 60px 0 30px;
  }
}

.dtic-list-link i {
  font-size: 14px;
}

/* Department Contacts */
.department-contacts {
  padding: 40px 0 60px;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.contact-person-card {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 16px 50px -28px rgba(15, 23, 42, 0.35), 0 10px 30px -20px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.08);
  text-align: left;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-person-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 119, 255, 0.25);
  box-shadow: 0 18px 44px -24px rgba(0, 119, 255, 0.35), 0 12px 30px -18px rgba(15, 23, 42, 0.25);
}

.person-avatar {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.08), rgba(0, 184, 169, 0.08));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 16px 0;
  box-shadow: 0 12px 26px -18px rgba(0, 119, 255, 0.4);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0, 119, 255, 0.2);
}

.person-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person-avatar.large {
  width: 76px;
  height: 76px;
}

.person-avatar i {
  font-size: 26px;
  color: #0f172a;
}

.person-name {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.person-designation {
  font-size: 13px;
  color: #475569;
  margin-bottom: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.person-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(0, 119, 255, 0.07);
  border-radius: 10px;
  color: #0f172a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  border: 1px solid rgba(0, 119, 255, 0.18);
  width: auto;
}

.contact-link:hover {
  background: #0077ff;
  color: #fff;
  border-color: #0077ff;
}

.contact-link i {
  font-size: 14px;
}

.contact-person-card.featured {
  border: 1px solid rgba(0, 119, 255, 0.15);
  background: #fff;
}

.contact-person-card.featured:hover {
  border-color: rgba(0, 119, 255, 0.25);
}

/* DTIC Section */
.dtic-contacts {
  padding: 40px 0 60px;
}

.dtic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.dtic-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
  overflow: hidden;
}

.dtic-card:hover {
  border-color: rgba(0, 119, 255, 0.2);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.dtic-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(0, 119, 255, 0.02);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.dtic-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dtic-icon i {
  font-size: 14px;
  color: #fff;
}

.dtic-title h3 {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 2px 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.dtic-incharge {
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
  display: block;
  line-height: 1.3;
}

.dtic-body {
  padding: 12px 14px;
}

.dtic-designation {
  font-size: 10px;
  color: #94a3b8;
  margin-bottom: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dtic-contacts {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dtic-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(0, 119, 255, 0.05);
  border-radius: 6px;
  color: #0077ff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid rgba(0, 119, 255, 0.1);
}

.dtic-contact-item:hover {
  background: #0077ff;
  color: #fff;
  border-color: #0077ff;
}

.dtic-contact-item i {
  font-size: 12px;
  flex-shrink: 0;
}

/* Investment Commissioner Section */
.investment-commissioner {
  padding: 40px 0 60px;
}

.commissioner-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

/* Department Contacts Section */
.department-contacts {
  padding: 50px 0;
}

.dtic-contacts {
  padding: 20px 0;
}

.dtic-contacts .section-title,
.investment-commissioner .section-title,
.department-contacts .section-title {
  font-size: 28px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

/* Responsive adjustments for breadcrumbs */
@media (max-width: 768px) {
  .breadcrumb-nav {
    padding: 0;
  }
  
  .breadcrumb-nav .breadcrumb-wrapper,
  .breadcrumb-nav > .container.breadcrumb-container {
    padding-left: 0;
    padding-right: 0;
  }
  
  .breadcrumb-nav-btn {
    width: 32px;
    height: 32px;
    font-size: 12px;
    flex-shrink: 0;
    z-index: 10;
    position: relative;
  }
  
  .breadcrumb-nav .breadcrumb-container {
    padding-left: 0;
    padding-right: 0;
    scroll-padding-left: 0;
    scroll-padding-right: 0;
    scroll-snap-type: none;
  }
  
  .tab-breadcrumb,
  .breadcrumb-nav .breadcrumb-container a {
    padding: 12px 16px;
    font-size: 13px;
    margin: 0 1px;
  }
  
  .breadcrumb-separator,
  .breadcrumb-nav .breadcrumb-separator,
  .breadcrumb-nav .breadcrumb-container span {
    padding: 0 3px;
    font-size: 10px;
  }
  
  /* Ensure container starts at 0 scroll position */
  .breadcrumb-nav .breadcrumb-container {
    scroll-behavior: auto;
  }
  
  .dtic-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .commissioner-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  /* Adjust card padding on mobile for 2 columns - make them smaller */
  .contact-card,
  .contact-person-card {
    padding: 12px 8px;
  }
  
  .contact-person-card {
    min-height: auto;
  }
  
  .person-avatar {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
  }
  
  .person-avatar.large {
    width: 56px;
    height: 56px;
  }
  
  .person-avatar i {
    font-size: 20px;
  }
  
  .contact-card-name,
  .contact-person-card .person-name {
    font-size: 13px;
    margin-bottom: 4px;
    line-height: 1.3;
  }
  
  .contact-card-designation,
  .contact-person-card .person-designation {
    font-size: 10px;
    margin-bottom: 8px;
  }
  
  .person-contact-info {
    margin-top: 10px;
    gap: 8px;
  }
  
  .contact-link {
    padding: 6px 10px;
    font-size: 11px;
    gap: 6px;
  }
  
  .contact-link i {
    font-size: 12px;
  }
  
  /* DTIC Cards - smaller on mobile */
  .dtic-card {
    padding: 0;
  }
  
  .dtic-header {
    padding: 10px 8px;
    gap: 8px;
  }
  
  .dtic-icon {
    width: 28px;
    height: 28px;
  }
  
  .dtic-icon i {
    font-size: 12px;
  }
  
  .dtic-title h3 {
    font-size: 12px;
    line-height: 1.2;
  }
  
  .dtic-incharge {
    font-size: 9px;
    line-height: 1.2;
  }
  
  .dtic-body {
    padding: 10px 8px;
  }
  
  .dtic-designation {
    font-size: 9px;
    margin-bottom: 8px;
  }
  
  .dtic-contacts {
    gap: 5px;
  }
  
  .dtic-contact-item {
    padding: 5px 8px;
    font-size: 11px;
    gap: 5px;
  }
  
  .dtic-contact-item i {
    font-size: 10px;
  }

  /* Timeline Layout Responsive */
  .functions-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 32px;
  }

  .function-card {
    padding: 28px;
  }

  .function-card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }

  .function-card-icon i {
    font-size: 28px;
  }

  .function-card-title {
    font-size: 20px;
  }

  .function-card-description {
    font-size: 14px;
  }

  .shortcut-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .shortcut-card {
    padding: 20px;
  }

  .shortcut-icon {
    width: 52px;
    height: 52px;
  }

  .shortcut-icon i {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .functions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }

  .function-card {
    padding: 24px;
  }

  .function-card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
  }

  .function-card-icon i {
    font-size: 24px;
  }

  .function-card-title {
    font-size: 18px;
  }

  .function-card-description {
    font-size: 13px;
  }

  .shortcut-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .shortcut-card {
    padding: 18px;
    gap: 14px;
  }

  .shortcut-icon {
    width: 48px;
    height: 48px;
  }

  .shortcut-icon i {
    font-size: 18px;
  }

  .shortcut-title {
    font-size: 15px;
  }

  .shortcut-desc {
    font-size: 12px;
  }

  /* Section Divider Responsive */
  .section-divider {
    margin: 50px 0;
    padding: 0 15px;
    gap: 12px;
  }

  .divider-content {
    padding: 10px 18px;
    gap: 8px;
  }

  .divider-content i {
    font-size: 16px;
  }

  .divider-content span {
    font-size: 13px;
  }

  /* Contact Information Wrapper Responsive */
  .contact-information-wrapper {
    padding: 40px 0;
  }

  /* Contact Section Header Responsive */
  .contact-section-header {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
  }

  .contact-section-icon {
    width: 50px;
    height: 50px;
  }

  .contact-section-icon i {
    font-size: 20px;
  }

  .contact-section-header .section-title {
    font-size: 20px;
  }

  .section-subtitle {
    font-size: 13px;
  }

  /* Contact Table Responsive */
  .contact-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .contact-table {
    min-width: 600px;
  }

  .contact-table th,
  .contact-table td {
    padding: 14px 16px;
  }

  .contact-table th {
    font-size: 11px;
  }

  .contact-table-person {
    gap: 10px;
  }

  .contact-table-avatar {
    width: 40px;
    height: 40px;
  }

  .contact-table-avatar i {
    font-size: 16px;
  }

  .contact-table-name {
    font-size: 14px;
  }

  .contact-table-designation {
    font-size: 11px;
  }

  .contact-table-link {
    padding: 6px 12px;
    font-size: 12px;
    gap: 6px;
  }

  .contact-table-link i {
    font-size: 12px;
  }

  /* Commissioner Grid Responsive */
  .commissioner-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 24px;
  }

  .commissioner-item {
    padding: 24px;
  }

  .commissioner-avatar {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
  }

  .commissioner-avatar i {
    font-size: 32px;
  }

  .commissioner-name {
    font-size: 16px;
  }

  .commissioner-designation {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .commissioner-contact {
    padding: 10px 16px;
    font-size: 13px;
    gap: 8px;
  }

  .commissioner-contact i {
    font-size: 14px;
  }

  /* DTIC List Responsive */
  .dtic-list {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }

  .dtic-list-item {
    border-radius: 10px;
  }

  .dtic-list-header {
    padding: 16px;
    gap: 12px;
  }

  .dtic-list-icon {
    width: 40px;
    height: 40px;
  }

  .dtic-list-icon i {
    font-size: 16px;
  }

  .dtic-list-name {
    font-size: 14px;
  }

  .dtic-list-person {
    font-size: 12px;
  }

  .dtic-list-contacts {
    padding: 16px;
    gap: 10px;
    flex-direction: column;
  }

  .dtic-list-link {
    padding: 8px 14px;
    font-size: 12px;
    gap: 6px;
    width: 100%;
    justify-content: center;
  }

  .dtic-list-link i {
    font-size: 12px;
  }
}

/* startup */
/* Startup Content Area */
.startup-content-area {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);

}

/* Startup Introduction */
.startup-intro {
  padding: 70px 20px 50px;
}

.intro-card-startup {
  background: #fff;
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 30px 60px -15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
 
  position: relative;
  overflow: hidden;
}

.intro-card-startup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0077ff, #00b8a9);
}

.intro-icon-large {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 10px 40px rgba(0, 119, 255, 0.3);
  animation: floatIcon 3s ease-in-out infinite;
}

.intro-icon-large img {
  width: 100%;
  height: 100%;
  padding: 15px;
  object-fit: contain;
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.intro-icon-large i {
  font-size: 48px;
  color: #fff;
}

/* .intro-text-startup {
  max-width: 1000px;
  margin: 0 auto;
} */

.intro-text-startup p {
  font-size: 17px;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 20px;
}

.startup-section {
  padding: 30px 0;
}

.section-card-startup {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.2);
  margin-bottom: 30px;
}

.section-card-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.section-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, #00b4d8, #0ea5e9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.35);
}

.section-icon-alt {
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
}

.section-icon-primary {
  background: linear-gradient(135deg, #ec4899, #f97316);
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 4px;
  font-weight: 600;
}



.startup-point-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1rem;
  line-height: 1.6;
  color: #1e293b;
}

.startup-point-list li {
  padding-left: 28px;
  position: relative;
}

.startup-point-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 4px;
  color: #22c55e;
}

.funding-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 10px;
}

.funding-item {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(34, 197, 94, 0.08));
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(15, 118, 110, 0.15);
  min-height: 150px;
}

.funding-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

.section-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #1e293b;
  margin-bottom: 20px;
}

.women-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.benefit-pill {
  background: rgba(236, 72, 153, 0.1);
  border: 1px solid rgba(236, 72, 153, 0.4);
  color: #be185d;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 768px) {
  .section-card-startup {
    padding: 30px;
  }

  .section-card-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

/* Startup Ecosystem (existing styles) */
.startup-ecosystem {
  padding: 60px 0;
}




.ecosystem-page-container {
  margin-top: 50px;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding-bottom: 60px;
}

.ecosystem-page-container::before {
  content: '';
  position: absolute;
  inset: 40px 0 0;
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 55%);
  filter: blur(30px);
  z-index: -1;
}

.ecosystem-page-grid {
  background: #fff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 35px 70px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.2);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-bottom: 32px;
}

.ecosystem-page-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.07), rgba(14, 165, 233, 0.07));
  border-radius: 22px;
  padding: 26px;
  border: 1px solid rgba(59, 130, 246, 0.15);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.06);
}

.ecosystem-page-card h2,
.ecosystem-page-card h3 {
  margin-top: 0;
  margin-bottom: 14px;
  color: #0f172a;
}

.ecosystem-pill {
  display: inline-flex;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.15);
  color: #1d4ed8;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ecosystem-checklist.compact li {
  margin-bottom: 4px;
  font-weight: 500;
}

.ecosystem-tabs {
  margin-bottom: 32px;
}

.ecosystem-tabs .tab-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.ecosystem-tabs .tab-button {

  border: 1px solid rgba(59, 130, 246, 0.35);
  text-decoration: none;
  font-weight: 600;
  color: #0f172a;
  transition: all 0.2s ease;
  background: rgba(59, 130, 246, 0.08);
  overflow: hidden;
}

.ecosystem-tabs .tab-button-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
}

.tab-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  transition: background 0.2s ease, color 0.2s ease;
}

.ecosystem-tabs .tab-button.active {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.25);
}

.ecosystem-tabs .tab-button.active .tab-icon {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.ecosystem-tabs .tab-button:hover:not(.active) {
  border-color: rgba(59, 130, 246, 0.6);
  background: rgba(59, 130, 246, 0.15);
}


.ecosystem-page-footer {
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 24px;
  padding: 24px 28px;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.07);
}

.ecosystem-cta-split {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 992px) {
  .ecosystem-hero-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-page-grid {
    padding: 28px;
  }
}

@media (max-width: 768px) {
  .ecosystem-hero-grid {
    gap: 32px;
  }

  .ecosystem-hero-stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .ecosystem-page-grid {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .ecosystem-tabs .tab-buttons {
    flex-direction: column;
  }

  .ecosystem-tabs .tab-button-inner {
    width: 100%;
    justify-content: flex-start;
  }
}

.ecosystem-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.ecosystem-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 28px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  position: relative;
}

.ecosystem-card h3 {
  font-size: 1.3rem;
  margin: 18px 0 10px;
  color: #0f172a;
}

.ecosystem-card h4,
.ecosystem-card h5 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ecosystem-card h4 i,
.ecosystem-card h5 i {
  color: #2563eb;
}

.ecosystem-card p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.ecosystem-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
}

.ecosystem-icon.alt {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.ecosystem-icon.primary {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.ecosystem-icon.tertiary {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
}

.ecosystem-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #0f172a;
  font-weight: 600;
}

.ecosystem-list li {
  padding-left: 22px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.6;
}


.ecosystem-detail {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  margin-bottom: 30px;
  position: relative;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.ecosystem-detail::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(59, 130, 246, 0.05));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.ecosystem-detail-head {
  margin-bottom: 16px;
}

.ecosystem-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.9rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 6px;
  display: inline-block;
}

.ecosystem-detail-head h3 {
  font-size: 1.8rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ecosystem-detail-head h3 i {
  color: #2563eb;
}

.ecosystem-detail-grid {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.stack-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ecosystem-tier {
  border-radius: 18px;
  padding: 20px 22px;
  background: rgba(37, 99, 235, 0.04);
  border: 1px solid rgba(37, 99, 235, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.ecosystem-tier h5 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0f172a;
}

.ecosystem-tier h6 {
  margin: 18px 0 8px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ecosystem-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 24px;
}

.ecosystem-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.4);
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  transition: all 0.2s ease;
  z-index: 0;
}

.ecosystem-link.primary {
  background: #0f172a;
  color: #fff;
  border-color: #0f172a;
}

.ecosystem-link:hover {
  border-color: rgba(37, 99, 235, 0.8);
  color: #0f172a;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.15);
}

.ecosystem-link.primary:hover {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}

.ecosystem-detail {
    animation: fadeInUp 0.6s ease-out;
}

.mentors-intro-section {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(124, 58, 237, 0.08));
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    border: 2px solid rgba(139, 92, 246, 0.15);
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    transition: all 0.3s ease;
}

.mentors-intro-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

.mentors-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

.mentors-icon-wrapper i {
    font-size: 2.5rem;
    color: #fff;
}

.mentors-content {
    flex: 1;
}

.mentors-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #0f172a;
    margin-bottom: 1.25rem;
}

.mentors-description:last-child {
    margin-bottom: 0;
}

.mentors-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.benefit-card {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(124, 58, 237, 0.05));
}

.benefit-card i {
    font-size: 2.5rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h5 {
    font-size: 1.2rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.ecosystem-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    justify-content: center;
}



.ecosystem-link-pdf {
    background: linear-gradient(135deg, #fff, #f8fafc);
    color: #31ac56;
    border-color: #42c268;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

.ecosystem-link-pdf:hover {
    background: linear-gradient(135deg, #31ac56, #42c268);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
}


.ecosystem-link i {
    font-size: 1.1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .mentors-intro-section {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .mentors-icon-wrapper {
        width: 70px;
        height: 70px;
        margin: 0 auto;
    }
    
    .mentors-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .ecosystem-actions {
        flex-direction: column;
    }
    
    .ecosystem-link {
        width: 100%;
        justify-content: center;
    }
}

.ecosystem-note {
  font-size: 0.9rem;
  color: #475569;
  margin-top: 12px;
}

.ecosystem-ordered {
  margin: 12px 0;
  padding-left: 0;
  color: #0f172a;
  list-style: none;
  counter-reset: ecoOrdered;
}

.ecosystem-ordered li {
  margin-bottom: 10px;
  line-height: 1.6;
  padding-left: 38px;
  position: relative;
  counter-increment: ecoOrdered;
}

.ecosystem-ordered li::before {
  content: counter(ecoOrdered);
  position: absolute;
  left: 0;
  top: 3px;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 6px 12px rgba(37, 99, 235, 0.2);
}

.ecosystem-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.ecosystem-checklist li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  color: #1e293b;
}

.ecosystem-checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #22c55e;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .ecosystem-detail {
    padding: 24px;
  }

  .ecosystem-detail-head h3 {
    font-size: 1.4rem;
  }
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  margin-top: 15px;
  letter-spacing: 0.3px;
}

/* Key Highlights */
.key-highlights {
  padding: 70px 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.highlight-box {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 20px 40px -10px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.highlight-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0077ff, #00b8a9);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-box:hover::before {
  transform: scaleX(1);
}

.highlight-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 30px 60px -15px rgba(0, 119, 255, 0.15);
  border-color: rgba(0, 119, 255, 0.2);
}

.highlight-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.1), rgba(0, 184, 169, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-box:hover .highlight-icon {
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(0, 119, 255, 0.3);
}

.highlight-icon i {
  font-size: 36px;
  color: #0077ff;
  transition: color 0.3s ease;
}

.highlight-box:hover .highlight-icon i {
  color: #fff;
}

.highlight-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.highlight-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* Startup CTA */
.startup-cta {
  padding: 0 0 90px;
}

.cta-card-startup {
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  padding: 60px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 119, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.cta-card-startup .existing-user{
  position: absolute;
  left: -50%;
  right: -50%;
  text-align: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;

}


.cta-card-startup::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotateBg 20s linear infinite;

}

@keyframes rotateBg {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.cta-title-startup {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.cta-text-startup {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.btn-primary-startup,
.btn-secondary-startup {
  padding: 16px 40px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}



.btn-primary-startup:hover {
  background: #003a8c;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.btn-secondary-startup {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary-startup:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}



.policy-intro {
  margin-bottom: 50px;
}

.policy-lead {
  font-size: 18px;
  line-height: 1.8;
  color: #334155;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  border-left: 3px solid #0077ff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Vision & Mission */
.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 60px;
}

.vm-card {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 20px 40px -10px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 30px 60px -15px rgba(0, 119, 255, 0.12);
}

.vision-card {
  border-top: 4px solid #0077ff;
}

.mission-card {
  border-top: 4px solid #00b8a9;
}

.vm-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.1), rgba(0, 184, 169, 0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.vm-icon i {
  font-size: 32px;
  color: #0077ff;
}

.vm-title {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.vm-text {
  font-size: 16px;
  line-height: 1.7;
  color: #334155;
  margin: 0;
}

.mission-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mission-list li {
  font-size: 15px;
  line-height: 1.6;
  color: #334155;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.mission-list i {
  color: #00b8a9;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Policy Details Grid */
.policy-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 60px;
}

.policy-detail-card {
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 10px 30px -5px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.policy-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 15px 40px -10px rgba(0, 119, 255, 0.12);
  border-color: rgba(0, 119, 255, 0.2);
}

.detail-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(0, 119, 255, 0.25);
}

.detail-icon i {
  font-size: 32px;
  color: #fff;
}

.detail-title {
  font-size: 14px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.detail-value {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.5;
  margin: 0;
}

/* Definition Card */
.definition-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 20px 40px -10px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  margin-bottom: 60px;
}

.definition-title {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.definition-title i {
  color: #0077ff;
  font-size: 28px;
}

.definition-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 20px;
}

.definition-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.definition-list li {
  font-size: 15px;
  line-height: 1.6;
  color: #334155;
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
}

.definition-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #0077ff;
  font-weight: 700;
  font-size: 18px;
}

.note-box {
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.05), rgba(0, 184, 169, 0.05));
  padding: 20px 24px;
  border-radius: 10px;
  border-left: 4px solid #0077ff;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.note-box i {
  font-size: 22px;
  color: #0077ff;
  flex-shrink: 0;
  margin-top: 2px;
}

.note-box span {
  font-size: 14px;
  line-height: 1.6;
  color: #334155;
  font-weight: 500;
}

/* Priority Sectors */
.priority-sectors {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 20px 40px -10px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  margin-bottom: 60px;
}

.subsection-title {
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 30px;
  letter-spacing: -0.01em;
}

.sectors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.sector-card {
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.03), rgba(0, 184, 169, 0.03));
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(0, 119, 255, 0.1);
}

.sector-type {
  font-size: 18px;
  font-weight: 700;
  color: #0077ff;
  margin-bottom: 16px;
}

.sector-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 20px;
}

.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sector-tag {
  display: inline-block;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid rgba(0, 119, 255, 0.2);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #0077ff;
  transition: all 0.3s ease;
}

.sector-tag:hover {
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}



.student-policy-intro {
  text-align: center;
  margin-bottom: 50px;
}

.student-icon-large {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 10px 40px rgba(0, 119, 255, 0.3);
}

.student-icon-large i {
  font-size: 48px;
  color: #fff;
}

.student-policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.student-policy-card {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 20px 40px -10px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.student-policy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 30px 60px -15px rgba(0, 119, 255, 0.15);
  border-color: rgba(0, 119, 255, 0.2);
}

.student-policy-card.highlighted {
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.05), rgba(0, 184, 169, 0.05));
  border-color: #0077ff;
}

.sp-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.1), rgba(0, 184, 169, 0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.sp-icon i {
  font-size: 32px;
  color: #0077ff;
}

.sp-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.sp-content {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

.amount-badge {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  color: #fff;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(0, 119, 255, 0.3);
}

/* Funding Section */
.funding-section {
  padding: 70px 0 90px;
}

.section-lead {
  font-size: 17px;
  line-height: 1.8;
  color: #475569;
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.funding-schemes {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 70px;
}

.funding-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 20px 40px -10px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.funding-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 30px 60px -15px rgba(0, 119, 255, 0.12);
  border-color: rgba(0, 119, 255, 0.2);
}

.funding-header {
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.05), rgba(0, 184, 169, 0.05));
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.funding-icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 119, 255, 0.25);
}

.funding-icon i {
  font-size: 32px;
  color: #fff;
}

.funding-title-area {
  flex: 1;
}

.funding-title {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.funding-amount {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  color: #fff;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(0, 119, 255, 0.3);
}

.funding-body {
  padding: 30px;
}

.funding-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 24px;
}

.funding-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.funding-detail-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0077ff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.funding-detail-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

.funding-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.funding-list li {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

.funding-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00b8a9;
  font-weight: 700;
  font-size: 16px;
}

/* Other Benefits */
.other-benefits-section {
  background: #fff;
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 20px 40px -10px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.benefit-item {
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.02), rgba(0, 184, 169, 0.02));
  padding: 28px;
  border-radius: 12px;
  border: 1px solid rgba(0, 119, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.05), rgba(0, 184, 169, 0.05));
  border-color: rgba(0, 119, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0, 119, 255, 0.12);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.benefit-icon i {
  font-size: 28px;
  color: #fff;
}

.benefit-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.3;
}

.benefit-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* Registration Section */
.registration-section {
  padding: 70px 0 90px;
}

.registration-intro {
  text-align: center;
  margin-bottom: 60px;
}

/* Registration Process */
.registration-process {
  background: #fff;
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 20px 40px -10px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  margin-bottom: 60px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(180deg, #0077ff, #00b8a9);
}

.process-step {
  display: flex;
  gap: 28px;
  position: relative;
  padding: 20px 0;
}



.step-content {
  flex: 1;
  padding-top: 8px;
}

.step-title {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* Special Category Section */
.special-category-section {
  margin-bottom: 60px;
}

.special-category-card {
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.05), rgba(0, 184, 169, 0.05));
  border: 2px solid #0077ff;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.special-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 119, 255, 0.3);
}

.special-icon i {
  font-size: 36px;
  color: #fff;
}

.special-content {
  flex: 1;
}

.special-title {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.special-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 20px;
}

.special-eligibility {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #0077ff;
}

.special-eligibility strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0077ff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.special-eligibility p {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* Registration CTA */
.registration-cta {
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  border-radius: 20px;
  padding: 60px 50px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 119, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.registration-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotateBg 15s linear infinite;
}

.registration-cta-content {
  position: relative;
  z-index: 1;
}

.registration-cta-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.registration-cta-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
}

.btn-register-startup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 45px;
  background: #fff;
  color: #0077ff;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-register-startup:hover {
  background: #0f172a;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.btn-register-startup i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.btn-register-startup:hover i {
  transform: translateX(4px);
}

/* Placeholder Content */
.placeholder-content {
  text-align: center;
  padding: 120px 20px;
}

.placeholder-content h2 {
  font-size: 28px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 15px;
}

.placeholder-content p {
  font-size: 16px;
  color: #6b7280;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .vision-mission-grid,
  .sectors-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 991px) {
  .startup-intro,
  .key-highlights,
  .startup-cta,
 
  .student-policy-section,
  .funding-section,
  .registration-section {
    padding: 60px 20px;
  }

  .intro-card-startup {
    padding: 50px 40px;
  }

  .content-title {
    font-size: 28px;
  }

  .cta-title-startup,
  .registration-cta-title {
    font-size: 30px;
  }

  .highlights-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary-startup,
  .btn-secondary-startup {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .funding-header {
    flex-direction: column;
    text-align: center;
  }

  .special-category-card {
    flex-direction: column;
    text-align: center;
  }

  .special-icon {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .startup-intro,
  .key-highlights,
  .startup-cta,
  .policy-section,
  .student-policy-section,
  .funding-section,
  .registration-section {
    padding: 50px 20px;
  }

  .intro-card-startup {
    padding: 40px 30px;
  }

  .intro-icon-large,
  .student-icon-large {
    width: 80px;
    height: 80px;
  }

  .intro-icon-large i,
  .student-icon-large i {
    font-size: 40px;
  }

  .content-title {
    font-size: 26px;
  }

  .subsection-title {
    font-size: 22px;
  }

  .intro-text-startup p,
  .policy-lead {
    font-size: 16px;
  }

  .cta-card-startup,
  .registration-cta {
    padding: 50px 30px;
  }

  .cta-title-startup,
  .registration-cta-title {
    font-size: 26px;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .highlight-box {
    padding: 35px;
  }

  .vm-card {
    padding: 35px;
  }

  .policy-details-grid {
    grid-template-columns: 1fr;
  }

  .definition-card,
  .priority-sectors,
  .registration-process,
  .other-benefits-section {
    padding: 35px;
  }

  .student-policy-grid {
    grid-template-columns: 1fr;
  }

  .funding-header {
    padding: 25px;
  }

  .funding-body {
    padding: 25px;
  }

  .funding-icon {
    width: 60px;
    height: 60px;
  }

  .funding-icon i {
    font-size: 28px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .process-steps::before {
    left: 25px;
  }


}

@media (max-width: 576px) {
  .breadcrumb-container {
    gap: 8px;
  }

  .breadcrumb-container span {
    display: inline;
    color: #94a3b8;
    font-size: 14px;
  }

  .tab-breadcrumb {
    padding: 16px 20px;
    font-size: 13px;
  }

  .startup-intro,
  .key-highlights,
  .startup-cta,
  .policy-section,
  .student-policy-section,
  .funding-section,
  .registration-section {
    padding: 40px 20px;
  }

  .intro-card-startup {
    padding: 35px 25px;
  }

  .intro-icon-large,
  .student-icon-large {
    width: 70px;
    height: 70px;
  }

  .intro-icon-large i,
  .student-icon-large i {
    font-size: 36px;
  }

  .content-title {
    font-size: 24px;
  }

  .subsection-title {
    font-size: 20px;
  }

  .intro-text-startup p,
  .policy-lead {
    font-size: 15px;
  }

  .cta-card-startup,
  .registration-cta {
    padding: 40px 25px;
  }

  .cta-title-startup,
  .registration-cta-title {
    font-size: 24px;
  }

  .cta-text-startup,
  .registration-cta-text {
    font-size: 16px;
  }

  .btn-primary-startup,
  .btn-secondary-startup {
    padding: 14px 32px;
    font-size: 15px;
  }

  .highlight-box {
    padding: 30px 25px;
  }

  .highlight-icon {
    width: 70px;
    height: 70px;
  }

  .highlight-icon i {
    font-size: 32px;
  }

  .vm-card {
    padding: 30px 25px;
  }

  .vm-icon {
    width: 60px;
    height: 60px;
  }

  .vm-icon i {
    font-size: 28px;
  }

  .definition-card,
  .priority-sectors,
  .registration-process,
  .other-benefits-section {
    padding: 30px 25px;
  }

  .definition-title {
    font-size: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .student-policy-card {
    padding: 30px 25px;
  }

  .sp-icon {
    width: 60px;
    height: 60px;
  }

  .sp-icon i {
    font-size: 28px;
  }

  .funding-header {
    padding: 20px;
  }

  .funding-body {
    padding: 20px;
  }

  .funding-icon {
    width: 60px;
    height: 60px;
  }

  .funding-icon i {
    font-size: 28px;
  }

  .funding-title {
    font-size: 18px;
  }

  .benefit-item {
    padding: 24px;
  }

  .benefit-icon {
    width: 55px;
    height: 55px;
  }

  .benefit-icon i {
    font-size: 26px;
  }

  .process-steps::before {
    left: 22px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .step-title {
    font-size: 18px;
  }

  .step-desc {
    font-size: 14px;
  }

  .special-category-card {
    padding: 30px 25px;
  }

  .special-icon {
    width: 70px;
    height: 70px;
  }

  .special-icon i {
    font-size: 32px;
  }

  .special-title {
    font-size: 20px;
  }

  .btn-register-startup {
    padding: 16px 36px;
    font-size: 16px;
  }

  .sector-tags {
    gap: 8px;
  }

  .sector-tag {
    padding: 6px 12px;
    font-size: 12px;
  }
}

/* Custom Scrollbar for breadcrumb */
.breadcrumb-container::-webkit-scrollbar {
  height: 4px;
}

.breadcrumb-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}

.breadcrumb-container::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #0077ff, #00b8a9);
  border-radius: 2px;
}

.breadcrumb-container::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #0056cc, #008c80);
}

/* ============================================
   NEWS GRID - STATIC + LOAD MORE (MATCHING THEME)
   ============================================ */

.news-modern-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  padding: 100px 0;
}

.news-card-js {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card-js:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 119, 255, 0.15);
}

.news-thumb-js {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.news-thumb-js img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card-js:hover .news-thumb-js img {
  transform: scale(1.1);
}

.news-date-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(0, 119, 255, 0.95);
  color: #fff;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.news-content-js {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-title-js {
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 14px;
  color: #1a1a1a;
}

.news-title-js a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-title-js a:hover {
  color: #0077ff;
}

.news-excerpt-js {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.news-footer-js {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #d6d6d6;
}

.read-more-js {
  color: #0077ff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.read-more-js:hover {
  color: #00b8a9;
  transform: translateX(6px);
}

.read-more-js i {
  transition: transform 0.3s ease;
}

.read-more-js:hover i {
  transform: translateX(4px);
}

/* Hide cards beyond first 6 */
.news-card-hidden {
  display: none;
}

/* Responsive */
@media (max-width: 992px) {
  .news-grid-js .col-lg-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 768px) {
  .news-modern-section { padding: 80px 0; }
  .news-thumb-js { height: 190px; }
  .news-title-js { font-size: 1.15rem; }
  .news-grid-js .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.news-card-hidden {
  opacity: 0;
  transform: translateY(20px);
}

.news-card-hidden:not(.news-card-hidden) {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* calculator */



.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-top: 0;
}

.calculator-wrapper {
  padding: 3rem 0 4rem;
  margin-top: -2rem;
  background: var(--gray-50);
}

/* Form Card */
.form-card {
  background: white;
  border-radius: 0px 0px 5px 5px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.form-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 5px 5px 0 0px;
}

.form-header h4 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-header p {
  margin: 0;
  opacity: 0.9;
  font-size: 0.875rem;
}

.form-body {
  padding: 2rem;
}

.form-section {
  padding-bottom: 1.75rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--gray-200);
}

.form-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.form-label {
  font-weight: 500;
  color: var(--gray-700);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.form-control, .form-select {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 0.625rem 0.875rem;
  transition: all 0.15s ease;
  background: white;
  font-size: 0.9375rem;
  color: var(--gray-900);
}

.form-control:hover, .form-select:hover {
  border-color: var(--gray-400);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  outline: none;
}

.form-text {
  font-size: 0.8125rem;
  margin-top: 0.375rem;
}

.text-muted {
  color: var(--gray-600);
}

.text-success {
  color: var(--success-dark);
}

.text-warning {
  color: #d97706;
}

.text-danger {
  color: #dc2626;
}

.btn-calculate {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  padding: 0.875rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: all 0.2s ease;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-calculate:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}

.btn-calculate:active {
  transform: translateY(0);
}

.btn-calculate.loading {
  pointer-events: none;
  opacity: 0.7;
  position: relative;
}

.btn-calculate.loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Welcome State */
.welcome-section {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.welcome-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  color: white;
  text-align: center;
  box-shadow: var(--shadow-lg);
  margin-bottom: 2rem;
}

.welcome-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.welcome-hero h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.welcome-hero .lead {
  font-size: 1.0625rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.info-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: all 0.2s ease;
}

.info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.info-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.info-card-icon.purple {
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
}

.info-card-icon.green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.info-card-icon.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.info-card-icon.orange {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}

.info-card h5 {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  font-size: 1.0625rem;
}

.info-card p {
  color: var(--gray-600);
  margin-bottom: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.stat-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: all 0.2s ease;
}

.stat-box:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.375rem;
}

.stat-label {
  color: var(--gray-600);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Result State */
.result-section {
  animation: fadeIn 0.4s ease;
}

/* Result Placeholder */
.result-section-placeholder {
  animation: fadeIn 0.4s ease;
}

.placeholder-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  padding: 4rem 2rem;
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.placeholder-icon {
  font-size: 4rem;
  color: var(--gray-300);
  margin-bottom: 1.5rem;
}

.placeholder-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.placeholder-text {
  color: var(--gray-600);
  font-size: 1rem;
  max-width: 400px;
  line-height: 1.6;
}

.total-banner {
  background: linear-gradient(135deg, var(--success) 0%, var(--success-dark) 100%);
  color: white;
  padding: 1rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border-radius: 10px;
  margin-bottom: 10px;

}

.badges-container {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;

}

.enterprise-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
}

.enterprise-badge i {
  font-size: 0.875rem;
}

.total-amount {
  font-size: 3rem;
  font-weight: 700;
  margin: 0.5rem 0;
  letter-spacing: -0.025em;
}

.total-subtitle {
  font-size: 1.5rem;
  opacity: 0.9;
}

.result-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.subsidy-table {
  margin: 0;
  width: 100%;
}

.subsidy-table thead th {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  font-weight: 600;
  padding: 1rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.subsidy-table tbody tr {
  transition: background 0.15s ease;
  border-bottom: 1px solid var(--gray-200);
}

.subsidy-table tbody tr:hover {
  background: var(--gray-50);
  cursor: pointer;
}

.subsidy-table tbody td {
  padding: 1.25rem 1.5rem;
  vertical-align: top;
}

.subsidy-type {
  font-weight: 600;
  color: var(--gray-900);
  font-size: 0.9375rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.subsidy-type i {
  margin-top: 0.125rem;
  color: var(--primary);
  font-size: 0.875rem;
}

.subsidy-details {
  color: var(--gray-600);
  font-size: 0.875rem;
  line-height: 1.6;
}

.subsidy-details strong {
  color: var(--gray-700);
  font-weight: 600;
}

.subsidy-amount {
  font-weight: 700;
  color: var(--success-dark) !important;
  font-size: 1.125rem;
  text-align: right;
  white-space: nowrap;
}

.total-row {
  background: linear-gradient(135deg, var(--success) 0%, var(--success-dark) 100%) !important;
  color: white;
  font-weight: 700;
}

.total-row td {
  padding: 1.5rem 1.5rem !important;
  font-size: 1.0625rem;
}

.total-row i {
  color: white !important;
}

.sticky-form {
  position: sticky;
  top: 90px;
}

@media (max-width: 991px) {
  .sticky-form {
    position: relative;
    top: 0;
  }
  
  .stats-row {
    grid-template-columns: 1fr;
  }
  
  .total-amount {
    font-size: 2.5rem;
  }
  
  .welcome-hero {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .info-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .total-amount {
    font-size: 2rem;
  }
  
  .form-body {
    padding: 1.5rem;
  }
  
  .subsidy-table thead th,
  .subsidy-table tbody td {
    padding: 1rem;
  }
}

.calculator-section-title{
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.025em;
  position: relative;
  padding-bottom: 0.75rem;
  width: 100%;
}

.calculator-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 74, 173, 0.2);
}

.calculator-section-title i {
  font-size: 1.1rem;
}

/* Investment Field Wrapper - Slider + Input */
.investment-field-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  width: 100%;
  margin-top: 0.5rem;
}

.slider-container {
  flex: 1;
  min-width: 0;
}

.input-container {
  flex-shrink: 0;
  width: 220px;
}

/* Enhanced Slider Styling */
.investment-slider {
  width: 100%;
  height: 8px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(to right, #e2e8f0 0%, #e2e8f0 100%);
  border-radius: 5px;
  outline: none;
  transition: background 0.3s ease;
}

.investment-slider:hover {
  background: linear-gradient(to right, #cbd5e1 0%, #cbd5e1 100%);
}

/* Webkit Slider Thumb */
.investment-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: 2px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 74, 173, 0.3);
  transition: all 0.2s ease;
}

.investment-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 3px 8px rgba(0, 74, 173, 0.4);
}

.investment-slider::-webkit-slider-thumb:active {
  transform: scale(1.1);
}

/* Webkit Slider Track */
.investment-slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  background: linear-gradient(to right, #e2e8f0 0%, #e2e8f0 100%);
  border-radius: 5px;
}

/* Firefox Slider Thumb */
.investment-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: 2px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 74, 173, 0.3);
  transition: all 0.2s ease;
}

.investment-slider::-moz-range-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 3px 8px rgba(0, 74, 173, 0.4);
}

.investment-slider::-moz-range-thumb:active {
  transform: scale(1.1);
}

/* Firefox Slider Track */
.investment-slider::-moz-range-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  background: linear-gradient(to right, #e2e8f0 0%, #e2e8f0 100%);
  border-radius: 5px;
}

/* Focus State */
.investment-slider:focus {
  outline: none;
}

.investment-slider:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.15), 0 2px 6px rgba(0, 74, 173, 0.3);
}

.investment-slider:focus::-moz-range-thumb {
  box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.15), 0 2px 6px rgba(0, 74, 173, 0.3);
}

/* Slider Labels */
.slider-labels {
  margin-top: 0.5rem;
}

.slider-labels small {
  font-size: 0.75rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* Input Group Styling */
.investment-input-group {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.investment-input-group:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.investment-input-group:focus-within {
  box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.1), 0 2px 6px rgba(0, 0, 0, 0.12);
}

.investment-input-group .input-group-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  font-weight: 600;
  border: none;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
}

.investment-input-group .input-group-text:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.investment-input-group .input-group-text:last-child {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.investment-input {
  border: 1px solid var(--gray-300);
  border-left: none;
  border-right: none;
  padding: 0.625rem 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  transition: all 0.2s ease;
}

.investment-input:focus {
  border-color: var(--primary);
  box-shadow: none;
  background-color: #f8fafc;
}

.investment-input::placeholder {
  color: var(--gray-400);
  font-weight: 400;
}

/* Professional Design Enhancements */
.investment-field-wrapper {
  background: linear-gradient(to bottom, rgba(248, 250, 252, 0.5), transparent);
  padding: 1.25rem;
  border-radius: 8px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
}

.investment-field-wrapper:hover {
  border-color: rgba(0, 74, 173, 0.2);
  background: linear-gradient(to bottom, rgba(248, 250, 252, 0.8), transparent);
}

.investment-input-group .input-group-text i {
  font-size: 0.875rem;
}

/* Enhanced Form Label Styling */
.form-label {
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.form-label i {
  margin-right: 0.375rem;
  opacity: 0.7;
}

/* Professional Input Styling */
.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.1);
  outline: none;
}

/* Enhanced Section Spacing */
.form-section {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
  .investment-field-wrapper {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .slider-container {
    width: 100%;
  }

  .input-container {
    width: 100%;
  }
}

.section-title i {
  font-size: 1rem;
  color: var(--primary);
}
tbody, td, tfoot, th, thead, tr{
  border-style: none;
  border-width: 1px;
}

/* ============================================
   Ease of Doing Business Page Styles
   ============================================ */

.eodb-content-section {
  padding: 60px 0 100px;
  background: #f8fafc;
}

/* Introduction Card */
.eodb-intro-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.eodb-intro-content {
  max-width: 100%;
}

.eodb-intro-text {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 20px;
}

.eodb-intro-text:last-child {
  margin-bottom: 0;
}

/* Section Header */
.eodb-section-header {
  margin-bottom: 32px;
  text-align: center;
}

.eodb-section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.eodb-section-subtitle {
  font-size: 16px;
  color: #64748b;
  margin: 0;
}

/* Table Section */
.eodb-table-section {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.eodb-table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.eodb-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
}

.eodb-table thead {
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.08), rgba(0, 184, 169, 0.08));
}

.eodb-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  color: #1e293b;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #e2e8f0;
  white-space: nowrap;
}

.eodb-table th:first-child {
  text-align: center;
  width: 60px;
}

.eodb-table td {
  padding: 16px 20px;
  color: #475569;
  border-bottom: 1px solid #f1f5f9;
  transition: background-color 0.2s ease;
}

.eodb-table tbody tr:hover {
  background-color: rgba(0, 119, 255, 0.02);
}

.eodb-table td:first-child {
  text-align: center;
  font-weight: 600;
  color: #0077ff;
}

.eodb-table td:nth-child(2) {
  font-weight: 600;
  color: #1e293b;
}

/* Highlights Section */
.eodb-highlights-section {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.eodb-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.eodb-highlight-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.eodb-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 119, 255, 0.12);
  border-color: rgba(0, 119, 255, 0.3);
  background: #fff;
}

.eodb-highlight-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 119, 255, 0.2);
}

.eodb-highlight-icon i {
  font-size: 24px;
  color: #fff;
}

.eodb-highlight-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.eodb-highlight-text {
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .eodb-content-section {
    padding: 40px 0 60px;
  }
  
  .eodb-intro-card,
  .eodb-table-section,
  .eodb-highlights-section {
    padding: 28px;
  }
  
  .eodb-section-title {
    font-size: 26px;
  }
  
  .eodb-highlights-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .eodb-table-wrapper {
    overflow-x: scroll;
  }
  
  .eodb-table {
    min-width: 800px;
  }
}

@media (max-width: 600px) {
  .eodb-content-section {
    padding: 30px 0 50px;
  }
  
  .eodb-intro-card,
  .eodb-table-section,
  .eodb-highlights-section {
    padding: 20px;
    border-radius: 12px;
  }
  
  .eodb-section-title {
    font-size: 22px;
  }
  
  .eodb-section-subtitle {
    font-size: 14px;
  }
  
  .eodb-intro-text {
    font-size: 14px;
  }
  
  .eodb-highlights-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .eodb-highlight-card {
    padding: 20px;
  }
  
  .eodb-highlight-icon {
    width: 48px;
    height: 48px;
  }
  
  .eodb-highlight-icon i {
    font-size: 20px;
  }
  
  .eodb-highlight-title {
    font-size: 18px;
  }
  
  .eodb-table th,
  .eodb-table td {
    padding: 12px 16px;
    font-size: 12px;
  }
}

/* ============================================
   Facilitation Council Page Styles
   ============================================ */

/* Content Area */
.fc-content-area {
  padding: 60px 0 100px;
  background: #f8fafc;
}

.fc-content-area .tab-panel {
  display: none;
}

.fc-content-area .tab-panel.active {
  display: block;
}

.fc-content-section {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  margin-top: 0;
}

/* Text Styles */
.fc-text {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 20px;
}

.fc-text:last-child {
  margin-bottom: 0;
}

.fc-subtitle {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin: 32px 0 20px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #e2e8f0;
}

.fc-subtitle:first-child {
  margin-top: 0;
}

.fc-subtitle-small {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin: 24px 0 16px 0;
}

/* Stages List */
.fc-stages-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 24px 0;
}

.fc-stage-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.fc-stage-item:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 119, 255, 0.08);
  border-color: rgba(0, 119, 255, 0.2);
}

.fc-stage-number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  color: #fff;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 119, 255, 0.2);
}

.fc-stage-content {
  flex: 1;
}

.fc-stage-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 12px 0;
}

.fc-stage-text {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 12px;
}

.fc-process-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
}

.fc-process-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

.fc-process-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #0077ff;
  font-weight: 700;
}

/* Features Section */
.fc-features-section {
  margin: 32px 0;
}

.fc-feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.fc-feature-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #0077ff;
  transition: all 0.3s ease;
}

.fc-feature-item:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 119, 255, 0.08);
}

.fc-feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.1), rgba(0, 184, 169, 0.1));
  border-radius: 10px;
  flex-shrink: 0;
}

.fc-feature-icon i {
  font-size: 20px;
  color: #0077ff;
}

.fc-feature-content {
  flex: 1;
}

/* Checklist */
.fc-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 12px;
  margin: 24px 0;
  padding: 24px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.fc-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: #fff;
  border-radius: 8px;
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

.fc-checklist-item i {
  color: #00b8a9;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Fees Table */
.fc-fees-table {
  margin: 32px 0;
}

.fc-table-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 16px 0;
}

.fc-table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.fc-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.fc-table thead {
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.08), rgba(0, 184, 169, 0.08));
}

.fc-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  color: #1e293b;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #e2e8f0;
}

.fc-table td {
  padding: 16px 20px;
  color: #475569;
  border-bottom: 1px solid #f1f5f9;
  font-size: 15px;
}

.fc-table tbody tr:hover {
  background-color: rgba(0, 119, 255, 0.02);
}

.fc-table tbody tr:last-child td {
  border-bottom: none;
}

/* Links */
.fc-link {
  color: #0077ff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.fc-link:hover {
  color: #00b8a9;
  text-decoration: underline;
}

.fc-link-section {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid #e2e8f0;
}

.fc-external-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 119, 255, 0.2);
}

.fc-external-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 119, 255, 0.3);
  color: #fff;
}

.fc-external-link i {
  font-size: 18px;
}

/* Process Section */
.fc-process-section {
  margin: 32px 0;
}

.fc-arbitration-section {
  margin-top: 24px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #00b8a9;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .fc-content-area {
    padding: 40px 0 60px;
  }
  
  .fc-content-section {
    padding: 28px;
  }
  
  .fc-checklist {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .fc-content-area {
    padding: 30px 0 50px;
  }
  
  .fc-content-section {
    padding: 20px;
    border-radius: 12px;
  }
  
  .fc-subtitle {
    font-size: 20px;
  }
  
  .fc-text {
    font-size: 14px;
  }
  
  .fc-stage-item {
    flex-direction: column;
    padding: 20px;
  }
  
  .fc-stage-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .fc-feature-item {
    flex-direction: column;
  }
  
  .fc-feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .fc-feature-icon i {
    font-size: 18px;
  }
  
  .fc-checklist {
    padding: 16px;
  }
  
  .fc-table-wrapper {
    overflow-x: scroll;
  }
  
  .fc-table {
    min-width: 400px;
  }
  
  .fc-table th,
  .fc-table td {
    padding: 12px 16px;
    font-size: 13px;
  }
  
  .fc-external-link {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
  }
}

/* ============================================
   Body Content Pages Styles (DOI, SIPB, etc.)
   ============================================ */

.body-content-section {
  padding: 60px 0 100px;
  background: #f8fafc;
}

.body-content-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.body-intro {
  margin-bottom: 40px;
}

.body-content-title {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 24px 0;
  line-height: 1.2;
}

.body-content-text {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 20px;
}

.body-content-text:last-child {
  margin-bottom: 0;
}

.body-section-title {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin: 40px 0 24px 0;
  padding-bottom: 16px;
  border-bottom: 2px solid #e2e8f0;
}

.body-section-title:first-child {
  margin-top: 0;
}

/* Roles Grid */
.body-roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.body-role-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 10px;
  border-left: 4px solid #0077ff;
  transition: all 0.3s ease;
}

.body-role-item:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 119, 255, 0.1);
  transform: translateX(4px);
}

.body-role-item i {
  color: #00b8a9;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.body-role-item span {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  font-weight: 500;
}

/* Acts List */
.body-acts-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.body-act-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.06), rgba(0, 184, 169, 0.06));
  border-radius: 10px;
  border: 1px solid rgba(0, 119, 255, 0.2);
  transition: all 0.3s ease;
}

.body-act-item:hover {
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.1), rgba(0, 184, 169, 0.1));
  border-color: rgba(0, 119, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 255, 0.15);
}

.body-act-item i {
  color: #0077ff;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.body-act-item span {
  font-size: 15px;
  line-height: 1.6;
  color: #1e293b;
  font-weight: 500;
}

/* Link Section */
.body-link-section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 2px solid #e2e8f0;
}

.body-external-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 119, 255, 0.25);
}

.body-external-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 119, 255, 0.35);
  color: #fff;
}

.body-external-link i {
  font-size: 18px;
}

/* Responsive for Body Pages */
@media (max-width: 900px) {
  .body-content-section {
    padding: 40px 0 60px;
  }
  
  .body-content-card {
    padding: 28px;
  }
  
  .body-content-title {
    font-size: 26px;
  }
  
  .body-roles-grid,
  .body-acts-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .body-content-section {
    padding: 30px 0 50px;
  }
  
  .body-content-card {
    padding: 20px;
    border-radius: 12px;
  }
  
  .body-content-title {
    font-size: 22px;
  }
  
  .body-section-title {
    font-size: 20px;
  }
  
  .body-content-text {
    font-size: 14px;
  }
  
  .body-external-link {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .org-tree-branch {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .org-tree-connector-horizontal {
    width: 3px;
    height: 20px;
    background: linear-gradient(180deg, #0077ff, #00b8a9);
  }
  
  .org-tree-item {
    min-width: 100%;
  }
  
  .bodies-list {
    grid-template-columns: 1fr;
  }
}

/* Contact Category Meta */
.contact-category-meta {
  margin-top: 12px;
}

.contact-address,
.contact-email {
  font-size: 14px;
  color: #64748b;
  margin: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-address i,
.contact-email i {
  color: #0077ff;
  font-size: 14px;
}

.contact-email a {
  color: #0077ff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-email a:hover {
  color: #00b8a9;
  text-decoration: underline;
}

/* Person District and Sectors */
.person-district {
  font-size: 13px;
  color: #0077ff;
  font-weight: 600;
  margin: 8px 0 4px 0;
  padding: 4px 12px;
  background: rgba(0, 119, 255, 0.08);
  border-radius: 6px;
  display: inline-block;
}

.person-sectors {
  font-size: 12px;
  color: #64748b;
  margin: 8px 0 4px 0;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.person-sectors i {
  color: #00b8a9;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Contact Category Navigation */
.contact-category-nav {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  border: 1px solid #e2e8f0;
  position: sticky;
  top: 20px;
  z-index: 100;
}

.category-nav-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.category-nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  white-space: nowrap;
}

.category-nav-btn i {
  font-size: 14px;
  color: #64748b;
  transition: color 0.2s ease;
}

.category-nav-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #1e293b;
}

.category-nav-btn:hover i {
  color: #0077ff;
}

.category-nav-btn.active {
  background: #0077ff;
  border-color: #0077ff;
  color: #fff;
}

.category-nav-btn.active i {
  color: #fff;
}

/* Contact Category Accordion */
.contact-category-section {
  margin-bottom: 12px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.contact-category-section.active {
  border-color: #0077ff;
}

.contact-category-toggle {
  width: 100%;
  padding: 18px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s ease;
  text-align: left;
}

.contact-category-toggle:hover {
  background: #f8fafc;
}

.toggle-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.toggle-icon {
  font-size: 18px;
  color: #0077ff;
  width: 24px;
  flex-shrink: 0;
}

.toggle-text {
  flex: 1;
}

.toggle-title {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 4px 0;
  line-height: 1.4;
}

.toggle-meta {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

.category-toggle-icon {
  font-size: 14px;
  color: #94a3b8;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.contact-category-toggle[aria-expanded="true"] .category-toggle-icon {
  transform: rotate(180deg);
  color: #0077ff;
}

.contact-category-content {
  display: none;
  padding: 0 20px 20px 20px;
  border-top: 1px solid #f1f5f9;
}

/* Contact Category Section Spacing */
.contact-category-section:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-category-nav {
    padding: 16px;
    position: relative;
    top: 0;
  }

  .category-nav-grid {
    gap: 6px;
  }

  .category-nav-btn {
    padding: 8px 12px;
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .contact-category-nav {
    padding: 12px;
  }

  .category-nav-btn {
    padding: 8px 10px;
    font-size: 11px;
    gap: 6px;
  }

  .category-nav-btn i {
    font-size: 12px;
  }

  .contact-category-toggle {
    padding: 16px;
  }

  .toggle-title {
    font-size: 15px;
  }

  .toggle-meta {
    font-size: 12px;
  }

  .contact-category-content {
    padding: 0 16px 16px 16px;
  }
}

/* ============================================
   ODOP Page Styles
   ============================================ */

/* ODOP Tab Panel Padding */
.department-content-area .tab-panel {
  padding: 60px 0;
}

.department-content-area .tab-panel .container {
  max-width: 1200px;
}

/* ODOP About Section */
.odop-about-section {
  margin-bottom: 50px;
}

.odop-about-section .content-card {
  background: #fff;
  border-radius: 16px;
  padding: 48px 44px;
  box-shadow: 0 20px 60px -28px rgba(15, 23, 42, 0.15), 0 10px 30px -20px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
}

.odop-about-section .content-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 120px;
  background: linear-gradient(90deg, #0077ff, #00b8a9);
}

.odop-about-section .content-title {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  position: relative;
}

.odop-about-section .content-text {
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
}

.odop-about-section .content-text p {
  margin-bottom: 22px;
}

.odop-about-section .content-text p:last-child {
  margin-bottom: 0;
}

/* ODOP Action Buttons */
.odop-buttons-section {
  margin-bottom: 60px;
}

.odop-buttons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.odop-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 36px 24px;
  background: linear-gradient(135deg, #0077ff 0%, #00b8a9 100%);
  color: #fff;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 119, 255, 0.25), 0 4px 12px rgba(0, 184, 169, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.odop-action-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.odop-action-btn:hover::before {
  left: 100%;
}

.odop-action-btn:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 119, 255, 0.35), 0 6px 16px rgba(0, 184, 169, 0.25);
  color: #fff;
}

.odop-action-btn:active {
  transform: translateY(-2px) scale(1);
}

.odop-action-btn i {
  font-size: 36px;
  margin-bottom: 4px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.odop-action-btn span {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

/* ODOP Contact Section */
.odop-contact-section {
  margin-bottom: 50px;
}

.odop-contact-section .content-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1), 0 4px 16px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.odop-contact-details-section {
  margin-bottom: 50px;
}

.odop-contact-details-section .content-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1), 0 4px 16px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.06);
  height: 100%;
}

.odop-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

/* ODOP Tables */
.odop-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.odop-table thead {
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  color: #fff;
}

.odop-table th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
}

.odop-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
  font-size: 14px;
}

.odop-table td a {
  color: #0077ff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.odop-table td a:hover {
  color: #00b8a9;
  text-decoration: underline;
}

.odop-table tbody tr:last-child td {
  border-bottom: none;
}

.odop-table tbody tr:hover {
  background: #f8fafc;
}

/* ODOP Products Section */
.odop-products-section {
  margin-bottom: 0;
}

.odop-products-section .content-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1), 0 4px 16px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.odop-products-section .content-title {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

/* ODOP Products Table */
.odop-products-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.odop-products-table thead {
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  color: #fff;
}

.odop-products-table th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
}

.odop-products-table th:first-child {
  width: 80px;
  text-align: center;
}

.odop-products-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
  font-size: 14px;
}

.odop-products-table td:first-child {
  text-align: center;
  font-weight: 600;
  color: #0077ff;
}

.odop-products-table tbody tr:last-child td {
  border-bottom: none;
}

.odop-products-table tbody tr:hover {
  background: #f8fafc;
}

/* ODOP Registered Business Section */
.odop-registered-section {
  margin-bottom: 0;
}

.odop-registered-section .content-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.1), 0 4px 16px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.odop-registered-section .content-title {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

/* ODOP Registered Business Table */
.odop-registered-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.odop-registered-table thead {
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  color: #fff;
}

.odop-registered-table th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
}

.odop-registered-table th:first-child {
  width: 80px;
  text-align: center;
}

.odop-registered-table th:last-child {
  width: 120px;
  text-align: center;
}

.odop-registered-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
  font-size: 14px;
}

.odop-registered-table td:first-child {
  text-align: center;
  font-weight: 600;
  color: #0077ff;
}

.odop-registered-table td:last-child {
  text-align: center;
}

.odop-registered-table tbody tr:last-child td {
  border-bottom: none;
}

.odop-registered-table tbody tr:hover {
  background: #f8fafc;
}

.odop-view-btn {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 119, 255, 0.2);
}

.odop-view-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 255, 0.3);
  color: #fff;
}

/* Table Responsive */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive::-webkit-scrollbar {
  height: 8px;
}

.table-responsive::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}

.table-responsive::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Section Subtitle */
.section-subtitle {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 12px;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #0077ff, #00b8a9);
  border-radius: 2px;
}

/* Responsive Styles for ODOP */
@media (max-width: 768px) {
  .department-content-area .tab-panel {
    padding: 40px 0;
  }

  .odop-about-section .content-card,
  .odop-contact-section .content-card,
  .odop-contact-details-section .content-card,
  .odop-products-section .content-card,
  .odop-registered-section .content-card {
    padding: 32px 24px;
  }

  .odop-about-section .content-title,
  .odop-products-section .content-title,
  .odop-registered-section .content-title {
    font-size: 26px;
    margin-bottom: 24px;
  }

  .odop-buttons-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .odop-buttons-section {
    margin-bottom: 40px;
  }

  .odop-action-btn {
    padding: 28px 20px;
  }

  .odop-action-btn i {
    font-size: 32px;
  }

  .odop-action-btn span {
    font-size: 15px;
  }

  .odop-contact-section,
  .odop-contact-details-section {
    margin-bottom: 40px;
  }

  .odop-contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .odop-table,
  .odop-products-table,
  .odop-registered-table {
    font-size: 12px;
  }

  .odop-table th,
  .odop-products-table th,
  .odop-registered-table th {
    padding: 12px;
    font-size: 13px;
  }

  .odop-table td,
  .odop-products-table td,
  .odop-registered-table td {
    padding: 10px 12px;
    font-size: 12px;
  }

  .section-subtitle {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .odop-about-section .content-card,
  .odop-contact-section .content-card,
  .odop-contact-details-section .content-card,
  .odop-products-section .content-card,
  .odop-registered-section .content-card {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .department-content-area .tab-panel {
    padding: 30px 0;
  }

  .odop-about-section .content-title,
  .odop-products-section .content-title,
  .odop-registered-section .content-title {
    font-size: 22px;
  }

  .odop-action-btn {
    padding: 24px 16px;
  }

  .odop-action-btn i {
    font-size: 28px;
  }

  .odop-action-btn span {
    font-size: 14px;
  }

  .odop-view-btn {
    padding: 6px 16px;
    font-size: 12px;
  }

  .section-subtitle {
    font-size: 18px;
  }
}

  /* ============================================
   Mode of Contact Page Styles
   ============================================ */



.mode-of-contact-section {
    padding: 60px 0;
    background: #f8fafc;
}

.mode-of-contact-section .content-card {
    background: #fff;
    border-radius: 16px;
    padding: 48px 44px;
    box-shadow: 0 20px 60px -28px rgba(15, 23, 42, 0.15),
                0 10px 30px -20px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.06);
    position: relative;
    overflow: hidden;
}

.mode-of-contact-section .content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #0077ff, #00b8a9);
}

.mode-of-contact-section .content-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.mode-of-contact-section .content-intro {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Desktop Table Styles */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.mode-contact-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.mode-contact-table thead {
    background: linear-gradient(135deg, #0077ff, #00b8a9);
    color: #fff;
}

.mode-contact-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
}

.mode-contact-table th:first-child {
    width: 80px;
    text-align: center;
}

.mode-contact-table th:nth-child(3),
.mode-contact-table th:nth-child(4) {
    width: 120px;
    text-align: center;
}

.mode-contact-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
    font-size: 14px;
}

.mode-contact-table td:first-child {
    text-align: center;
    font-weight: 600;
    color: #0077ff;
}

.mode-contact-table td:nth-child(2) {
    font-weight: 500;
    color: #1e293b;
}

.mode-contact-table td:nth-child(3),
.mode-contact-table td:nth-child(4) {
    text-align: center;
    color: #94a3b8;
}

.mode-contact-table tbody tr:last-child td {
    border-bottom: none;
}

.mode-contact-table tbody tr:hover {
    background: #f8fafc;
    transition: background 0.2s ease;
}

/* Mobile Card Styles */
.mobile-cards {
    display: none;
}

.document-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.document-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.card-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.serial-badge {
    background: #fff;
    color: #0056cc;
    font-weight: 700;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 8px;
    min-width: 36px;
    text-align: center;
    flex-shrink: 0;
}

.card-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.5;
}

.card-actions {
    display: flex;
    gap: 16px;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}

.action-item {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .mode-of-contact-section {
        padding: 40px 0;
    }

    .mode-of-contact-section .content-card {
        padding: 32px 20px;
        border-radius: 12px;
    }

    .mode-of-contact-section .content-title {
        font-size: 24px;
        margin-bottom: 6px;
    }

    .mode-of-contact-section .content-intro {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .mobile-cards {
        display: block;
    }

    .table-responsive {
        display: none;
    }
}

@media (max-width: 480px) {
    .mode-of-contact-section {
        padding: 30px 0;
    }

    .mode-of-contact-section .content-card {
        padding: 24px 16px;
    }

    .mode-of-contact-section .content-title {
        font-size: 22px;
    }

    .document-card {
        padding: 16px;
        margin-bottom: 12px;
    }

    .card-header h3 {
        font-size: 15px;
    }

    .serial-badge {
        font-size: 13px;
        padding: 5px 10px;
        min-width: 32px;
    }

    .card-actions {
        flex-direction: row;
        gap: 30px;
    }

    .action-item {
        font-size: 12px;
    }
}
/* ============================================
   Schemes Page Styles
   ============================================ */

.schemes-content-section {
  padding: 60px 0;
}

.schemes-content-section .content-card {
  background: #fff;
  border-radius: 16px;
  padding: 48px 44px;
  box-shadow: 0 20px 60px -28px rgba(15, 23, 42, 0.15), 0 10px 30px -20px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.06);
  position: relative;
  overflow: hidden;
}

.schemes-content-section .content-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 120px;
  background: linear-gradient(90deg, #0077ff, #00b8a9);
}

.schemes-content-section .content-title {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.schemes-content-section .content-text {
  font-size: 16px;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 24px;
}

.schemes-content-section .content-text p {
  margin-bottom: 16px;
}

.schemes-content-section .content-text p:last-child {
  margin-bottom: 0;
}

/* Schemes Sections */
.schemes-section {
  margin-bottom: 40px;
}

.schemes-section:last-child {
  margin-bottom: 0;
}

/* Schemes List */
.schemes-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.scheme-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 10px;
  border-left: 4px solid #0077ff;
  transition: all 0.3s ease;
}

.scheme-item:hover {
  background: #f1f5f9;
  transform: translateX(4px);
}

.scheme-item i {
  color: #0077ff;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.scheme-item span {
  color: #334155;
  font-size: 15px;
  line-height: 1.6;
}

/* Sub Schemes Grid */
.sub-schemes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.sub-scheme-card {
  padding: 24px;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.08), rgba(0, 184, 169, 0.08));
  border-radius: 12px;
  border: 1px solid rgba(0, 119, 255, 0.2);
  transition: all 0.3s ease;
}

.sub-scheme-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 119, 255, 0.15);
}

.sub-scheme-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0077ff;
  margin-bottom: 8px;
}

.sub-scheme-card p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

/* Schemes Highlight Box */
.schemes-highlight-box {
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.1), rgba(0, 184, 169, 0.1));
  border-left: 4px solid #0077ff;
  padding: 20px 24px;
  border-radius: 10px;
  margin: 24px 0;
}

.schemes-highlight-box p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #1e293b;
}

/* Challenge Categories */
.challenge-category {
  margin-bottom: 32px;
  padding: 24px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.challenge-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.challenge-title i {
  color: #0077ff;
  font-size: 22px;
}

.challenge-list {
  list-style:disc;
  padding: 0;
  margin: 0;
}

.challenge-list li {

  color: #475569;
  font-size: 15px;
  line-height: 1.7;
}

.challenge-list li::before {
  left: 0;
  color: #0077ff;
  font-weight: bold;
  font-size: 20px;
}

/* Schemes Table */
.schemes-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
}

.schemes-table thead {
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  color: #fff;
}

.schemes-table th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
}

.schemes-table th:first-child {
  width: 100px;
}

.schemes-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #f1f5f9;
  color: #475569;
  font-size: 14px;
}

.schemes-table td:first-child {
  font-weight: 600;
  color: #0077ff;
}

.schemes-table tbody tr:last-child td {
  border-bottom: none;
}

.schemes-table tbody tr:hover {
  background: #f8fafc;
}

.schemes-table .meeting-type {
  font-weight: 600;
  color: #1e293b;
  background: #f1f5f9;
}

/* Outcome Grid */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.outcome-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.08), rgba(0, 184, 169, 0.08));
  border-radius: 12px;
  border: 1px solid rgba(0, 119, 255, 0.2);
  transition: all 0.3s ease;
}

.outcome-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 119, 255, 0.15);
}

.outcome-item i {
  font-size: 24px;
  color: #0077ff;
  flex-shrink: 0;
}

.outcome-item span {
  color: #334155;
  font-size: 15px;
  font-weight: 500;
}

/* Sub Scheme Detail Cards */
.sub-scheme-detail-card {
  margin-bottom: 40px;
  padding: 28px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.sub-scheme-detail-card:last-child {
  margin-bottom: 0;
}

.sub-scheme-detail-title {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #0077ff;
}

.scheme-highlights {
  margin-top: 20px;
}

.scheme-highlights h5 {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 12px;
}

.scheme-highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.scheme-highlights ul li {
  padding: 10px 0 10px 24px;
  position: relative;
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
}

.scheme-highlights ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00b8a9;
  font-weight: bold;
  font-size: 16px;
}

.scheme-highlights ul li a {
  color: #0077ff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.scheme-highlights ul li a:hover {
  color: #00b8a9;
  text-decoration: underline;
}

.scheme-contact {
  margin-top: 20px;
  padding: 16px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.scheme-contact p {
  margin: 8px 0;
  font-size: 15px;
  color: #475569;
}

.scheme-contact a {
  color: #0077ff;
  text-decoration: none;
}

.scheme-contact a:hover {
  text-decoration: underline;
}

/* QR Code Section */
.qr-code-section {
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.05), rgba(0, 184, 169, 0.05));
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(0, 119, 255, 0.2);
}

.qr-content {
  text-align: center;
}

.qr-code-box {
  margin: 24px 0;
  display: flex;
  justify-content: center;
}

.qr-placeholder {
  width: 200px;
  height: 200px;
  background: #fff;
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.qr-placeholder i {
  font-size: 64px;
  color: #94a3b8;
}

.qr-placeholder p {
  font-size: 14px;
  color: #64748b;
  font-weight: 600;
  margin: 0;
}

/* Progress Highlights */
.progress-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.08), rgba(0, 184, 169, 0.08));
  border-radius: 12px;
  border: 1px solid rgba(0, 119, 255, 0.2);
  transition: all 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 119, 255, 0.15);
}

.highlight-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon i {
  font-size: 24px;
  color: #fff;
}

.highlight-content {
  flex: 1;
}

.highlight-number {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 4px 0;
}

.highlight-text {
  font-size: 1.5rem;
  color: #64748b;
  margin: 0;
}

/* Charts Section for Schemes Page */
.schemes-section .charts-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 32px;
}

.schemes-section .chart-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 20px 40px -10px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.schemes-section .chart-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 30px 60px -15px rgba(0, 119, 255, 0.1);
}

.schemes-section .chart-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}

.schemes-section .chart-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
  margin: 0;
}

.schemes-section .chart-container {
  position: relative;
  height: 400px;
}

/* Meeting Table for Schemes */
.schemes-section .meeting-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.schemes-section .meeting-table thead {
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.08), rgba(0, 184, 169, 0.08));
}

.schemes-section .meeting-table th {
  padding: 20px 24px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}

.schemes-section .meeting-table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: background 0.2s ease;
}

.schemes-section .meeting-table tbody tr:hover {
  background: linear-gradient(90deg, rgba(0, 119, 255, 0.02) 0%, transparent 100%);
}

.schemes-section .meeting-table tbody tr:last-child {
  border-bottom: none;
}

.schemes-section .meeting-table td {
  padding: 18px 24px;
  font-size: 14px;
  color: #334155;
  vertical-align: middle;
}

.schemes-section .meeting-table td:first-child {
  font-weight: 600;
  color: #64748b;
  width: 80px;
}

.schemes-section .meeting-type {
  font-weight: 600;
  color: #0f172a;
  background: linear-gradient(90deg, rgba(0, 119, 255, 0.03) 0%, transparent 100%);
  border-left: 3px solid #0077ff;
}

/* Use Cases Grid */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.use-case-card {
  padding: 28px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.use-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #0077ff;
}

.use-case-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.1), rgba(0, 184, 169, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.use-case-icon i {
  font-size: 24px;
  color: #0077ff;
}

.use-case-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.use-case-description {
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 20px;
}

.use-case-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0077ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.use-case-link:hover {
  color: #00b8a9;
  gap: 12px;
}

/* Scheme Link Button */
.scheme-link-section {
  margin-top: 32px;
  text-align: center;
}

.scheme-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #0077ff, #00b8a9);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 119, 255, 0.25);
}

.scheme-link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 119, 255, 0.35);
  color: #fff;
}

.scheme-link-btn i {
  font-size: 18px;
}

/* Responsive Styles for Schemes */
@media (max-width: 768px) {
  .schemes-content-section {
    padding: 40px 0;
  }

  .schemes-content-section .content-card {
    padding: 32px 24px;
  }

  .schemes-content-section .content-title {
    font-size: 26px;
    margin-bottom: 24px;
  }

  .sub-schemes-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .outcome-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .progress-highlights {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .use-cases-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .challenge-category {
    padding: 20px;
  }

  .sub-scheme-detail-card {
    padding: 24px;
  }

  .schemes-section .chart-card {
    padding: 24px;
  }

  .schemes-section .chart-container {
    height: 300px;
  }

  .schemes-section .meeting-table {
    min-width: 500px;
  }

  .schemes-section .meeting-table th,
  .schemes-section .meeting-table td {
    padding: 14px 16px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .schemes-content-section {
    padding: 30px 0;
  }

  .schemes-content-section .content-card {
    padding: 24px 20px;
  }

  .schemes-content-section .content-title {
    font-size: 22px;
  }

  .scheme-link-btn {
    padding: 14px 24px;
    font-size: 14px;
  }

  .qr-placeholder {
    width: 150px;
    height: 150px;
  }

  .qr-placeholder i {
    font-size: 48px;
  }
}

.press-release-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

.press-release-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: #667eea;
}

.press-release-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.press-release-thumbnail {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.press-release-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.press-release-card:hover .press-release-thumbnail img {
    transform: scale(1.1);
}

.press-release-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 3.5rem;
    opacity: 0.9;
}

.press-release-date-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.95);
    color: #333;
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
}

.press-release-date-badge i {
    font-size: 0.75rem;
    color: #667eea;
}

.press-release-content {
    padding: 0 15px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.press-release-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.press-release-card:hover .press-release-title {
    color: #667eea;
}

.press-release-summary {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.press-release-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.tag-badge {
    background: #f0f4ff;
    color: #667eea;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.press-release-card:hover .tag-badge {
    background: #667eea;
    color: white;
}

.press-release-read-more {
    margin-top: auto;
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.press-release-card:hover .press-release-read-more {
    gap: 10px;
    color: #764ba2;
}

.press-release-read-more i {
    transition: transform 0.3s ease;
}

.press-release-card:hover .press-release-read-more i {
    transform: translateX(5px);
}

.press-release-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 24px;
    border: 1px solid #f0f0f0;
}

.sidebar-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #1a1a1a;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.tags-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-link {
    padding: 8px 16px;
    background: #f5f5f5;
    color: #666;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.tag-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
}

.tag-link.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

@media (max-width: 768px) {
    .press-release-thumbnail {
        height: 200px;
    }
    
    .press-release-content {
        padding: 20px;
    }
    
    .press-release-title {
        font-size: 1.15rem;
    }
}


.press-release-detail {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border: 1px solid #f0f0f0;
}

.press-release-header {
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 24px;
  margin-bottom: 30px;
}

.press-release-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  font-weight: 500;
}

.meta-item i {
  color: #667eea;
  font-size: 1rem;
}

.press-release-detail-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0;
  margin-top: 16px;
}

.press-release-detail-thumbnail {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.press-release-detail-thumbnail img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

.press-release-detail-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 12px;
}

.press-release-detail-placeholder i {
  font-size: 4rem;
  margin-bottom: 15px;
  opacity: 0.8;
}

.press-release-detail-placeholder p {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  opacity: 0.9;
}

.press-release-summary-box {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
  padding: 28px;
  border-left: 5px solid #667eea;
  border-radius: 8px;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.1);
}

.press-release-summary-box .lead {
  margin: 0;
  color: #444;
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 500;
}

.press-release-content {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #444;
}

.press-release-content h1,
.press-release-content h2,
.press-release-content h3 {
  margin-top: 10px;
  margin-bottom: 5px;
  color: #1a1a1a;
  font-weight: 700;
}

.press-release-content h2 {
  font-size: 1.8rem;
}

.press-release-content h3 {
  font-size: 1.2rem;
}

.press-release-content p {
  margin-bottom: 18px;
}

.press-release-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 24px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.press-release-content ul,
.press-release-content ol {
  margin-bottom: 18px;
  padding-left: 30px;
}

.press-release-content li {
  margin-bottom: 10px;
}

.press-release-share {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
  padding: 28px;
  border-radius: 12px;
  border: 1px solid #e0e7ff;
}

.social-share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}

.social-share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  color: white;
}

.social-share-btn.facebook {
  background: #1877f2;
}

.social-share-btn.twitter {
  background: #1da1f2;
}

.social-share-btn.linkedin {
  background: #0077b5;
}

.social-share-btn.whatsapp {
  background: #25d366;
}

.social-share-btn.copy-link {
  background: #6c757d;
}

.press-release-sidebar {
  position: sticky;
  top: 20px;
}

.sidebar-widget {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

.sidebar-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}

.recent-press-releases {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.recent-item {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 15px;
}

.recent-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.recent-link {
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.recent-link:hover {
  transform: translateX(5px);
}

.recent-thumbnail {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #f5f5f5;
  position: relative;
}

.recent-thumbnail-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.recent-thumbnail-placeholder i {
  font-size: 1.5rem;
  opacity: 0.8;
}

.recent-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recent-link:hover .recent-thumbnail img {
  transform: scale(1.1);
}

.recent-content {
  flex-grow: 1;
}

.recent-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent-date {
  font-size: 0.85rem;
  color: #999;
}

.tags-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-link {
  padding: 6px 12px;
  background: #f5f5f5;
  color: #666;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.tag-link:hover {
  background: #667eea;
  color: white;
}

@media (max-width: 991px) {
  .press-release-sidebar {
      position: static;
      margin-top: 40px;
  }
  
  .press-release-detail {
      padding: 24px;
  }
  
  .press-release-detail-title {
      font-size: 2rem;
  }
  
  .press-release-summary-box {
      padding: 20px;
  }
}

@media (max-width: 576px) {
  .press-release-detail-title {
      font-size: 1.75rem;
  }
  
  .press-release-meta {
      gap: 16px;
      font-size: 0.85rem;
  }
  
  .press-release-detail {
      padding: 20px;
  }
}

/* ============================================
   STARTUP PAGE UNIFIED DESIGN SYSTEM
   ============================================ */

/* Container */
.startup-page {
  max-width: 1200px;
  margin: 0 auto;
}

/* Card System */
.startup-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.startup-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.startup-card-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f3f4f6;
}

.startup-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
  font-size: 1.25rem;
}

.startup-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.25rem;
  line-height: 1.3;
}

.startup-subtitle {
  font-size: 0.95rem;
  color: #6b7280;
  margin: 0;
  font-weight: 500;
}

.startup-card-body {
  padding-top: 0.5rem;
}

.startup-paragraph {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 1rem;
}

/* Lists */
.startup-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.startup-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: #f9fafb;
  border-radius: 8px;
  border-left: 3px solid #e5e7eb;
  transition: all 0.2s ease;
  color: #374151;
  line-height: 1.7;
  font-size: 1rem;
}

.startup-list li::before {
  content: "✓";
  color: #10b981;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.startup-list li:hover {
  background: #f3f4f6;
  border-left-color: #2563eb;
}

.startup-list-warning {
  border-left-color: #ef4444 !important;
}

.startup-list-warning::before {
  content: "⚠" !important;
  color: #ef4444 !important;
}

/* Subcards */
.startup-subcard {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.2s ease;
}

.startup-subcard:hover {
  border-color: #2563eb;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.startup-subcard-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e5e7eb;
}

.startup-subcard-head i {
  font-size: 1.5rem;
  color: #2563eb;
}

.startup-subcard-head h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

/* Tags */
.startup-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.startup-tags span {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  background: #ffffff;
  color: #2563eb;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid #dbeafe;
  transition: all 0.2s ease;
}

.startup-tags span:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

.startup-note {
  font-size: 0.9rem;
  color: #6b7280;
  font-style: italic;
  line-height: 1.6;
}

/* Info Box */
.startup-info {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 1.25rem;
  border-left: 3px solid #10b981;
  margin-top: 1rem;
}

.startup-info-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.startup-info-head i {
  color: #10b981;
  font-size: 1.1rem;
}

.startup-info-head h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #059669;
  margin: 0;
}

.startup-info p {
  color: #374151;
  margin: 0;
  line-height: 1.6;
}

/* Buttons */
.startup-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.startup-btn.primary {
  background: #2563eb;
  color: #ffffff;
}

.startup-btn.primary:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.startup-btn.outline {
  background: #ffffff;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.startup-btn.outline:hover {
  background: #2563eb;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Funding Schemes */
.startup-scheme {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.startup-scheme:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-color: #d1d5db;
}

.startup-scheme-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f3f4f6;
}

.scheme-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  background: #2563eb;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
  padding: 0 0.75rem;
}

.startup-scheme-head h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
  line-height: 1.3;
}

.startup-scheme-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.startup-info-block {
  background: #f9fafb;
  border-radius: 8px;
  padding: 1.25rem;
  border-left: 3px solid #e5e7eb;
}

.startup-info-block h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #374151;
  margin: 0 0 0.75rem;
}

.startup-info-block h4 i {
  color: #2563eb;
  font-size: 1rem;
}

.startup-info-block p {
  color: #374151;
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

.startup-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.startup-bullets li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  color: #374151;
  line-height: 1.7;
  position: relative;
}

.startup-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
  font-size: 1.2rem;
}

.startup-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.startup-subcard.minimal {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1rem;
}

.startup-subcard.minimal h5 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  margin: 0 0 0.5rem;
}

.startup-subcard.minimal h5 i {
  color: #2563eb;
  font-size: 0.95rem;
}

.startup-subcard.minimal p {
  color: #374151;
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

/* Overview Page */
.startup-intro {
  margin-bottom: 3rem;
}

.intro-card-startup {
  background: #ffffff;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.intro-icon-large {
  margin-bottom: 2rem;
}

.intro-icon-large img {
  max-height: 120px;
}

.intro-icon-large i {
  font-size: 4rem;
  color: #2563eb;
}

.intro-text-startup {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #374151;
}

.policy-overview-section {
  margin-bottom: 3rem;
}

.policy-overview-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.policy-overview-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.policy-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-size: 1.5rem;
}

.policy-overview-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.policy-overview-card p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.policy-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.policy-card-link:hover {
  gap: 0.75rem;
  color: #1d4ed8;
}

.startup-cta {
  margin-top: 3rem;
}

.cta-card-startup {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.cta-title-startup {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-text-startup {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn-primary-startup {
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  color: #2563eb;
}



.existing-user {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.existing-user:hover {
  text-decoration: underline;
}

/* Policy & Guidelines */
.policy-stack {
  padding: 3rem 0;
}

.content-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2rem;
}

.policy-intro {
  margin-bottom: 2rem;
}

.policy-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #374151;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  border-left: 3px solid #2563eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.policy-lead p {
  margin-bottom: 1rem;
}

.policy-lead p:last-child {
  margin-bottom: 0;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.vm-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.vm-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.vision-card {
  border-top: 4px solid #2563eb;
}

.mission-card {
  border-top: 4px solid #10b981;
}

.vm-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(29, 78, 216, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.vm-icon i {
  font-size: 1.75rem;
  color: #2563eb;
}

.vm-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.vm-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
  margin: 0;
}

.mission-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mission-list li {
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.mission-list li i {
  color: #10b981;
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.policy-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.policy-detail-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: all 0.3s ease;
}

.policy-detail-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.detail-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.detail-icon i {
  font-size: 1.75rem;
  color: #ffffff;
}

.detail-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.detail-value {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.5;
  margin: 0;
}

.policy-sop-note {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-left: 3px solid #2563eb;
}

.sop-icon {
  font-size: 1.5rem;
  color: #2563eb;
  flex-shrink: 0;
}

.sop-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.sop-content p {
  color: #374151;
  margin: 0;
  line-height: 1.6;
}

/* Student Policy */
.student-policy-section {
  margin-top: 3rem;
}

.student-policy-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.student-icon-large {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.student-icon-large i {
  font-size: 3rem;
  color: #ffffff;
}

.student-policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.student-policy-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.student-policy-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.sp-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(29, 78, 216, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.sp-icon i {
  font-size: 1.75rem;
  color: #2563eb;
}

.sp-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.sp-content {
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
  margin: 0;
}

/* Ecosystem Page */
.ecosystem-page-container {
  padding: 3rem 0;
}

.ecosystem-intro {
  margin-bottom: 2rem;
}

.ecosystem-tabs {
  margin-bottom: 2rem;
}

.tab-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f3f4f6;
}

.tab-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #f9fafb;
  color: #6b7280;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.tab-button:hover {
  background: #f3f4f6;
  color: #2563eb;
}

.tab-button.active {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

.tab-icon {
  font-size: 1.1rem;
}

.tab-content {
  padding-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .startup-card {
    padding: 1.5rem;
  }
  
  .startup-card-head {
    flex-direction: column;
    text-align: center;
  }
  
  .startup-icon {
    margin: 0 auto;
  }
  
  .startup-scheme-head {
    flex-direction: column;
    text-align: center;
  }
  
  .scheme-pill {
    margin: 0 auto;
  }
  
  .startup-scheme {
    padding: 1.5rem;
  }
  
  .vision-mission-grid,
  .policy-details-grid,
  .student-policy-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .tab-buttons {
    flex-direction: column;
  }
  
  .tab-button {
    width: 100%;
    justify-content: center;
  }
}
