/* ===== HERO SECTION ===== */
.ii-hero {
  position: relative;
  background: linear-gradient(135deg, #0d214f 0%, #0067da 100%);
  padding: 120px 0 80px;
  overflow: hidden;
}

.ii-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/images/investor/company-overview.jpg') center/cover no-repeat;
  opacity: 0.15;
  z-index: 1;
}

.ii-bg-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.ii-bg-shape.shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.ii-bg-shape.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: 5%;
  animation: float 8s ease-in-out infinite;
}

.ii-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff;
  line-height: 1.15;
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta-btn {
  display: inline-block;
  background: #fff;
  color: #0d214f;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta-btn:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  color: #0d214f;
}

.hero-cta-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.hero-cta-btn:hover i {
  transform: translateX(5px);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* ===== COMMON SECTION STYLES ===== */
.ii-section-title {
  text-align: center;
  margin-bottom: 60px;
}

.ii-badge {
  display: inline-block;
  background: linear-gradient(135deg, #29b9ed, #2563eb);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}

.ii-section-title h2 {
  font-size: 40px;
  color: black;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.15;
}

.ii-section-title p {
  font-size: 18px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* ===== COMPANY OVERVIEW SECTION ===== */
.ii-overview {
  padding: 80px 0;
  background: #f8f9fa;
}

.ii-overview-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Two-column grid layout */
.ii-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}

/* LEFT SIDE - Image Container */
.ii-overview-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.ii-overview-image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 103, 218, 0.15);
}

.ii-overview-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* Image Overlay with Stat */
.ii-image-overlay {
  position: absolute;
  display: none;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(13, 33, 79, 0.95), rgba(13, 33, 79, 0.7));
  padding: 30px;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.ii-overlay-stat {
  text-align: center;
  color: white;
}

.ii-overlay-stat h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}

