/*=============================================
   Dijiworld Knowledge - Main Theme Stylesheet
   Table of Contents:
   1. CSS Variables & Root
   2. Typography
   3. Top Bar
   4. Main Navigation
   5. Hero Section
   6. About Intro Section
   7. Features Section
   8. Categories Grid
   9. Featured Posts
   10. Showcase Section
   11. Blog Section
   12. Step Guide Section
   13. Video Break Section
   14. Featured Article Section
   15. Quick Facts Section
   16. Testimonials Section
   17. CTA / Newsletter
   18. Page Banner
   19. About Page
   20. News Page
   21. Contact Page
   22. Policy Page
   23. Sidebar & Widgets
   24. Footer
   25. Scroll To Top
   26. Responsive
=============================================*/

/* =============================================
   1. CSS Variables & Root
============================================= */
:root {
  --diji-gold: #bf9728;
  --diji-gold-light: #d4af37;
  --diji-gold-dark: #a67c1c;
  --diji-dark: #1a1a2e;
  --diji-dark-2: #16213e;
  --diji-text: #333333;
  --diji-text-light: #777777;
  --diji-white: #ffffff;
  --diji-bg: #fafafa;
  --diji-bg-light: #f5f5f5;
  --diji-border: #e5e5e5;
  --diji-font-heading: 'Playfair Display', serif;
  --diji-font-body: 'Poppins', sans-serif;
  --diji-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --diji-shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.12);
  --diji-radius: 8px;
  --diji-transition: all 0.3s ease;
}

/* =============================================
   2. Typography & Global
============================================= */
body {
  font-family: var(--diji-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--diji-text);
  background: var(--diji-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--diji-font-heading);
  font-weight: 600;
  color: var(--diji-dark);
  line-height: 1.3;
}

a {
  color: var(--diji-gold);
  text-decoration: none;
  transition: var(--diji-transition);
}
a:hover {
  color: var(--diji-gold-dark);
}

img {
  max-width: 100%;
  height: auto;
}

