/* =================================== */
/* ==   สไตล์สำหรับหน้าเกี่ยวกับเรา   == */
/* ==   (ธีม: น้ำเงิน-ขาว-ดำ, ส้มรอง) == */
/* =================================== */

/* กำหนดตัวแปรสีหลัก */
:root {
    --primary-blue: #1a2c3f; /* น้ำเงินเข้มหลัก */
    --accent-orange: #f37021; /* ส้มเป็นสีรอง */
    --accent-blue-light: #3498db; /* สีฟ้าสว่าง (สำหรับการ์ดที่ 3) */
    --text-dark: #333;
    --text-light: #f0f0f0;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --bg-soft-blue: #f4f8fc; /* ฟ้าอ่อนสำหรับพื้นหลังรอง */
}

.about-page-wrapper {
    width: 100%;
    overflow-x: hidden;
    background-color: var(--bg-light); 
}

/* --------------------------------
  สไตล์กลาง (Global for About Page)
-------------------------------- */
.about-page-wrapper section {
    padding: 80px 0; 
    position: relative;
    overflow: hidden; 
}
.about-page-wrapper section.section-whitebg {
    background-color: var(--bg-white); 
}
.about-page-wrapper section.section-darkblue {
    background-color: var(--primary-blue);
    color: var(--text-light);
}

.about-page-wrapper .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative; 
    z-index: 2;
}

/* หัวข้อ H2 (ธีมสี น้ำเงินหลัก, ส้มรอง) */
.about-page-wrapper h2 {
    font-size: 2.5rem; 
    font-weight: 700;
    color: var(--primary-blue); /* ใช้สีน้ำเงินเข้มหลัก */
    text-align: center;
    margin-bottom: 50px; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase; 
    letter-spacing: 1px;
}
.about-page-wrapper h2 i {
    font-size: 2.2rem;
    margin-right: 15px;
    color: var(--accent-orange); /* ไอคอนเป็นสีส้มเพื่อเน้น */
}
.about-page-wrapper section.section-darkblue h2 {
    color: var(--text-light); 
}

/* --------------------------------
  ส่วนที่ 1: HERO SECTION
-------------------------------- */
.about-hero {
    padding: 150px 0; 
    min-height: 85vh; 
    color: var(--text-light);
    position: relative;
    display: flex;
    align-items: center; 
    text-align: center;
}
.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://img2.pic.in.th/pic/516625988_10163249874488665_6404030589629551642_n.jpg'); 
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed; 
    background-color: rgba(0, 0, 0, 0.555); 
    background-blend-mode: multiply;
    z-index: 1;
}
.about-hero h1 {
    font-size: 4.2rem; 
    font-weight: 700;
    color: var(--text-light);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    margin-bottom: 50px; 
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInSlideUp 0.8s ease-out 0.2s forwards;
    position: relative; 
    z-index: 2;
}
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px; 
    max-width: 1200px; 
    margin: 0 auto;
    text-align: center; 
    position: relative; 
    z-index: 2;
}
.vm-box {
    background: rgba(255, 255, 255, 0.08); 
    backdrop-filter: blur(5px); 
    border-radius: 12px;
    padding: 40px; 
    border: 1px solid rgba(255, 255, 255, 0.2); 
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3); 
    opacity: 0;
    transform: scale(0.9); 
    animation: zoomInFadeIn 0.8s ease-out forwards;
}
.vm-box:nth-child(1) { animation-delay: 0.8s; }
.vm-box:nth-child(2) { animation-delay: 1.1s; }

.vm-box h3 {
    font-size: 2.5rem; 
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light); 
    display: flex;
    align-items: center;
    justify-content: center; 
    text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
}
.vm-box h3 i {
    font-size: 2.2rem; 
    margin-right: 15px;
    color: var(--accent-orange); 
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}
.vm-box p {
    font-size: 1.55rem; 
    line-height: 1.8;
    color: var(--text-light); 
    margin: 0;
    font-weight: 400; 
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7); 
}