.ii-overlay-stat p {
  font-size: 1.1rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* RIGHT SIDE - Content Wrapper */
.ii-overview-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ii-overview-text p {
  font-size: 18px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* Highlight Boxes */
.ii-overview-highlights {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ii-highlight-box {
  background: white;
  padding: 20px 25px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-left: 4px solid #0067da;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.ii-highlight-box:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 103, 218, 0.15);
  border-left-color: #0d214f;
}

.ii-highlight-box i {
  font-size: 2rem;
  color: #0067da;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f7ff, #e6f2ff);
  border-radius: 10px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.ii-highlight-box:hover i {
  background: linear-gradient(135deg, #0067da, #0d214f);
  color: white;
  transform: scale(1.1);
}

.ii-highlight-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 5px 0;
}

.ii-highlight-content p {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .ii-overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ii-overview-img {
    height: 400px;
  }
}



/* ===== FINANCIAL HIGHLIGHTS SECTION ===== */
.ii-financial {
  padding: 80px 0;
  background: #fff;
}

.ii-financial-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ii-financial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.ii-financial-card {
  background: linear-gradient(135deg, #f8faff 0%, #fff 100%);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.ii-financial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0067da, #0d214f);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.ii-financial-card:hover::before {
  transform: scaleX(1);
}

.ii-financial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 103, 218, 0.15);
  border-color: #0067da;
}

.ii-financial-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0067da, #0d214f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: #fff;
}

.ii-financial-card h3 {
  font-size: 18px;
  color: #475569;
  margin-bottom: 15px;
  font-weight: 600;
}

.ii-amount {
  font-size: 32px;
  color: black;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}

.ii-growth {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.ii-growth.positive {
  background: #d4edda;
  color: #155724;
}

/* ===== ANNUAL REPORTS SECTION ===== */
.ii-reports {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.ii-reports-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ii-reports-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ii-report-item {
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  border-left: 4px solid #0067da;
  cursor: pointer;
}


.ii-report-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(0, 103, 218, 0.1);
}

.ii-report-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0067da, #0d214f);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ii-report-icon i {
  color: #fff;
  font-size: 22px;
}

.ii-report-content {
  flex: 1;
}

.ii-report-content h4 {
  font-size: 18px;
  color: black;
  margin-bottom: 5px;
  font-weight: 700;
}

.ii-report-content p {
  font-size: 14px;
  color: #475569;
  margin-bottom: 5px;
}

.ii-file-size {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
}

.ii-download-btn {
  width: 40px;
  height: 40px;
  background: #0067da;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.ii-download-btn:hover {
  background: #0d214f;
  transform: scale(1.1);
}

/* ===== CORPORATE GOVERNANCE SECTION ===== */
.ii-governance {
  padding: 80px 0;
  background: #fff;
}

.ii-governance-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ii-governance-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

.ii-governance-left h2 {
  font-size: 40px;
  color: black;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.15;
}

.ii-governance-left p {
  font-size: 18px;
  color: #475569;
  margin-bottom: 30px;
  line-height: 1.8;
}

.ii-governance-list {
  list-style: none;
  padding: 0;
}

.ii-governance-list li {
  padding: 18px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #475569;
  line-height: 1.8;
}

.ii-governance-list li:last-child {
  border-bottom: none;
}

.ii-governance-list i {
  color: #0067da;
  margin-right: 15px;
  font-size: 20px;
}

.ii-governance-right {
  display: grid;
  gap: 20px;
}

.ii-governance-box {
  background: linear-gradient(135deg, #0d214f 0%, #0067da 100%);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  color: #fff;
}

.ii-governance-box i {
  font-size: 48px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.ii-governance-box h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
  opacity: 0.9;
}

.ii-number {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}

.ii-governance-box span {
  font-size: 14px;
  opacity: 0.85;
}

/* ===== SHAREHOLDER INFORMATION SECTION ===== */
.ii-shareholder {
  padding: 80px 0;
  background: #f8f9fa;
}

.ii-shareholder-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Tab Navigation */
.ii-tabs-nav {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.ii-tab-btn {
  background: white;
  border: 2px solid #e2e8f0;
  padding: 15px 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 600;
  color: #475569;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.ii-tab-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.ii-tab-btn:hover {
  border-color: #0067da;
  color: #0067da;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 103, 218, 0.15);
}

.ii-tab-btn:hover i {
  transform: scale(1.1);
}

.ii-tab-btn.active {
  background: linear-gradient(135deg, #0067da, #0d214f);
  border-color: #0067da;
  color: white;
  box-shadow: 0 6px 20px rgba(0, 103, 218, 0.3);
}

/* Tab Content */
.ii-tabs-content {
  position: relative;
}

.ii-tab-panel {
  display: none;
  animation: fadeIn 0.5s ease;
}

.ii-tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Cards Grid */
.ii-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

/* Info Card Styles */
.ii-info-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  overflow: hidden;
}

.ii-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #0067da, #0d214f);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.ii-info-card:hover::before {
  transform: scaleY(1);
}

.ii-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 103, 218, 0.2);
  border-color: #0067da;
}

/* Info Icon */
.ii-info-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #e6f2ff, #f0f7ff);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.ii-info-icon i {
  font-size: 32px;
  color: #0067da;
  transition: all 0.3s ease;
}

.ii-info-card:hover .ii-info-icon {
  background: linear-gradient(135deg, #0067da, #0d214f);
  transform: scale(1.1) rotate(5deg);
}

.ii-info-card:hover .ii-info-icon i {
  color: white;
  transform: scale(1.1);
}

/* Card Content */
.ii-info-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.4;
}

.ii-info-card p {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* Card Link */
.ii-card-link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #0067da;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.ii-card-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.ii-info-card:hover .ii-card-link {
  gap: 12px;
}

.ii-info-card:hover .ii-card-link i {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .ii-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ii-tabs-nav {
    gap: 10px;
  }

  .ii-tab-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .ii-cards-grid {
    grid-template-columns: 1fr;
  }

  .ii-tabs-nav {
    flex-direction: column;
  }

  .ii-tab-btn {
    justify-content: center;
    width: 100%;
  }

  .ii-info-card {
    padding: 25px;
  }
}

/* ===== CTA SECTION ===== */
.ii-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d214f 0%, #0067da 100%);
  position: relative;
  overflow: hidden;
}