.btn-gold {
  background: var(--diji-gold);
  color: var(--diji-white);
  border: 2px solid var(--diji-gold);
  padding: 12px 32px;
  font-family: var(--diji-font-body);
  font-weight: 500;
  font-size: 15px;
  border-radius: 4px;
  transition: var(--diji-transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-gold:hover {
  background: var(--diji-gold-dark);
  border-color: var(--diji-gold-dark);
  color: var(--diji-white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--diji-gold);
  border: 2px solid var(--diji-gold);
  padding: 12px 32px;
  font-weight: 500;
  font-size: 15px;
  border-radius: 4px;
  transition: var(--diji-transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-outline-gold:hover {
  background: var(--diji-gold);
  color: var(--diji-white);
}

.btn-outline-white {
  background: transparent;
  color: var(--diji-white);
  border: 2px solid var(--diji-white);
  padding: 12px 32px;
  font-weight: 500;
  font-size: 15px;
  border-radius: 4px;
  transition: var(--diji-transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-outline-white:hover {
  background: var(--diji-white);
  color: var(--diji-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-subtitle {
  display: block;
  font-family: var(--diji-font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--diji-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--diji-font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--diji-dark);
  margin-bottom: 15px;
}
.section-desc {
  font-size: 16px;
  color: var(--diji-text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* =============================================
   3. Top Bar
============================================= */
.top-bar {
  background: var(--diji-dark);
  padding: 8px 0;
  font-size: 13px;
}
.top-bar-contact .top-bar-item {
  margin-right: 20px;
  color: rgba(255,255,255,0.8);
}
.top-bar-contact .top-bar-item i {
  color: var(--diji-gold);
  margin-right: 6px;
  font-size: 12px;
}
.top-bar-contact .top-bar-item a {
  color: rgba(255,255,255,0.8);
}
.top-bar-contact .top-bar-item a:hover {
  color: var(--diji-gold);
}
.top-bar-social {
  color: rgba(255,255,255,0.8);
}
.top-bar-social .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  margin-left: 5px;
  transition: var(--diji-transition);
}
.top-bar-social .social-links a:hover {
  background: var(--diji-gold);
  color: var(--diji-white);
}

/* =============================================
   4. Main Navigation
============================================= */
.main-navigation {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--diji-white);
  padding: 5px 0;
  box-shadow: var(--diji-shadow);
  transition: var(--diji-transition);
}
.main-navigation.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--diji-white);
  box-shadow: var(--diji-shadow);
  padding: 3px 0;
}

.site-logo .custom-logo {
  max-height: 80px !important;
  width: auto !important;
  height: auto !important;
}
.navbar-brand {
  font-family: var(--diji-font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--diji-dark) !important;
}

.main-navigation .nav-link {
  color: var(--diji-dark) !important;
  font-family: var(--diji-font-body);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 18px !important;
  transition: var(--diji-transition);
}
.main-navigation .nav-link:hover,
.main-navigation .nav-item.active .nav-link {
  color: var(--diji-gold) !important;
}

.dropdown-menu {
  border: none;
  border-radius: var(--diji-radius);
  box-shadow: var(--diji-shadow);
  padding: 10px 0;
  margin-top: 10px;
}
.dropdown-item {
  font-size: 14px;
  padding: 8px 20px;
  color: var(--diji-text);
}
.dropdown-item:hover {
  background: var(--diji-bg-light);
  color: var(--diji-gold);
}

.navbar-toggler {
  border-color: var(--diji-dark);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,0,0,0.6)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* =============================================
   5. Hero Section
============================================= */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(26,26,46,0.75), rgba(26,26,46,0.55));
}
.hero-border-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 3;
  background: var(--diji-gold);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}
.hero-subtitle {
  font-family: var(--diji-font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--diji-gold-light);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 15px;
  animation: fadeInDown 1s ease;
}
.hero-title {
  font-family: var(--diji-font-heading);
  font-size: 64px;
  font-weight: 600;
  color: var(--diji-white);
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}
.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 35px;
  animation: fadeInUp 1s ease 0.2s both;
}
.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s both;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   6. About Intro Section (Homepage)
============================================= */
.about-intro-section {
  padding: 80px 0;
  background: var(--diji-white);
}
.about-timeline {
  position: relative;
  padding: 20px 0 30px;
}
.about-timeline-line {
  position: absolute;
  top: 35px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--diji-gold);
  opacity: 0.3;
}
.about-timeline-item {
  text-align: center;
  padding: 0 12px;
  position: relative;
}
.about-timeline-dot {
  width: 14px;
  height: 14px;
  background: var(--diji-gold);
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(191, 151, 40, 0.1);
}
.about-timeline-year {
  font-family: var(--diji-font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--diji-gold);
  margin-bottom: 8px;
  line-height: 1;
}
.about-timeline-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--diji-dark);
  margin-bottom: 6px;
}
.about-timeline-desc {
  font-size: 13px;
  color: var(--diji-text-light);
  line-height: 1.5;
}
.about-intro-quote {
  max-width: 700px;
  margin: 40px auto 30px;
  text-align: center;
  font-size: 17px;
  font-style: italic;
  color: var(--diji-text-light);
  line-height: 1.8;
  border: none;
  padding: 0 20px;
}
.about-intro-quote .fa-quote-left {
  color: var(--diji-gold);
  opacity: 0.3;
  font-size: 14px;
  margin-right: 6px;
  vertical-align: super;
}
.about-intro-quote .fa-quote-right {
  color: var(--diji-gold);
  opacity: 0.3;
  font-size: 14px;
  margin-left: 6px;
  vertical-align: super;
}

