@import url("https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;500;600;700;800&display=swap");

        :root {
            --primary-blue: #0b3168;
            --darker-blue: #061c3f;
            --accent-red: #e3242b;
            --accent-yellow: #ffc107;
            --light-bg: #f8f9fa;
        }

        html {
            scroll-behavior: smooth;
            /* เพิ่มเพื่อให้การคลิกเลื่อนดูนุ่มนวล */
        }

        body {
            font-family: "Prompt", sans-serif;
            color: #333;
            overflow-x: hidden;
        }

        /* Navbar สไตล์เหมือนหน้า about */
        

        

        

        

        

        

        

        

        /* Buttons */
        .btn-glow-yellow {
            background: linear-gradient(45deg, var(--accent-yellow), #ffe066);
            color: var(--primary-blue) !important;
            border: none;
            font-weight: 800;
            font-size: 1.2rem;
            box-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .btn-glow-yellow:hover {
            transform: scale(1.08);
            box-shadow: 0 0 30px rgba(255, 193, 7, 0.9);
            color: var(--darker-blue) !important;
        }

        .btn-custom-blue {
            background: var(--primary-blue);
            color: white;
            border: 2px solid transparent;
            font-weight: bold;
            transition: all 0.3s;
        }

        .btn-custom-blue:hover {
            background: transparent;
            color: var(--primary-blue);
            border-color: var(--primary-blue);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(11, 49, 104, 0.2);
        }

        /* Hero Section */
        .hero-bg {
            min-height: 600px;
            display: flex;
            align-items: center;
            position: relative;
            padding: 0;
            border-bottom: 5px solid var(--accent-yellow);
        }

        .hero-bg::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 45%, rgba(255, 255, 255, 0) 100%);
            z-index: 1;
        }

        .hero-bg .container {
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            color: var(--primary-blue);
            font-weight: 900;
            font-size: 4rem;
            text-shadow: 2px 2px 0px #fff;
            white-space: nowrap;
        }

        .hero-content h3 {
            background: var(--primary-blue);
            color: var(--accent-yellow);
            display: inline-block;
            padding: 5px 20px;
            border-radius: 5px;
            font-weight: bold;
            box-shadow: 4px 4px 0px var(--accent-yellow);
        }

        /* Section Titles */
        .section-title {
            color: var(--primary-blue);
            font-weight: 900;
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 50px;
            text-transform: uppercase;
        }

        .section-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 6px;
            background: linear-gradient(90deg, var(--accent-yellow) 0%, var(--accent-red) 100%);
            border-radius: 3px;
        }

        .text-center.section-title::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .bg-primary-dark {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--darker-blue) 100%);
            position: relative;
            border-top: 5px solid var(--accent-yellow);
            border-bottom: 5px solid var(--accent-yellow);
        }

        .bg-primary-dark .section-title {
            color: var(--accent-yellow);
            text-shadow: 0 2px 10px rgba(255, 193, 7, 0.3);
        }

        .bg-primary-dark .section-title::after {
            background: linear-gradient(90deg, #fff 0%, var(--accent-yellow) 100%);
        }

        /* Cards */
        .service-card,
        .project-card {
            border: 2px solid transparent;
            border-radius: 12px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            background: #fff;
        }

        .bg-primary-dark .service-card {
            background: rgba(255, 255, 255, 0.95);
        }

        .service-card:hover,
        .project-card:hover {
            transform: translateY(-12px) scale(1.03);
            border-color: var(--accent-yellow);
            box-shadow: 0 15px 30px rgba(255, 193, 7, 0.4);
        }

        .service-card img,
        .project-card img {
            height: 180px;
            object-fit: cover;
            border-bottom: 4px solid var(--accent-yellow);
            transition: transform 0.5s;
        }

        .service-card:hover img,
        .project-card:hover img {
            transform: scale(1.1);
        }

        .service-card h5 {
            color: var(--primary-blue);
            font-weight: 800;
            margin-top: 10px;
        }

        /* Highlights */
        @keyframes pulse-ring {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(255, 193, 7, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
            }
        }

        .highlight-box {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 25px 20px;
            background: linear-gradient(145deg, #ffffff, #f0f0f0);
            border-radius: 15px;
            border-left: 6px solid var(--accent-yellow);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            height: 100%;
            transition: transform 0.3s;
        }

        .highlight-box:hover {
            transform: translateX(10px);
            background: #fff;
        }

        .highlight-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-blue);
            color: var(--accent-yellow);
            border: 2px solid var(--accent-yellow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            animation: pulse-ring 2s infinite;
        }

        .highlight-text h6 {
            margin: 0;
            font-weight: 900;
            color: var(--primary-blue);
            font-size: 1.2rem;
        }

        /* About Image */
        .about-img {
            border: 8px solid #fff;
            box-shadow: -15px 15px 0px var(--accent-yellow);
            border-radius: 10px;
            transition: transform 0.3s;
        }

        .about-img:hover {
            transform: scale(1.02);
        }

        .info-panel {
            position: relative;
            background: #fff;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
        }

        .info-panel.facebook-panel {
            max-width: 500px;
        }

        .info-panel.map-panel {
            max-width: 760px;
        }

        .info-label {
            position: absolute;
            top: 1rem;
            left: 1rem;
            z-index: 5;
            background: rgba(255, 255, 255, 0.96);
            color: var(--primary-blue);
            border: 1px solid rgba(11, 49, 104, 0.15);
            border-radius: 999px;
            padding: 0.75rem 1rem;
            font-weight: 700;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        }

        .info-frame-wrap {
            width: 100%;
            min-height: 500px;
        }

        .info-frame {
            width: 100%;
            height: 500px;
            border: 0;
            display: block;
        }



        .contact-map-section .container-fluid {
            max-width: 1500px;
        }

        .contact-map-section .info-panel {
            border: 2px solid rgba(255, 193, 7, 0.28);
        }

        .contact-map-section iframe {
            min-height: 520px;
        }

        @media (max-width: 991px) {

            .info-panel.facebook-panel,
            .info-panel.map-panel {
                max-width: 100%;
            }

            .info-frame {
                height: 420px;
            }
        }


        /* Contact + Map section refinements */
        .contact-map-section .section-title {
            display: inline-block;
            position: relative;
            z-index: 3;
            margin-bottom: 1.6rem !important;
            padding-bottom: 14px;
            line-height: 1.25;
        }

        .contact-map-section .info-panel {
            position: relative;
            z-index: 1;
        }

        .contact-map-section .facebook-panel {
            width: 100%;
            max-width: 390px !important;
            margin-left: auto;
            margin-right: auto;
            overflow: hidden;
            border-radius: 1rem;
        }

        .contact-map-section .facebook-panel iframe {
            width: 100% !important;
            max-width: 390px;
            height: 500px;
            border: none;
            overflow: hidden;
            display: block;
        }

        .contact-map-section .map-panel {
            width: 100%;
            max-width: none !important;
            overflow: hidden;
            border-radius: 1rem;
        }

        .contact-map-section .map-panel iframe {
            width: 100%;
            height: 520px;
            border: 0;
            display: block;
        }

        @media (max-width: 991px) {
            .contact-map-section .facebook-panel {
                max-width: 500px;
            }

            .contact-map-section .facebook-panel iframe,
            .contact-map-section .map-panel iframe {
                height: 430px;
            }
        }
