﻿.breadcrumb-banner {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background: url('../../img/bread_1.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
   margin-top: 100px;
    justify-content: center;
}

.breadcrumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45); /* Dark overlay for contrast */
}

.breadcrumb-container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.breadcrumb-nav {
  margin-bottom: 10px;
}

.breadcrumb-list {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #e8e8e8;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.breadcrumb-list li a {
  text-decoration: none;
  color: #fff;
  transition: opacity 0.2s ease;
}

.breadcrumb-list li a:hover {
  opacity: 0.85;
}

.breadcrumb-list .separator {
  margin: 0 8px;
  color: #ccc;
}

.breadcrumb-list .active {
  color: #fffbf1;
  font-weight: 600;
}

.breadcrumb-title {
  font-size: 34px;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

/* Responsive */
@media (max-width: 576px) {
  .breadcrumb-banner {
    padding: 60px 0;
  }
  .breadcrumb-title {
    font-size: 24px;
  }
  .breadcrumb-list {
    font-size: 12px;
  }
}



/*Vission*/ 

.vision-mission-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f7fbf5, #e7f3e9);
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1d3b25;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 15px;
    color: #4e6a55;
}

.vm-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 14px;
    padding: 28px;
    text-align: center;
    transition: all .35s ease;
    cursor: default;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

.vm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.vm-icon {
    font-size: 42px;
    margin-bottom: 12px;
}

.vm-title {
    font-size: 20px;
    font-weight: 700;
    color: #1d3b25;
    margin-bottom: 10px;
}

.vm-text {
    font-size: 15px;
    color: #405947;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 576px) {
    .section-title {
        font-size: 26px;
    }
    .vm-card {
        padding: 22px;
    }
}


/*Download*/


.cta-download-section {
  background: linear-gradient(100deg, #219653, #56CCF2);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  gap: 20px;
}

.cta-content h2 {
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 8px;
}

.cta-content p {
  color: #e8f9f0;
  font-size: 15px;
  margin: 0;
}

.cta-download-btn {
  display: inline-block;
  background: #fff;
  color: #1B7051;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 30px;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.cta-download-btn:hover {
  background: #F2F2F2;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-wrapper {
    text-align: center;
    flex-direction: column;
  }
  .cta-content h2 {
    font-size: 24px;
  }
}


/*Gallery*/  


.gallery-section {
  padding: 80px 0;
  background: #f7fbf8;
}

.gallery-header {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-header h2 {
  font-size: 30px;
  font-weight: 700;
  color: #1d3b25;
}

.gallery-header p {
  font-size: 15px;
  color: #435c49;
  margin-top: 8px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease, filter .4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.85);
}



/*Documnet Section*/

.legal-doc-section {
  padding: 80px 0;
  background: #f9fafb;
}

.legal-header {
  text-align: center;
  margin-bottom: 40px;
}

.legal-header h2 {
  font-size: 30px;
  font-weight: 700;
  color: #0c3d2a;
}

.legal-header p {
  color: #4f6459;
  font-size: 15px;
  margin-top: 8px;
}

.legal-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.legal-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  border: 1px solid #e4e7ea;
  cursor: pointer;
  transition: all 0.3s ease;
}

.legal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
  border-color: #b5d7c2;
}

.legal-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.legal-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1c3d2b;
  margin-bottom: 4px;
}

.legal-card p {
  font-size: 13px;
  color: #667b6b;
}
.doc-viewer {
  width: 90%;
  height: 90%;
  border-radius: 8px;
  background: #fff;
  border: none;
}
.pdf-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 40px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.85);
}

.pdf-modal-content {
  margin: auto;
  background: transparent;
  border-radius: 10px;
  width: 90%;
  max-width: 1100px;
  height: 90vh;
  position: relative;
}

.pdf-frame {
  width: 100%;
  height: 100%;
  border: none;
  background: #fff;
  border-radius: 8px;
}

.pdf-modal-close {
  position: absolute;
  top: -10px;
  right: 8px;
  color: #fff;
  font-size: 42px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
}

/* Mobile Fix */
@media(max-width: 600px) {
  .pdf-modal-content {
    width: 96%;
    height: 85vh;
  }
  .pdf-modal-close {
    font-size: 34px;
    right: 0px;
  }
}