/* =============================================
   7. Features Section
============================================= */
.features-section {
  padding: 80px 0;
  background: var(--diji-white);
}
.feature-box {
  text-align: center;
  padding: 40px 25px;
  border-radius: var(--diji-radius);
  transition: var(--diji-transition);
  border: 1px solid var(--diji-border);
}
.feature-box:hover {
  box-shadow: var(--diji-shadow-hover);
  border-color: transparent;
  transform: translateY(-5px);
}
.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(191, 151, 40, 0.08);
  border-radius: 50%;
  font-size: 32px;
  color: var(--diji-gold);
  transition: var(--diji-transition);
}
.feature-box:hover .feature-icon {
  background: var(--diji-gold);
  color: var(--diji-white);
}
.feature-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 14px;
  color: var(--diji-text-light);
}

/* =============================================
   7. Categories Grid
============================================= */
.categories-section {
  padding: 80px 0;
  background: var(--diji-bg);
}
.category-card {
  position: relative;
  border-radius: var(--diji-radius);
  overflow: hidden;
  height: 300px;
  display: block;
  text-decoration: none;
  margin-bottom: 30px;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.category-card:hover img {
  transform: scale(1.06);
}
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.8) 0%, rgba(26,26,46,0.25) 50%, transparent 100%);
  z-index: 1;
}
.category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 25px 28px;
}
.category-line {
  width: 50px;
  height: 2px;
  background: var(--diji-gold);
  margin-bottom: 12px;
  transition: width 0.3s ease;
}
.category-card:hover .category-line {
  width: 80px;
}
.category-title {
  font-family: var(--diji-font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--diji-white);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.category-title-icon {
  font-size: 16px;
  color: var(--diji-gold);
  flex-shrink: 0;
}
.category-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin: 0;
}

