/********** Template CSS **********/
:root {
  --primary: #F4C542;
  --secondary: #FDBE33;
  --light: #F4F6F8;
  --dark: #040F28;
}

a {
  color: #F4C542;
}

.pt-6 {
  padding-top: 90px;
}

.pb-6 {
  padding-bottom: 90px;
}

.py-6 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.btn {
  position: relative;
  font-weight: 600;
  text-transform: uppercase;
  transition: .5s;
}

.btn::after {
  background: var(--primary);
  transition: .5s;
}

.btn.btn-primary::after {
  background: var(--dark);
}

.btn-primary {
  color: #FFFFFF;
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 28px;
  height: 28px;
}

.btn-lg-square {
  width: 46px;
  height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.back-to-top {
  position: fixed;
  display: none;
  left: 50%;
  bottom: 0;
  margin-left: -22px;
  border-radius: 0;
  z-index: 99;
}

.bg-dark-radial {
  background-image: -webkit-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
  background-image: -moz-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
  background-image: -ms-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
  background-image: -o-repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
  background-image: repeating-radial-gradient(center center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 100%);
  background-size: 3px 3px;
}

.bg-light-radial {
  background-image: -webkit-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
  background-image: -moz-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
  background-image: -ms-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
  background-image: -o-repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
  background-image: repeating-radial-gradient(center center, rgba(256, 256, 256, 0.2), rgba(256, 256, 256, 0.2) 1px, transparent 1px, transparent 100%);
  background-size: 3px 3px;
}

.navbar-dark .navbar-nav .nav-link {
  position: relative;
  padding: 28px 15px;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--light);
  outline: none;
  transition: .5s;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }
}



.page-header {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            140deg,
           rgba(30, 41, 59, 0.85) 0%,
rgba(30, 41, 59, 0.75) 50%,
rgba(30, 41, 59, 0.65) 100%
        ),
        url("../images/office-hero-banner.jpg") center center no-repeat;

    background-size: cover;
    background-position: center;
    margin-top: 75px;
}

.service-icon {
  width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    border: 1px solid #C9A24A;

    background: linear-gradient(
        145deg,
        #020B08 0%,
        #0B4530 45%,
        #06291D 100%
    );

    margin: 20px 0;
}

.service-icon i {
  transition: .2s;
  color: #C9A24A !important;
  font-size: 28px;
}

.service-item:hover .service-icon i {
  font-size: 32px;
}

.portfolio-item {
  margin-bottom: 60px;
}

.portfolio-title {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 120px;
  padding: 0 30px;
  right: 30px;
  left: 30px;
  bottom: -60px;
  background: #FFFFFF;
  z-index: 3;
}

.portfolio-btn {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  margin-top: -60px;
  margin-left: -60px;
  font-size: 120px;
  line-height: 0;
  transition: .1s;
  transition-delay: .3s;
  z-index: 2;
  opacity: 0;
}

.portfolio-item:hover .portfolio-btn {
  opacity: 1;
}


@media (min-width: 992px) {

  .contact-form {
    margin-left: -90px;
  }
}


.footer-shape::before {
  position: absolute;
  content: "";
  width: 80px;
  height: 100%;
  top: 0;
  left: -40px;
  background: var(--primary);
  transform: skew(40deg);
}

.topbar {
  color: #040F28;
}

.topbar i {
  color: #F4C542;
  font-size: 18px;
  font-weight: bold;
}

.navbar-brand h1 i {
  display: inline-block;
}

.navbar-brand h1 .logoTxt {
  display: inline-block;
  font-size: 30px;
}

.navbar-brand .logoTxt span {
  display: block;
  font-size: 19px;
  color: #F4C542;
}

.herobanner {
  width: 100%;
  margin-top: 68px;
  /* backdrop-filter: blur(6px); */
  /* -webkit-backdrop-filter: blur(6px); */
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  /* padding: 16px 16px 20px; */
  transition: all 0.3s;
}

.herobanner img {
  height: calc(100vh - 68px);
  width: 100%;
}

.sec-features {
  background: #061B3A;
  overflow: hidden;
  padding: 4rem 0;
}


