* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f7f7f7;
  color: #222;
  overflow-x: hidden;
}

/* HEADER */
.main-header {
  border-radius: 0 0 10px 10px;
  width: 100%;
  background: #ffffff;
  padding: 6px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1000;
}

.header-flex {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  height: 78px;
  display: grid;
  grid-template-columns: 260px 1fr 180px;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 78px;
  overflow: visible;
}

.logo a {
  display: inline-flex;
  align-items: center;
  height: 78px;
}

.logo img {
  height: 60px;
  
  width: auto;
  display: block;
  object-fit: contain;
  
  transform-origin: left center;
}

.navbar {
  display: flex;
  justify-content: center;
}

.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 42px;
}

.menu li {
  display: inline-block;
}

.menu a {
  text-decoration: none;
  color: #1f1f1f;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s ease;
}

.menu a:hover,
.menu a.active {
  color: red;
}

/* --- SUBMENU DROPDOWN STYLES --- */
.has-dropdown {
  position: relative;
}
.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
}
.has-dropdown > a i {
  font-size: 12px;
  transition: 0.3s;
}
.has-dropdown:hover > a i {
  transform: rotate(180deg);
}
.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px); /* Centers the wide menu */
  width: max-content; /* Adapts to horizontal width */
  background: #fff;
  list-style: none;
  padding: 24px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  
  /* Horizontal Grid Layout (4 columns) */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 25px;
}
.has-dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.submenu li {
  width: 100%;
}
.submenu a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  color: #444;
  font-weight: 500;
  transition: 0.3s;
  border-radius: 5px;
  white-space: nowrap; /* Keeps items strictly on one line */
}
.submenu a:hover {
  background: #fff3f3;
  color: red;
  padding-left: 18px; /* Subtle horizontal slide effect */
}

.header-btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.btn {
  display: inline-block;
  background: red;
  color: #fff;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  transition: 0.3s ease;
}

.btn:hover {
  background: #c40000;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #222;
}



/* BANNER */
.detail-banner {
  width: 100%;
  height: 920px;
  background: url("../images/aboutpagebanner.webp") center center/cover no-repeat;
}

/* TABLET */
@media (max-width: 991px) {
  .detail-banner {
    height: 300px;
    background-position: center center;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .detail-banner {
    height: 800px;
    background-position: center center;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .detail-banner {
    height: 660px;
    background-position: center center;
  }
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 40px;
}

.section-header span {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: red;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header h2 {
  font-size: 38px;
  line-height: 1.2;
  color: #111;
  margin: 0;
}

.section-header.center {
  text-align: center;
}

.story-section,
.timeline-section,
.leaders-section,
.values-section {
  width: 100%;
}

/* STORY */
.story-section {
  padding: 80px 0;
  background: #fff;
}

.story-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.story-image img {
  width: 100%;
  border-radius: 18px;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.story-content p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 18px;
  text-align: justify;
  font-size: 16px;
}

/* TIMELINE */
.timeline-section {
  padding: 80px 0;
  background: #f3f3f3;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: red;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-content {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.10);
}

.timeline-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #111;
}

.timeline-content p {
  color: #555;
  line-height: 1.8;
  font-size: 15px;
}

.timeline-step {
  position: absolute;
  top: 35px;
  width: 60px;
  height: 60px;
  background: red;
  color: #fff;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 6px 16px rgba(255, 0, 0, 0.25);
}

.timeline-item.left .timeline-step {
  right: -30px;
}

.timeline-item.right .timeline-step {
  left: -30px;
}

/* LEADERS */
.leaders-section {
  padding: 80px 0;
  background: #ffffff;
}

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.leader-card {
  background: #f9f9f9;
  border-radius: 18px;
  text-align: center;
  padding: 30px 22px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  border: 1px solid transparent;
  position: relative;
}

.leader-card:hover {
  transform: translateY(-6px);
  border-color: red;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

.leader-top {
  position: relative;
  margin-bottom: 18px;
}

.leader-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto;
  border-radius: 50%;
  background: #fff3f3;
  color: red;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: 0.3s;
}

.leader-card:hover .leader-icon {
  background: red;
  color: #fff;
}

.leader-card h3 {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.leader-role {
  color: red;
  font-weight: 700;
  margin-bottom: 14px;
}

.leader-line {
  display: block;
  width: 50px;
  height: 2px;
  background: red;
  margin: 0 auto 16px;
}

.leader-text {
  color: #555;
  line-height: 1.8;
  font-size: 15px;
}

/* VALUES */
.values-section {
  padding: 80px 0;
  background: #f3f3f3;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.value-card {
  background: #fff;
  border-radius: 18px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border-left: 5px solid red;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.10);
}

.value-icon {
  min-width: 68px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #fff3f3;
  color: red;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: 0.3s;
}

.value-card:hover .value-icon {
  background: red;
  color: #fff;
}

.value-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #111;
}

.value-content p {
  color: #555;
  line-height: 1.8;
  font-size: 15px;
  text-align: justify;
}

/* FOOTER */
.footer {
  background: #111;
  color: #fff;
  padding-top: 50px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 1fr 1.5fr;
  gap: 30px;
}
.footer-box p i {
  color: red;
  margin-right: 8px;
  width: 16px;
  text-align: center;
}

.footer-box:first-child {
  text-align: center;
}

.footer-logo {
    width: 200px;
    height: auto;
    max-width: 100%;
  
  display: block;
  margin: -30px auto -90px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.8;
  color: #ccc;
  text-align: justify;
  max-width: 350px;
  margin: 0 auto;
}

.footer-box h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 8px;
  word-break: break-word;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 16px;
  background: #222;
  padding: 10px;
  border-radius: 5px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: red;
}