/* =============================================
   8. Featured Posts Carousel
============================================= */
.featured-posts-section {
  padding: 80px 0;
  background: var(--diji-white);
}
.featured-post-item {
  position: relative;
  border-radius: var(--diji-radius);
  overflow: hidden;
  height: 400px;
  margin: 0 10px;
}
.featured-post-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-post-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(26,26,46,0.9), transparent);
  color: var(--diji-white);
}
.featured-post-cat {
  display: inline-block;
  background: var(--diji-gold);
  color: var(--diji-white);
  font-size: 12px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.featured-post-title {
  font-family: var(--diji-font-heading);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}
.featured-post-title a {
  color: var(--diji-white);
}
.featured-post-title a:hover {
  color: var(--diji-gold-light);
}
.featured-post-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

/* =============================================
   9. Showcase Section
============================================= */
.showcase-section {
  padding: 80px 0;
  background: var(--diji-bg);
}
.showcase-item {
  background: var(--diji-white);
  border-radius: var(--diji-radius);
  overflow: hidden;
  box-shadow: var(--diji-shadow);
  transition: var(--diji-transition);
  margin-bottom: 30px;
}
.showcase-item:hover {
  box-shadow: var(--diji-shadow-hover);
  transform: translateY(-5px);
}
.showcase-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.showcase-item:hover .showcase-image img {
  transform: scale(1.05);
}
.showcase-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--diji-gold);
  color: var(--diji-white);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 3px;
  text-transform: uppercase;
}
.showcase-content {
  padding: 20px;
}
.showcase-category {
  font-size: 12px;
  color: var(--diji-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.showcase-title {
  font-family: var(--diji-font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.showcase-title a {
  color: var(--diji-dark);
}
.showcase-title a:hover {
  color: var(--diji-gold);
}
.showcase-desc {
  font-size: 14px;
  color: var(--diji-text-light);
  margin-bottom: 15px;
}

/* =============================================
   10. Blog Section
============================================= */
.blog-section {
  padding: 80px 0;
  background: var(--diji-white);
}
.blog-card {
  background: var(--diji-white);
  border-radius: var(--diji-radius);
  overflow: hidden;
  box-shadow: var(--diji-shadow);
  transition: var(--diji-transition);
  margin-bottom: 30px;
}
.blog-card:hover {
  box-shadow: var(--diji-shadow-hover);
  transform: translateY(-5px);
}
.blog-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}
.blog-card-content {
  padding: 20px;
}
.blog-card-meta {
  font-size: 13px;
  color: var(--diji-text-light);
  margin-bottom: 8px;
}
.blog-card-meta span {
  margin-right: 15px;
}
.blog-card-meta i {
  color: var(--diji-gold);
  margin-right: 5px;
  font-size: 12px;
}
.blog-card-title {
  font-family: var(--diji-font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.blog-card-title a {
  color: var(--diji-dark);
}
.blog-card-title a:hover {
  color: var(--diji-gold);
}
.blog-card-excerpt {
  font-size: 14px;
  color: var(--diji-text-light);
  margin-bottom: 15px;
}
.blog-card-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--diji-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-card-link i {
  margin-left: 5px;
  transition: var(--diji-transition);
}
.blog-card-link:hover i {
  transform: translateX(5px);
}

/* =============================================
   11. Step Guide Section
============================================= */
.step-guide-section {
  padding: 80px 0;
  background: #fdf8f0;
}
.step-card {
  background: var(--diji-white);
  border-radius: var(--diji-radius);
  padding: 40px 25px;
  text-align: center;
  position: relative;
  box-shadow: var(--diji-shadow);
  transition: var(--diji-transition);
  height: 100%;
  overflow: hidden;
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--diji-shadow-hover);
}
.step-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-family: var(--diji-font-heading);
  font-size: 72px;
  font-weight: 700;
  color: rgba(191, 151, 40, 0.06);
  line-height: 1;
}
.step-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(191, 151, 40, 0.08);
  border-radius: 50%;
  font-size: 28px;
  color: var(--diji-gold);
  position: relative;
  z-index: 1;
}
.step-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.step-desc {
  font-size: 14px;
  color: var(--diji-text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}
.step-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--diji-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.step-link:hover {
  color: var(--diji-gold-dark);
}
.step-link i {
  transition: var(--diji-transition);
}
.step-link:hover i {
  transform: translateX(4px);
}

/* =============================================
   13. Video Break Section
============================================= */
.video-break-section {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-break-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.video-break-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-break-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(26, 26, 46, 0.55);
}
.video-break-gold-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border: 1px solid rgba(191, 151, 40, 0.15);
  border-radius: 50%;
  animation: pulse-ring 3s ease-out infinite;
  z-index: 1;
}
@keyframes pulse-ring {
  0% { width: 0; height: 0; opacity: 1; }
  100% { width: 600px; height: 300px; opacity: 0; }
}
.video-break-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}
.video-break-quote-icon {
  display: block;
  font-size: 32px;
  color: var(--diji-gold);
  margin-bottom: 15px;
  opacity: 0.7;
}
.video-break-title {
  font-family: var(--diji-font-heading);
  font-size: 32px;
  font-weight: 500;
  font-style: italic;
  color: var(--diji-white);
  line-height: 1.4;
  max-width: 600px;
  margin: 0 auto;
}

/* =============================================
   14. Featured Article Section
============================================= */
.featured-article-section {
  padding: 80px 0;
  background: var(--diji-white);
}
.featured-article-card {
  background: var(--diji-bg);
  border-radius: var(--diji-radius);
  overflow: hidden;
  box-shadow: var(--diji-shadow);
}
.featured-article-image {
  height: 100%;
}
.featured-article-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--diji-radius) 0 0 var(--diji-radius);
}
.featured-article-content {
  padding: 40px;
}
.featured-article-cat {
  display: inline-block;
  background: var(--diji-gold);
  color: var(--diji-white);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 3px;
  margin-bottom: 15px;
}
.featured-article-title {
  font-family: var(--diji-font-heading);
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}
.featured-article-title a {
  color: var(--diji-dark);
}
.featured-article-title a:hover {
  color: var(--diji-gold);
}
.featured-article-excerpt {
  font-size: 15px;
  color: var(--diji-text-light);
  line-height: 1.8;
  margin-bottom: 15px;
}
.featured-article-meta {
  font-size: 13px;
  color: var(--diji-text-light);
}
.featured-article-meta i {
  color: var(--diji-gold);
  margin-right: 4px;
}