.sec-features .feature h3,
.sec-features .feature .h3 {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

.sec-features .feature p {
  color: rgba(255, 255, 255, 0.7);
}

.sec-features .feature p:last-child {
  margin-bottom: 0;
}

.sec-features .feature {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-item {
  border: 1px solid #F4C542;
  border-radius: 16px;
}
.contact-info{
      background-color: #061B3A;
    padding: 20px;
    border-radius: 12px;
    color: #fff;
}
.contact-info >div{
  display: flex;
}
.contact-info .service-icon{
  margin: 0 15px 0 0;
}
.contact-info h4,
.contact-info .h4 {
  font-size: 18px;
  color: #fff;
}
.contactForm{
  border-radius: 12px;
}
.contact-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.testimonial {
  text-align: center;
}

.testimonial img {
  max-width: 100px;
  text-align: center;
  display: inline !important;
  margin-bottom: 20px;
  border-radius: 100px;
  border: 1px solid #040F28;
}

.testimonial-carousel .row {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lb-nav a.lb-prev {
  background: url(../images/prev.png) left 48% no-repeat;
}

.lb-nav a.lb-next {
  background: url(../images/next.png) right 48% no-repeat;
}

.lb-cancel {
  background: url(../images/loading.gif) no-repeat;
}

.lb-data .lb-close {
  background: url(../images/close.png) top right no-repeat;
}

.portfolio-box img {

  max-height: 300px;
  width: 100%;
  border-radius: 5px;
}

.whatsapp-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 4px 10px;
  background: rgb(255, 255, 255);
  border-radius: 50%;
  transition: transform 0.3s;
  font-size: 32px;
  color: #040F28;
}
.whatsapp-floating:hover{
  color: #F4C542;
}

@media (max-width: 767px) {
  .px-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .g-5 {
    --bs-gutter-x: 0;
  }

}

.portfolio-btn i {
  font-size: 32px;
}

/* .navbar-brand i{
    font-size: 36px;
} */
.hero-banner {
  width: 100%;
  min-height: 100svh;
  background-image: url('../images/powertech.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  margin-top: 96px;
}

@media (max-width:768px) {
  .hero-banner {
    background-image: url('../images/powertech-mob.jpg');
  }
}

.why-us-sec {
  /* background: #F4F6F8; */
  overflow: hidden;
  padding: 4rem 0;
}


.why-us-sec .feature h3,
.why-us-sec .feature .h3 {
  font-size: 18px;
  font-weight: 400;
  color: #040F28;
}

.why-us-sec .feature p {
  color: rgba(255, 255, 255, 0.7);
}

.why-us-sec .feature p:last-child {
  margin-bottom: 0;
}

.why-us-sec .feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.leadership img {
  border-radius: 6px;
}

.best-used-for {
  background: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.best-used-for h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.best-used-for .subtitle {
  color: #666;
  margin-bottom: 40px;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.use-item {
  border: 1px solid #f2f2f2;
  border-radius: 12px;
  padding: 30px 20px;
  transition: all 0.3s ease;
}

.use-item i {
  font-size: 36px;
  color: #0F6B4F;
}

.use-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.use-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.img-box {
  width: 100%;
  max-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: #f7f7f7;
  position: relative;
}

.img-box img {
  max-width: 100%;
  max-height: 100%;
}

.navbar-dark .navbar-brand {
  position: relative;
  background-color: #fff;
  font-size: 1.25rem;
  white-space: nowrap;
  width: 300px;
  padding: 0 0 2px 10px;
}

.navbar-dark .navbar-brand::before {
  content: "";
  position: absolute;
  left: calc(100% - 27px);
  display: block;
  width: 52px;
  height: 100%;
  background: #fff;
  -webkit-transform: skew(-27deg);
  transform: skew(-27deg);
  top:0;
}

.navbar-dark .navbar-brand img {
  width: 260px;
}

:root {
  --ppg-primary: #061B3A;
  --ppg-accent: #061B3A;
  --ppg-light: #F0F0F0;
}
/* 
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: #fcfcfc;
  color: #1a2634;
} */
.bg-light{
  background-color: var(--ppg-light) !important;
}
.bg-ppg-dark {
  background-color: var(--ppg-primary);
}

.bg-ppg-accent {
  background-color: var(--ppg-accent);
}

.text-ppg-accent {
  color: var(--ppg-accent);
}

.border-ppg-accent {
  border-color: var(--ppg-accent);
}

.btn-ppg {
  background-color: var(--ppg-accent);
  color: #fff;
  border: none;
  transition: all 0.2s ease;
}

.btn-ppg:hover {
  background-color: #14606e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 123, 138, 0.3);
}

.btn-outline-ppg {
  border: 2px solid var(--ppg-accent);
  color: var(--ppg-accent);
  background: transparent;
  transition: 0.2s;
}

.btn-outline-ppg:hover {
  background: var(--ppg-accent);
  color: #fff;
}

/* hero with overlay */
.hero-ppg {
  background: linear-gradient(135deg, #0a2e4b 0%, #1a4b5e 100%);
  color: white;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-ppg::after {
  content: '';
  position: absolute;
  right: -10%;
  top: -30%;
  width: 500px;
  height: 500px;
  background: rgba(30, 123, 138, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.hero-ppg h1 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-ppg .lead {
  font-weight: 300;
  max-width: 700px;
}

.section-title {
  font-weight: 600;
  letter-spacing: -0.01em;
  border-left: 5px solid var(--ppg-accent);
  padding-left: 1rem;
}

.card-value {
  border: none;
  background: white;
  border-radius: 20px;
  transition: 0.25s ease;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.card-value:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(10, 46, 75, 0.08);
}

.card-value .card-body {
  padding: 2rem 1.5rem;
}

.icon-lg {
  font-size: 2.8rem;
  color: #0B4530;
}

.bg-soft-accent {
  background-color: var(--ppg-light);
}

.footer-ppg {
  background: #0a1f2e;
  color: #d1dbe3;
}

.footer-ppg a {
  color: #b3d1db;
  text-decoration: none;
}

.footer-ppg a:hover {
  color: white;
  text-decoration: underline;
}

/* responsive tweaks */
@media (max-width: 768px) {
  .hero-ppg {
    padding: 3rem 0 2.5rem;
    text-align: center;
  }

  .hero-ppg .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .section-title {
    border-left: none;
    padding-left: 0;
    text-align: center;
  }

  .herobanner img {
    height: calc(70vh - 75px);
  }

  .navbar {
    padding: 0;
  }
}

.sec-cta {
  background-size: cover;
  background-position: 100% center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 5rem 0;
}

.sec-cta.overlay {
  position: relative;
}

.sec-cta.overlay::before {
    background: linear-gradient(
        140deg, rgb(4, 15, 40) 0%, rgb(10, 27, 61) 50%, rgb(16, 42, 92) 100%);
    opacity: 0.92;
    overflow: hidden;
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.sec-cta>.container {
  position: relative;
  z-index: 2;
}

.sec-cta .heading {
  color: #fff;
}

.sec-cta p {
  color: #fff;
}

.bg-primary {
  background-color: #C9A24A!important;
}

.text-primary {
  color: #C9A24A!important;
}

.btn-primary {
  background-color: #C9A24A!important;
  border-color: #C9A24A!important;
}

.border-primary {
  border-color: #C9A24A!important;
}

.carousel-caption-creative {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
  text-align: center;
  background: radial-gradient(circle at 20% 30%, rgba(0, 20, 40, 0.3), rgba(0, 0, 0, 0.7) 80%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  pointer-events: none;
}

.carousel-caption-creative * {
  pointer-events: auto;
}

.caption-card {
    background: rgba(30, 41, 59, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    padding: 1.5rem;
    max-width: 820px;
    width: fit-content;

    box-shadow:
        0 30px 50px -20px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(212, 175, 55, 0.18) inset;

    transition: 0.4s;
    transform: translateY(0px);
}

.caption-card:hover {
    background: rgba(30, 41, 59, 0.82);
    border-color: rgba(212, 175, 55, 0.35);

    box-shadow:
        0 40px 60px -18px rgba(0, 0, 0, 0.75),
        0 0 0 1px rgba(212, 175, 55, 0.22) inset;

    transform: translateY(-3px);
}

.caption-card h1 {
  font-weight: 800;
  font-size: calc(1.5rem + 0.8vw);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #f5e7c8 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
  margin-bottom: 0.5rem;
}

.caption-card h1 span {
  color: #f5c542;
}

.caption-card .lead-text {
  font-size: calc(.75rem + 0.35vw);
  font-weight: 400;
  color: rgba(255, 255, 240, 0.85);
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-creative {
  background: linear-gradient(145deg, #f5c542, #e6a82b);
  border: none;
  padding: 0.8rem 2.8rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  color: #0b0f15;
  box-shadow: 0 12px 28px -8px #e6a82b55, 0 0 0 1px #ffdd77 inset;
  transition: 0.25s;
  text-transform: uppercase;
  margin-top: 0.8rem;
  pointer-events: auto;
  text-decoration: none;
  display: inline-block;
}

.btn-creative:hover {
  background: linear-gradient(145deg, #ffd966, #f0b832);
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 20px 36px -8px #f0b83299, 0 0 0 1px #ffea99 inset;
  color: #05080c;
}

.brand-float {
  position: absolute;
  top: 20px;
  left: 28px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  padding: 8px 18px 8px 14px;
  border-radius: 80px;
  border: 1px solid rgba(255, 215, 100, 0.08);
  pointer-events: none;
}

.brand-float i {
  font-size: 1.6rem;
  color: #f5c542;
  filter: drop-shadow(0 0 6px #f5c54244);
}

.brand-float span {
  font-weight: 700;
  font-size: 2rem;
  /* letter-spacing: 0.3px; */
  color: #ffffffdd;
  text-shadow: 0 1px 10px #00000066;
}

.brand-float small {
  font-weight: 300;
  font-size: 0.7rem;
  color: #aaa;
  letter-spacing: 1px;
  margin-left: 4px;
}

/* responsive */
@media (max-width: 768px) {
  .caption-card {
    padding: 1.5rem 1.2rem;
    border-radius: 40px;
    max-width: 90%;
  }

  .caption-card h1 {
    font-size: calc(1.5rem + 0.4vw);
  }

  .carousel-item img {
    height: 460px;
  }

  .carousel-indicators-creative {
    bottom: 16px;
    padding: 8px 16px;
    gap: 10px;
  }

  .carousel-control-prev-creative,
  .carousel-control-next-creative {
    width: 42px;
    height: 42px;
    margin: 0 4px;
  }

  .brand-float {
    top: 14px;
    left: 16px;
    padding: 4px 14px 4px 10px;
  }

  .brand-float span {
    font-size: 1.5rem;
  }
  .page-header{
    margin-top: 68px;
  }
  .page-header h1.display-3{
    font-size: calc(1rem + 3.3vw);
  }
  .navbar-dark .navbar-brand{
    width: 255px;
  }
  .navbar-dark .navbar-brand img {
    width: 215px;
}
}

@media (max-width: 480px) {
  .carousel-item img {
    height: 380px;
  }

  .caption-card .lead-text {
    font-size: 0.9rem;
  }

  .btn-creative {
    padding: 0.5rem 1.8rem;
    font-size: 0.9rem;
  }
}

.bg-dark {
  background-color: #061B3A !important;
}
.footer h4{
  color: #C9A24A!important;
}
.topnav{
  color: #061B3A;
}
.text-right{
  text-align: right;
}
/* ===== MAIN CLASS – sab kuch isi ke andar ===== */
        .director-section {
            font-family: 'Inter', sans-serif;
            max-width: 1100px;
            margin: 3rem auto;
            padding: 0 1.5rem;
        }

        .director-section .director-card {
            background: #ffffff;
            border-radius: 2rem;
            padding: 3.5rem 4rem;
            box-shadow: 0 8px 32px rgba(0, 20, 40, 0.06);
            border: 1px solid #eaf0f6;
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 3rem;
            align-items: start;
            transition: box-shadow 0.25s ease;
        }

        .director-section .director-card:hover {
            box-shadow: 0 16px 48px rgba(0, 20, 40, 0.08);
        }

        /* ---- left: director photo + name ---- */
        .director-section .director-left {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .director-section .director-avatar {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: linear-gradient(145deg, #0b2a44, #1a4f74);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            color: rgba(255, 255, 255, 0.15);
            border: 4px solid #eaf0f6;
            box-shadow: 0 8px 24px rgba(0, 20, 40, 0.08);
            margin-bottom: 1.2rem;
            position: relative;
        }

        .director-section .director-avatar .avatar-icon {
            font-size: 5.5rem;
            color: rgba(255, 255, 255, 0.25);
        }

        .director-section .director-avatar .badge-dir {
            position: absolute;
            bottom: 0.5rem;
            right: 0.5rem;
            background: #f5c542;
            color: #0b2a44;
            font-size: 0.6rem;
            font-weight: 700;
            padding: 0.2rem 1rem;
            border-radius: 40px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .director-section .director-name {
            font-size: 1.8rem;
            font-weight: 700;
            color: #0b263b;
            letter-spacing: -0.01em;
            margin-bottom: 0.15rem;
        }

        .director-section .director-title {
            font-size: 0.9rem;
            font-weight: 500;
            color: #1a6b9e;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            margin-bottom: 0.3rem;
        }

        .director-section .director-lei {
            font-size: 0.7rem;
            color: #6a8aa8;
            background: #f0f6fc;
            padding: 0.2rem 1.2rem;
            border-radius: 40px;
            display: inline-block;
            margin-top: 0.2rem;
        }

        /* ---- right: message ---- */
        .director-section .director-message {
            padding-top: 0.3rem;
        }

        .director-section .message-headline {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            margin-bottom: 1.2rem;
        }

        .director-section .message-headline span {
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: #1a6b9e;
            background: #e6f0fa;
            padding: 0.2rem 1.2rem;
            border-radius: 40px;
        }

        .director-section .message-headline i {
            color: #f5c542;
            font-size: 1.2rem;
        }

        .director-section .message-text {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #1e3a54;
        }

        .director-section .message-text strong {
            color: #0b2a44;
            font-weight: 600;
        }

        .director-section .message-text .highlight {
            color: #1a6b9e;
            font-weight: 500;
        }

        .director-section .message-text p {
            margin-bottom: 1.2rem;
        }

        .director-section .message-text p:last-child {
            margin-bottom: 0;
        }

        .director-section .signature {
            margin-top: 1.8rem;
            border-top: 2px solid #eaf0f6;
            padding-top: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.8rem;
        }

        .director-section .signature .sig-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: #0b263b;
            letter-spacing: -0.01em;
        }

        .director-section .signature .sig-name small {
            font-weight: 400;
            font-size: 0.8rem;
            color: #4f7393;
            margin-left: 0.6rem;
        }

        .director-section .signature .sig-line {
            font-size: 0.75rem;
            color: #6a8aa8;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .director-section .signature .sig-line i {
            color: #f5c542;
        }

        /* ---- responsive ---- */
        @media (max-width: 820px) {
            .director-section .director-card {
                grid-template-columns: 1fr;
                padding: 2.5rem 2rem;
                gap: 1.5rem;
                text-align: center;
            }

            .director-section .director-left {
                flex-direction: column;
                align-items: center;
            }

            .director-section .director-avatar {
                width: 160px;
                height: 160px;
                font-size: 4rem;
            }

            .director-section .director-avatar .avatar-icon {
                font-size: 4.5rem;
            }

            .director-section .message-headline {
                justify-content: center;
            }

            .director-section .signature {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .director-section .director-card {
                padding: 2rem 1.2rem;
                border-radius: 1.5rem;
            }

            .director-section .director-name {
                font-size: 1.5rem;
            }

            .director-section .message-text {
                font-size: 0.95rem;
            }

            .director-section .director-avatar {
                width: 130px;
                height: 130px;
            }

            .director-section .director-avatar .avatar-icon {
                font-size: 3.5rem;
            }
        }