/* --------------------------------
  ส่วนที่ 2: OUR STORY (ประวัติบริษัท)
-------------------------------- */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}
.story-text-content {
    font-size: 1.1rem; 
    line-height: 1.8;
    color: var(--text-dark); 
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInSlideLeft 1s ease-out 0.3s forwards;
}
.story-text-content p {
    margin-bottom: 20px;
}
.story-callout {
    background-color: var(--bg-soft-blue); 
    border-left: 5px solid var(--accent-orange); 
    padding: 25px;
    margin-top: 25px;
    border-radius: 0 8px 8px 0;
    font-size: 1.5rem;
    color: var(--text-dark);
}
.story-image-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    grid-template-rows: auto auto; 
    gap: 15px;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInSlideRight 1s ease-out 0.3s forwards;
}
.gallery-item {
    width: 100%;
    height: 200px; 
    border-radius: 8px;
    overflow: hidden;
    background-color: #eee; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

/* (V3: นำกฎ Layout 3 รูปกลับมา) */
.gallery-item:nth-child(1) {
    grid-column: 1 / 3; 
    height: 250px; 
}
.gallery-item:nth-child(2) {
    grid-column: 1 / 2;
}
.gallery-item.more-images { 
    grid-column: 2 / 3;
}

/* (V4: ตัวนับ Overlay - ลบ BLUR ออก) */
.gallery-item.more-images::after {
    content: '+3'; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 44, 63, 0.7); 
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    transition: background-color 0.3s ease;
    z-index: 1; 
}
.gallery-item.more-images:hover::after {
    background-color: rgba(243, 112, 33, 0.8); 
}

/* (V3: ไอคอนแว่นขยาย) */
.gallery-item:not(.more-images)::before {
    content: '\f00e'; 
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    background-color: rgba(0, 0, 0, 0.4);
    padding: 8px;
    border-radius: 50%;
    z-index: 2; 
    transition: all 0.3s ease;
}
.gallery-item:not(.more-images):hover::before {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.7);
}


/* --------------------------------
  ส่วนที่ 3: MEET THE FOUNDER
-------------------------------- */
.founder-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 50px;
    align-items: center;
}
.founder-image {
    width: 80%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInSlideLeft 1s ease-out 0.3s forwards;
}
.founder-image img {
    width: 100%;
    display: block;
}
.founder-bio {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInSlideRight 1s ease-out 0.3s forwards;
}
.founder-bio h3 {
    font-size: 2rem; 
    font-weight: 700;
    color: var(--primary-blue); 
    margin-bottom: 5px;
}
.founder-bio .founder-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-orange); 
    display: block;
    margin-bottom: 20px;
}
.founder-bio p {
    font-size: 1.55rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
}
.founder-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-soft-blue); 
    padding: 15px;
    border-radius: 8px;
}
.stat-box i {
    font-size: 2.5rem; 
    color: var(--primary-blue); /* สี Default */
}
/* สีไอคอนเฉพาะ */
.stat-box i.fa-facebook-square {
    color: #1877F2; /* สีจริง Facebook */
}
.stat-box i.fa-youtube {
    color: #FF0000; /* สีจริง YouTube */
}

.stat-box .stat-number {
    font-size: 2.5rem; 
    font-weight: 700;
    color: var(--primary-blue); 
    display: block;
    line-height: 1.2;
}
.stat-box .stat-label {
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* ======================================= */
/* (*** START: V5 CSS สำหรับทีมงาน ***) */
/* ======================================= */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 คอลัมน์ */
    gap: 30px;
}
.team-member {
    text-align: center;
    /* (เพิ่ม Animation ให้เหมือนส่วนอื่น) */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInSlideUp 0.8s ease-out forwards;
}
/* (เพิ่ม Animation Delay ให้เหลื่อมกัน) */
.team-member:nth-child(1) { animation-delay: 0.2s; }
.team-member:nth-child(2) { animation-delay: 0.4s; }
.team-member:nth-child(3) { animation-delay: 0.6s; }
.team-member:nth-child(4) { animation-delay: 0.8s; }

.team-member-img {
    width: 180px; /* ขนาดวงกลม */
    height: 180px;
    border-radius: 50%; /* << ทำให้เป็นวงกลม */
    overflow: hidden; /* << บังคับให้รูปอยู่ในกรอบ */
    margin: 0 auto 20px auto; /* จัดกลาง */
    background-color: #eee; /* สีพื้นหลังเผื่อรูปโหลดช้า */
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 5px solid var(--bg-white); /* เส้นขอบขาว */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-member-img:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 44, 63, 0.2); /* เงาสีน้ำเงินเข้ม */
}
.team-member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* << สำคัญมาก: ทำให้รูปเต็มวงกลมโดยไม่บิดเบี้ยว */
}
.team-member h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}
.team-member p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-orange); /* สีส้ม */
    margin: 0;
}
/* (ลบ .team-placeholder ของเก่า) */
/* ======================================= */
/* (*** END: V5 CSS สำหรับทีมงาน ***) */
/* ======================================= */