.footer-bottom {
  text-align: center;
  padding: 15px 0;
  background: #000;
  margin-top: 30px;
}

.footer-bottom p {
  color: #aaa;
  font-size: 14px;
}

/* SYSTEM */
@media (min-width: 1400px) {
  .container,
  .footer-container {
    width: 92%;
    max-width: 1400px;
  }
.footer-box p i {
  color: red;
  margin-right: 8px;
  width: 16px;
  text-align: center;
}

  .story-layout {
    gap: 60px;
  }
}

/* LAPTOP */
@media (max-width: 1199px) {
  .header-flex {
    grid-template-columns: 180px 1fr 160px;
    gap: 15px;
  }

  .logo img {
    height: 55px;
  
    
  }

  .menu {
    gap: 18px;
  }

  .menu a {
    font-size: 16px;
  }

  .leaders-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
.footer-box p i {
  color: red;
  margin-right: 8px;
  width: 16px;
  text-align: center;
}
}

/* TABLET */
@media (max-width: 991px) {
  .header-flex {
    grid-template-columns: 1fr auto;
    height: 78px;
    gap: 12px;
  }

  .logo,
  .logo a {
    height: 78px;
  }

  .logo img {
    height: 52px;
  
    
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .header-btn {
    display: none;
  }

  .navbar {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    background: #fff;
    margin-top: 10px;
    border-top: 1px solid #eee;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  }

  .navbar.active {
    display: block;
  }

  .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 0;
  }

  .menu li {
    width: 100%;
  }

  .menu a {
    display: block;
    width: 100%;
    padding: 14px 12px;
    border-bottom: 1px solid #f0f0f0;
  }

  .detail-banner {
    height: 320px;
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: left;
    padding: 20px 20px 20px 80px;
  }

  .timeline-step {
    left: 0 !important;
    right: auto !important;
    width: 55px;
    height: 55px;
    font-size: 20px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
.footer-box p i {
  color: red;
  margin-right: 8px;
  width: 16px;
  text-align: center;
}
}

/* MOBILE */
@media (max-width: 767px) {
  .header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    padding: 0 15px;
  }

  .logo,
  .logo a {
    height: 72px;
  }

  .logo img {
    height: 46px;
    
  }

  .menu-toggle {
    display: block;
    font-size: 26px;
  }

  .header-btn {
    display: none;
  }

  .navbar {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  }

  .navbar.active {
    display: block;
  }

  .menu {
    flex-direction: column;
    gap: 0;
  }

  .menu li {
    width: 100%;
    text-align: center;
    padding: 14px 10px;
    border-bottom: 1px solid #eee;
  }

  .menu a {
    padding: 0;
    border: none;
  }

  .detail-banner {
    height: 220px;
  }

  .section-header {
    margin-bottom: 28px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .section-header span {
    font-size: 14px;
  }

  .story-section,
  .timeline-section,
  .leaders-section,
  .values-section {
    padding: 45px 0;
  }

  .story-content p,
  .timeline-content p,
  .leader-text,
  .value-content p {
    font-size: 14px;
  }

  .timeline-item {
    padding: 15px 15px 15px 75px;
  }

  .timeline-content {
    padding: 20px;
  }

  .timeline-content h3 {
    font-size: 18px;
  }

  .timeline-step {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .leaders-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .leader-card,
  .value-card {
    padding: 24px 18px;
  }

  .leader-card h3,
  .value-content h3 {
    font-size: 18px;
  }

  .value-card {
    gap: 14px;
  }

  .value-icon {
    min-width: 58px;
    width: 58px;
    height: 58px;
    font-size: 22px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
.footer-box p i {
  color: red;
  margin-right: 8px;
  width: 16px;
  text-align: center;
}

  .footer-logo {
    margin: -30px auto -90px;
  }

  .footer-text {
    max-width: 100%;
    text-align: center;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .logo img {
    height: 42px;
  
    
  }

  .detail-banner {
    height: 180px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .story-content p,
  .timeline-content p,
  .leader-text,
  .value-content p,
  .footer-box p {
    font-size: 13px;
  }

  .leader-icon {
    width: 66px;
    height: 66px;
    font-size: 26px;
  }
}


/* FINAL BANNER FIX */
.detail-banner {
  width: 100%;
  height: 920px !important;
  background: url("../images/aboutpagebanner.webp") center center/cover no-repeat;
}

@media (max-width: 991px) {
  .detail-banner {
    height: 420px !important;
    background-position: center center !important;
  }
}

@media (max-width: 767px) {
  .detail-banner {
    height: 320px !important;
    background-position: center center !important;
  }
}

@media (max-width: 480px) {
  .detail-banner {
    height: 260px !important;
    background-position: center center !important;
  }
}/* ABOUT CLEAN SECTION FROM HOMEPAGE */
.about-clean-section {
  padding: 80px 0;
  background: #f8f8f8;
}
.about-clean-container {
  width: 96%;
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}
.about-clean-image {
  height: 100%;
}
.about-clean-image img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: block;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}
.about-clean-tag {
  display: inline-block;
  color: red;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.about-clean-content h2 {
  font-size: 42px;
  margin-bottom: 10px;
  color: #111;
}
.about-clean-content h2 span {
  color: red;
}
.about-clean-content h4 {
  font-size: 20px;
  color: #666;
  margin-bottom: 20px;
  font-weight: 600;
}
.about-clean-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 18px;
  text-align: justify;
}
.about-clean-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.about-clean-stat {
  background: #fff;
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
.about-clean-stat:hover {
  transform: translateY(-5px);
}
.about-clean-stat h3 {
  font-size: 34px;
  color: red;
  margin-bottom: 8px;
}
.about-clean-stat p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  text-align: center;
}
@media (max-width: 991px) {
  .about-clean-container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .about-clean-stats {
    grid-template-columns: 1fr;
  }
}
/* QVP TIMELINE SECTION FROM HOMEPAGE */
.qvp-timeline-section {
  width: 100%;
  padding: 80px 0;
  background: #f7f7f7;
}
.qvp-timeline-container {
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
}
.qvp-timeline-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 55px;
}
.qvp-timeline-heading span {
  display: inline-block;
  color: red;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.qvp-timeline-heading h2 {
  font-size: 32px;
  color: #111;
  margin-bottom: 14px;
}
.qvp-timeline-heading p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}
.qvp-timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.qvp-timeline-card {
  position: relative;
  border-radius: 18px;
  padding: 40px 24px;
  min-height: 420px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.qvp-timeline-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.qvp-timeline-card h3,
.qvp-timeline-card p {
  position: relative;
  z-index: 2;
}
.qvp-timeline-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #fff;
}
.qvp-timeline-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #f2f2f2;
  text-align: justify;
}
.qvp-timeline-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}
@media (max-width: 991px) {
  .qvp-timeline-grid {
    grid-template-columns: 1fr;
  }
}








.footer-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-link:hover {
  color: red;
}

.footer-websites {
  margin-bottom: 12px;
  font-size: 15px;
  color: #ccc;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 15px;
}
@media (max-width: 767px) {
  .footer-websites {
    flex-direction: column;
    gap: 8px;
  }
  .footer-websites .sep {
    display: none;
  }
}

@media (max-width: 991px) {
  .submenu {
    position: static;
    transform: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    width: 100%;
    padding-left: 15px;
    margin-top: 10px;
    display: block;
    background: #f9f9f9;
    border-radius: 8px;
  }
  .has-dropdown:hover .submenu {
    transform: none;
  }
  .submenu a {
    padding: 10px 12px;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
  }
  .submenu a:last-child {
    border-bottom: none;
  }
}




@media (max-width: 991px) {
  .detail-banner {
    min-height: 250px !important;
    height: auto !important;
    background-size: cover !important;
    background-position: center !important;
  }
}









@media (max-width: 991px) {
  .header-flex {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
  }
}



@media (max-width: 991px) {
  .main-header { position: relative; }
  .navbar {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    margin-top: 0 !important;
  }
}



@media (max-width: 991px) {
  .logo img {
    transform: scale(2.5) !important;
    transform-origin: left center !important;
  }
}


@media (min-width: 992px) {
  .logo img {
    transform: scale(3.5) !important;
    transform-origin: left center !important;
  }
}





/* QUICK LINKS */
.quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.quick-links li {
  margin-bottom: 10px;
}
.quick-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.quick-links a:hover {
  color: #ff3c00;
}