/* =============================================
   13. Quick Facts Section
============================================= */
.quick-facts-section {
  padding: 80px 0;
  background: var(--diji-dark);
}
.quick-facts-section .section-subtitle {
  color: var(--diji-gold-light);
}
.quick-facts-section .section-title {
  color: var(--diji-white);
}
.quick-facts-section .section-desc {
  color: rgba(255,255,255,0.6);
}
.fact-card {
  background: var(--diji-dark-2);
  border-radius: var(--diji-radius);
  padding: 30px 22px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: var(--diji-transition);
  height: 100%;
  border-top: 3px solid var(--diji-gold);
}
.fact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.fact-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(191, 151, 40, 0.15);
  border-radius: 50%;
  font-size: 22px;
  color: var(--diji-gold);
}
.fact-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--diji-white);
}
.fact-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* =============================================
   14. Testimonials Section
============================================= */
.testimonials-section {
  padding: 80px 0;
  background: var(--diji-white);
  border-top: 3px solid var(--diji-gold);
}
.testimonial-card {
  background: var(--diji-bg);
  padding: 30px;
  border-radius: var(--diji-radius);
  box-shadow: var(--diji-shadow);
  transition: var(--diji-transition);
  position: relative;
  height: 100%;
}
.testimonial-card:hover {
  box-shadow: var(--diji-shadow-hover);
  transform: translateY(-3px);
}
.testimonial-stars {
  color: var(--diji-gold);
  font-size: 14px;
}
.testimonial-stars i {
  margin-right: 2px;
}
.testimonial-text {
  font-size: 15px;
  font-style: italic;
  color: var(--diji-text);
  line-height: 1.8;
  margin-bottom: 18px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--diji-dark);
  color: var(--diji-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--diji-dark);
}
.testimonial-role {
  font-size: 13px;
  color: var(--diji-text-light);
  margin: 0;
}
.carousel-indicators {
  position: relative;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
}
.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--diji-gold);
  background: transparent;
  opacity: 1;
  transition: var(--diji-transition);
  cursor: pointer;
  box-sizing: border-box;
}
.carousel-indicators button.active {
  background: var(--diji-gold);
  border-color: var(--diji-gold);
}

/* =============================================
   15. CTA / Newsletter
============================================= */
.cta-section {
  padding: 80px 0;
  background: var(--diji-dark);
  text-align: center;
}
.cta-title {
  font-family: var(--diji-font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--diji-white);
  margin-bottom: 15px;
}
.cta-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto 30px;
}
.cta-form {
  max-width: 480px;
  margin: 0 auto;
}
.cta-form .input-group {
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  border-radius: 4px;
  overflow: hidden;
}
.cta-form .form-control {
  border: none;
  padding: 14px 20px;
  font-size: 15px;
  background: var(--diji-white);
}
.cta-form .btn-gold {
  padding: 14px 25px;
  border-radius: 0;
}

/* =============================================
   16. Page Banner (breadcrumb area)
============================================= */
.page-breadcrumb {
  background: var(--diji-bg-light);
  border-bottom: 1px solid var(--diji-border);
  padding: 15px 0;
  margin-top: 0;
}
.breadcrumb-wrapper .breadcrumb {
  margin: 0;
  padding: 0;
  background: none;
  font-size: 14px;
}
.breadcrumb-item a {
  color: var(--diji-text-light);
}
.breadcrumb-item a:hover {
  color: var(--diji-gold);
}
.breadcrumb-item.active {
  color: var(--diji-gold);
}
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--diji-border);
}

.page-header-banner {
  background: var(--diji-dark-2);
  padding: 60px 0;
  text-align: center;
}
.page-header-banner h1 {
  color: var(--diji-white);
  font-size: 42px;
  margin-bottom: 10px;
}
.page-header-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
}