/* --------------------------------
  ส่วนที่ 5: PRODUCT & SERVICES (*** ดีไซน์ใหม่ ***)
-------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card {
    background: var(--bg-white);
    border: 1px solid #eee;
    border-radius: 12px; /* ทำให้โค้งมนมากขึ้น */
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInSlideUp 0.8s ease-out forwards;
    
    /* ลบ border-top ออก */
}
.service-card:nth-child(1) { animation-delay: 0.3s; }
.service-card:nth-child(2) { animation-delay: 0.5s; }
.service-card:nth-child(3) { animation-delay: 0.7s; }

/* ดีไซน์ไอคอนวงกลม (ใหม่) */
.service-card .service-icon {
    font-size: 2.5rem; /* ลดขนาดไอคอนลงเล็กน้อย */
    height: 80px;      /* สร้างวงกลม */
    width: 80px;
    line-height: 80px; /* จัดไอคอนกลางวงกลม */
    border-radius: 50%;
    color: var(--bg-white); /* ไอคอนสีขาว */
    background-color: var(--primary-blue); /* พื้นหลังสีน้ำเงิน */
    margin: 0 auto 25px auto; /* จัดกลาง */
    display: inline-block;
    transition: background-color 0.3s ease;
}

.service-card h3 {
    font-size: 1.85rem; 
    font-weight: 700;
    color: var(--primary-blue); /* << สีน้ำเงินหลัก */
    margin-bottom: 10px;
    transition: color 0.3s ease;
}
.service-card p {
    font-size: 1.55rem;
    font-weight: 600;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

/* สีการ์ดที่ 2 (ส้ม) */
.service-card:nth-child(2) .service-icon {
    background-color: var(--accent-orange);
}
.service-card:nth-child(2) h3 {
    color: var(--accent-orange);
}

/* สีการ์ดที่ 3 (ฟ้าสว่าง) */
.service-card:nth-child(3) .service-icon {
    background-color: var(--accent-blue-light);
}
.service-card:nth-child(3) h3 {
    color: var(--accent-blue-light);
}

/* เอฟเฟกต์ "Glow" (เรืองแสง) เมื่อ Hover (ใหม่) */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* เงาปกติ */
}
.service-card:nth-child(1):hover {
    box-shadow: 0 10px 40px rgba(26, 44, 63, 0.25); /* เงาสีน้ำเงิน */
}
.service-card:nth-child(2):hover {
    box-shadow: 0 10px 40px rgba(243, 112, 33, 0.25); /* เงาสีส้ม */
}
.service-card:nth-child(3):hover {
    box-shadow: 0 10px 40px rgba(52, 152, 219, 0.25); /* เงาสีฟ้าสว่าง */
}


/* --------------------------------
  ส่วนที่ 6: "WOW" FACTOR (TRIMBLE)
-------------------------------- */
.counter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
    margin-bottom: 60px;
}
.counter-box {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInSlideUp 0.8s ease-out forwards;
}
.counter-box:nth-child(1) { animation-delay: 0.3s; }
.counter-box:nth-child(2) { animation-delay: 0.5s; }
.counter-box:nth-child(3) { animation-delay: 0.7s; }

.counter-box .counter-number {
    font-size: 3.5rem; 
    font-weight: 700;
    color: var(--accent-orange); /* << สีส้ม */
    display: block;
    line-height: 1.1;
}
.counter-box .counter-label {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--text-dark); 
    margin-top: 5px;
}
.badge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}
.badge-box {
    display: flex;
    align-items: center;
    gap: 25px;
    background: var(--bg-soft-blue);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0eaf3;
}
.badge-box .badge-icon {
    font-size: 4rem; 
    color: dodgerblue;
}
.badge-box-text h3 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}
.badge-box-text p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