.ii-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.ii-cta-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.ii-cta-content {
  text-align: center;
  color: #fff;
}

.ii-cta-content i {
  font-size: 22px;

  opacity: 0.9;
}

.ii-cta-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.15;
}

.ii-cta-content p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.ii-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.ii-cta-primary {
  display: inline-block;
  background: #fff;
  color: #0d214f;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.ii-cta-primary:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  color: #0d214f;
}

.ii-cta-secondary {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.ii-cta-secondary:hover {
  background: #fff;
  color: #0d214f;
  transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .ii-overview-content {
    grid-template-columns: 1fr;
  }

  .ii-governance-content {
    grid-template-columns: 1fr;
  }

  .ii-reports-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ii-hero {
    padding: 80px 0 60px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .ii-section-title h2 {
    font-size: 2rem;
  }

  .hero-cta-btn {
    padding: 14px 35px;
    font-size: 15px;
  }

  .ii-financial-grid,
  .ii-shareholder-grid {
    grid-template-columns: 1fr;
  }

  .ii-cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta-btn {
    padding: 12px 30px;
    font-size: 14px;
  }

  .ii-section-title h2 {
    font-size: 1.8rem;
  }
}

/* ===== SHAREHOLDER MODAL STYLES ===== */
.ii-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.ii-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.ii-modal-container {
  background: #fff;
  width: 100%;
  max-width: 900px;
  max-height: 85vh;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
}

.ii-modal-overlay.active .ii-modal-container {
  transform: translateY(0);
}

.ii-modal-header {
  padding: 25px 30px;
  background: linear-gradient(135deg, #0d214f, #0067da);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ii-modal-header h3 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
}

.ii-modal-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ii-modal-close:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(90deg);
}

.ii-modal-body {
  padding: 30px;
  overflow-y: auto;
  flex: 1;
}

/* Modal Categories */
.ii-doc-category {
  margin-bottom: 30px;
}

.ii-doc-category:last-child {
  margin-bottom: 0;
}

.ii-doc-category h4 {
  font-size: 18px;
  color: #0d214f;
  margin-bottom: 15px;
  font-weight: 700;
  border-bottom: 2px solid #eef2fa;
  padding-bottom: 10px;
  display: inline-block;
  padding-right: 20px;
}

.ii-doc-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
}

.ii-doc-link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8f9fa;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  color: #475569;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.ii-doc-link i {
  color: #0067da;
  font-size: 18px;
  flex-shrink: 0;
}

.ii-doc-link:hover {
  background: #f0f7ff;
  border-color: #0067da;
  color: #0067da;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 103, 218, 0.1);
}

/* Scrollbar for modal body */
.ii-modal-body::-webkit-scrollbar {
  width: 8px;
}

.ii-modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.ii-modal-body::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.ii-modal-body::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Responsive Modal */
@media (max-width: 768px) {
  .ii-modal-container {
    height: 100%;
    max-height: 90vh;
  }

  .ii-doc-list {
    grid-template-columns: 1fr;
  }

  .ii-modal-header h3 {
    font-size: 20px;
  }
}

/* ===== YEAR ACCORDION STYLES ===== */
.ii-year-accordion {
  margin-bottom: 15px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ii-year-accordion.active {
  border-color: #0067da;
  box-shadow: 0 4px 15px rgba(0, 103, 218, 0.1);
}

.ii-year-header {
  padding: 15px 20px;
  background: #f8f9fa;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ii-year-header:hover {
  background: #f0f7ff;
}

.ii-year-header h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0d214f;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ii-year-header i.fa-chevron-down {
  transition: transform 0.3s ease;
  color: #0067da;
}

.ii-year-accordion.active i.fa-chevron-down {
  transform: rotate(180deg);
}

.ii-year-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #fff;
}

.ii-year-accordion.active .ii-year-content {
  max-height: 1000px; /* Large enough to fit content */
  padding: 20px;
}

.ii-cat-group {
    margin-bottom: 20px;
}

.ii-cat-group:last-child {
    margin-bottom: 0;
}

.ii-cat-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 12px;
    padding-left: 8px;
    border-left: 2px solid #e2e8f0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