/* =============================================
   17. About Page
============================================= */
.about-hero {
  background: var(--diji-dark-2);
  padding: 100px 0 80px;
  text-align: center;
}
.about-hero-title {
  font-size: 48px;
  color: var(--diji-white);
  margin-bottom: 15px;
}
.about-hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
}

.about-page-intro {
  padding: 80px 0;
  background: var(--diji-white);
}
.about-page-image {
  position: relative;
  border-radius: var(--diji-radius);
  overflow: hidden;
}
.about-page-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--diji-radius);
}
.about-page-badge {
  position: absolute;
  bottom: 20px;
  right: -5px;
  background: var(--diji-gold);
  color: var(--diji-white);
  padding: 10px 22px;
  border-radius: 6px 0 0 6px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(191, 151, 40, 0.3);
}
.about-page-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}
.about-page-desc {
  font-size: 15px;
  color: var(--diji-text-light);
  line-height: 1.8;
  margin-bottom: 15px;
}

.mission-section {
  padding: 80px 0;
  background: var(--diji-white);
}
.mission-box {
  text-align: center;
  padding: 40px 30px;
  border-radius: var(--diji-radius);
  border: 1px solid var(--diji-border);
  transition: var(--diji-transition);
  height: 100%;
}
.mission-box:hover {
  box-shadow: var(--diji-shadow-hover);
  border-color: var(--diji-gold-light);
}
.mission-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(191, 151, 40, 0.08);
  border-radius: 50%;
  font-size: 28px;
  color: var(--diji-gold);
}
.mission-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
.mission-desc {
  font-size: 15px;
  color: var(--diji-text-light);
}

.values-section {
  padding: 80px 0;
  background: var(--diji-bg);
}
.value-item {
  text-align: center;
  padding: 30px 20px;
}
.value-number {
  font-family: var(--diji-font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--diji-gold);
  line-height: 1;
  margin-bottom: 10px;
}
.value-number span {
  font-size: 36px;
}
.value-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--diji-text);
}