/* --------------------------------
  ส่วนที่ 7: LOCATION & CONTACT
-------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.contact-map {
    width: 100%;
    height: 450px; 
    border-radius: 12px;
    overflow: hidden; 
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInSlideLeft 1s ease-out 0.3s forwards;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.contact-details {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInSlideRight 1s ease-out 0.3s forwards;
}
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 30px;
}
.contact-list li {
    display: flex;
    align-items: flex-start; 
    margin-bottom: 25px;
    font-size: 1.1rem; 
    color: var(--text-dark);
}
.contact-list li i {
    font-size: 1.6rem; 
    color: #1877F2;
    margin-right: 20px;
    width: 30px; 
    text-align: center;
    margin-top: 3px; 
}
.contact-list li .contact-text {
    flex: 1;
}
.contact-list li .contact-text strong {
    display: block;
    font-weight: 600;
    color: var(--primary-blue); 
    margin-bottom: 3px;
    font-size: 1.2rem;
}
.contact-list li a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-list li a:hover {
    color: var(--accent-orange); 
    text-decoration: underline;
}
.business-summary h3 {
    font-size: 1.8rem; 
    font-weight: 700;
    color: blueviolet;
    border-bottom: 2px solid var(--accent-orange); 
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.business-tags {
    display: flex;
    flex-wrap: wrap; 
    gap: 10px;
}
.business-tags span {
    background-color: #c9e0ff69; 
    color: var(--text-dark); 
    padding: 8px 15px;
    border-radius: 20px; 
    font-size: 1.25rem;
    font-weight: 700;
}

/* --------------------------------
  Keyframe Animations (ทั้งหมด)
-------------------------------- */
@keyframes fadeInSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes zoomInFadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes fadeInSlideLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInSlideRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* --------------------------------
  Media Queries (ทั้งหมด)
-------------------------------- */

@media (max-width: 992px) {
    .about-hero {
        padding: 100px 0;
        min-height: auto;
    }
    .about-hero h1 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    .vision-mission-grid {
        grid-template-columns: 1fr; 
        gap: 30px;
    }
    .vm-box { padding: 30px; }
    .vm-box h3 { font-size: 2rem; }
    .vm-box p { font-size: 1.1rem; }
    .about-story-grid {
        grid-template-columns: 1fr; 
    }
    .founder-grid {
        grid-template-columns: 1fr;
    }
    .founder-image {
        max-width: 350px; 
        margin: 0 auto 30px auto;
    }

    /* (V5: Responsive ทีมงาน) */
    .team-grid {
        grid-template-columns: 1fr 1fr; /* 2 คอลัมน์ บน Tablet */
        gap: 25px;
    }
    .team-member-img {
        width: 160px;
        height: 160px;
    }
    /* (จบ V5) */

    .services-grid {
        grid-template-columns: 1fr;
    }
    .counter-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    .badge-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr; 
        gap: 30px;
    }
    .contact-map {
        height: 300px; 
        order: 2; 
    }
    .contact-details {
        order: 1; 
    }
}

@media (max-width: 576px) {
    .about-page-wrapper section { padding: 60px 0; }
    .about-page-wrapper h2 { font-size: 2rem; }
    .about-hero h1 { font-size: 3.0rem; }
    .vm-box h3 { font-size: 2.8rem; }
    .vm-box p { font-size: 1.6rem; }
    .founder-bio h3 { font-size: 1.8rem; }
    .founder-stats { grid-template-columns: 1fr; }

    /* (V5: Responsive ทีมงาน) */
    .team-grid {
        grid-template-columns: 1fr; /* 1 คอลัมน์ บน Mobile */
        gap: 30px;
    }
    .team-member-img {
        width: 180px; /* กลับมาขนาดใหญ่ขึ้นได้ */
        height: 180px;
    }
    /* (จบ V5) */

    .counter-box .counter-number { font-size: 5rem; }
    .counter-box .counter-label { font-size: 1.35rem; }
}
p, li, td, label, span, div {
    font-size: 1.7rem;
    line-height: 1.6;
}


/* ======================================= */
/* (*** V4 CSS สำหรับ Custom Lightbox ***) */
/* ======================================= */

.custom-lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
}
.custom-lightbox-modal.open {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

.custom-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    font-weight: 300;
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2002;
    transition: opacity 0.2s;
}
.custom-lightbox-close:hover {
    opacity: 0.7;
}

.custom-lightbox-prev,
.custom-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    z-index: 2001;
    padding: 15px 10px;
    transition: background-color 0.2s;
    user-select: none;
}
.custom-lightbox-prev:hover,
.custom-lightbox-next:hover {
    background-color: rgba(0, 0, 0, 0.6);
}
.custom-lightbox-prev {
    left: 15px;
    border-radius: 0 5px 5px 0;
}
.custom-lightbox-next {
    right: 15px;
    border-radius: 5px 0 0 5px;
}

.custom-lightbox-content {
    position: relative;
    padding: 20px;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.custom-lightbox-content img {
    max-width: 100%;
    max-height: 85vh; /* (จำกัดความสูงไม่ให้เลยจอ) */
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.custom-lightbox-caption {
    font-family: 'Sarabun', sans-serif; /* (ใช้ Font ที่ดูดีกว่า) */
    font-size: 1rem;
    color: #eee;
    margin-top: 15px;
    text-align: center;
}
/* ======================================= */
/* (*** END: V4 Custom Lightbox ***) */
/* ======================================= */