.team-section {
  padding: 80px 0;
  background: var(--diji-white);
}
.team-card {
  text-align: center;
  margin-bottom: 30px;
}
.team-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid var(--diji-gold-light);
}
.team-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}
.team-role {
  font-size: 14px;
  color: var(--diji-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline-section {
  padding: 80px 0;
  background: var(--diji-bg);
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 50px;
  bottom: -40px;
  width: 1px;
  background: var(--diji-border);
}
.timeline-item:last-child::before {
  display: none;
}
.timeline-year {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--diji-gold);
  color: var(--diji-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
  margin-right: 30px;
  z-index: 1;
}
.timeline-content {
  background: var(--diji-white);
  padding: 20px 25px;
  border-radius: var(--diji-radius);
  box-shadow: var(--diji-shadow);
  flex: 1;
}
.timeline-content h4 {
  font-size: 18px;
  margin-bottom: 8px;
}
.timeline-content p {
  font-size: 14px;
  color: var(--diji-text-light);
  margin: 0;
}

/* =============================================
   18. News Page
============================================= */
.news-page-section {
  padding: 60px 0;
  background: var(--diji-bg);
}
.news-listing-item {
  display: flex;
  background: var(--diji-white);
  border-radius: var(--diji-radius);
  overflow: hidden;
  box-shadow: var(--diji-shadow);
  margin-bottom: 30px;
  transition: var(--diji-transition);
}
.news-listing-item:hover {
  box-shadow: var(--diji-shadow-hover);
}
.news-listing-thumb {
  width: 300px;
  flex-shrink: 0;
  min-height: 220px;
}
.news-listing-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-listing-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-listing-meta {
  font-size: 13px;
  color: var(--diji-text-light);
  margin-bottom: 8px;
}
.news-listing-meta span {
  margin-right: 15px;
}
.news-listing-meta i {
  color: var(--diji-gold);
  margin-right: 5px;
}
.news-listing-title {
  font-family: var(--diji-font-heading);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.news-listing-title a {
  color: var(--diji-dark);
}
.news-listing-title a:hover {
  color: var(--diji-gold);
}
.news-listing-excerpt {
  font-size: 15px;
  color: var(--diji-text-light);
  margin-bottom: 15px;
}

/* =============================================
   19. Contact Page
============================================= */
.contact-page-section {
  padding: 60px 0;
  background: var(--diji-white);
}
.contact-info-box {
  background: var(--diji-bg-light);
  padding: 25px;
  border-radius: var(--diji-radius);
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--diji-gold);
  color: var(--diji-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-text h5 {
  font-size: 16px;
  margin-bottom: 5px;
}
.contact-info-text p {
  font-size: 14px;
  color: var(--diji-text-light);
  margin: 0;
}

.contact-form-wrap {
  background: var(--diji-white);
  padding: 30px;
  border-radius: var(--diji-radius);
  box-shadow: var(--diji-shadow);
}
.contact-form-wrap .form-control {
  border: 1px solid var(--diji-border);
  padding: 12px 15px;
  border-radius: 4px;
  font-size: 15px;
  margin-bottom: 15px;
}
.contact-form-wrap .form-control:focus {
  border-color: var(--diji-gold);
  box-shadow: 0 0 0 3px rgba(191, 151, 40, 0.1);
}
.contact-form-wrap textarea.form-control {
  min-height: 150px;
}

.map-section {
  height: 400px;
}
.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =============================================
   20. Policy Page
============================================= */
.policy-page-section {
  padding: 60px 0;
  background: var(--diji-bg);
}
.policy-content-wrap {
  background: var(--diji-white);
  padding: 40px;
  border-radius: var(--diji-radius);
  box-shadow: var(--diji-shadow);
}
.policy-content-wrap h2 {
  font-size: 28px;
  margin: 30px 0 15px;
}
.policy-content-wrap h2:first-child {
  margin-top: 0;
}
.policy-content-wrap h3 {
  font-size: 22px;
  margin: 25px 0 12px;
}
.policy-content-wrap p {
  margin-bottom: 15px;
  line-height: 1.8;
}
.policy-content-wrap ul,
.policy-content-wrap ol {
  margin-bottom: 15px;
  padding-left: 20px;
}
.policy-content-wrap ul li,
.policy-content-wrap ol li {
  margin-bottom: 8px;
}

.toc-sidebar {
  background: var(--diji-white);
  padding: 25px;
  border-radius: var(--diji-radius);
  box-shadow: var(--diji-shadow);
  position: sticky;
  top: 100px;
}
.toc-sidebar h4 {
  font-size: 18px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--diji-gold);
}
.toc-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.toc-sidebar ul li {
  margin-bottom: 8px;
}
.toc-sidebar ul li a {
  color: var(--diji-text);
  font-size: 14px;
  display: block;
  padding: 6px 0;
  border-bottom: 1px solid var(--diji-bg-light);
}
.toc-sidebar ul li a:hover {
  color: var(--diji-gold);
  padding-left: 5px;
}
.toc-cta {
  background: var(--diji-dark);
  color: var(--diji-white);
  padding: 20px;
  border-radius: var(--diji-radius);
  text-align: center;
  margin-top: 20px;
}
.toc-cta h5 {
  color: var(--diji-white);
  font-size: 16px;
  margin-bottom: 10px;
}
.toc-cta a {
  color: var(--diji-gold-light);
  font-weight: 500;
}

/* =============================================
   21. Sidebar & Widgets
============================================= */
.sidebar {
  padding-left: 20px;
}
.widget {
  background: var(--diji-white);
  padding: 25px;
  border-radius: var(--diji-radius);
  box-shadow: var(--diji-shadow);
  margin-bottom: 30px;
}
.widget-title {
  font-family: var(--diji-font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--diji-gold);
  position: relative;
}
.widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget ul li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--diji-bg-light);
}
.widget ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.widget ul li a {
  color: var(--diji-text);
  font-size: 14px;
}
.widget ul li a:hover {
  color: var(--diji-gold);
}

/* =============================================
   22. Footer
============================================= */
.site-footer {
  background: var(--diji-dark);
}
.footer-main {
  padding: 70px 0 40px;
}
.footer-logo-text a {
  font-family: var(--diji-font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--diji-white) !important;
}
.footer-desc {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.8;
}
.footer-social .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin-right: 8px;
  transition: var(--diji-transition);
}
.footer-social .social-links a:hover {
  background: var(--diji-gold);
  color: var(--diji-white);
}

.footer-widget-title {
  color: var(--diji-white);
  font-family: var(--diji-font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--diji-gold);
}

.footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-menu li {
  margin-bottom: 10px;
}
.footer-menu li a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: var(--diji-transition);
}
.footer-menu li a:hover {
  color: var(--diji-gold);
  padding-left: 8px;
}

.footer-contact {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-contact li {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact li i {
  color: var(--diji-gold);
  font-size: 14px;
  margin-top: 4px;
  flex-shrink: 0;
}
.footer-contact li a {
  color: rgba(255,255,255,0.6);
}
.footer-contact li a:hover {
  color: var(--diji-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom .copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom .credits {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* =============================================
   23. Scroll To Top
============================================= */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--diji-gold);
  color: var(--diji-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--diji-transition);
  box-shadow: 0 4px 15px rgba(191, 151, 40, 0.3);
}
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}
.scroll-to-top:hover {
  background: var(--diji-gold-dark);
  color: var(--diji-white);
  transform: translateY(-3px);
}

/* =============================================
   24. Responsive
============================================= */
@media (max-width: 1199px) {
  .hero-title { font-size: 52px; }
}

@media (max-width: 991px) {
  .hero-section { height: auto; min-height: 550px; padding: 120px 0 80px; }
  .hero-title { font-size: 42px; }
  .hero-subtitle { font-size: 14px; }
  .main-navigation { top: 0; background: var(--diji-white); position: relative; }
  .main-navigation .navbar-brand { color: var(--diji-dark) !important; }
  .main-navigation .nav-link { color: var(--diji-dark) !important; }
  .navbar-collapse { background: var(--diji-white); margin: 0 -12px; padding: 12px; border-radius: 0 0 8px 8px; box-shadow: var(--diji-shadow); position: relative; z-index: 1050; }
  .navbar-toggler { z-index: 10; position: relative; }
  .dropdown-menu { display: block !important; position: static !important; border: none !important; box-shadow: none !important; background: transparent !important; padding: 0 0 0 16px !important; margin: 0 !important; }
  .dropdown-toggle::after { display: none; }
  .dropdown-item { padding: 8px 0; font-size: 13px; color: var(--diji-text-light); }
  .dropdown-item:hover { background: transparent; color: var(--diji-gold); }
  .news-listing-item { flex-direction: column; }
  .news-listing-thumb { width: 100%; height: 220px; }
  .sidebar { padding-left: 0; margin-top: 40px; }
  .policy-page-section .col-lg-4 { margin-top: 30px; }
  .timeline-item::before { left: 25px; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 32px; }
  .hero-desc { font-size: 15px; }
  .section-title { font-size: 28px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 200px; }
  .features-section,
  .categories-section,
  .featured-posts-section,
  .showcase-section,
  .blog-section,
  .step-guide-section,
  .featured-article-section,
  .quick-facts-section,
  .cta-section {
    padding: 50px 0;
  }
  .featured-article-image img {
    border-radius: var(--diji-radius) var(--diji-radius) 0 0;
    height: 250px;
  }
  .featured-article-content {
    padding: 25px;
  }
  .featured-article-title {
    font-size: 24px;
  }
  .about-hero-title { font-size: 32px; }
  .page-header-banner h1 { font-size: 30px; }
  .footer-main { padding: 50px 0 20px; }
  .btn-gold,
  .btn-outline-gold,
  .btn-outline-white {
    padding: 10px 20px;
    font-size: 13px;
    letter-spacing: 0.5px;
  }
}
