     *  {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

      body {
             font-family: 'Kanit', sans-serif;
             font-weight: 700;
            }

      h1, h2, h3, a {
            font-family: 'Kanit', sans-serif;
            font-weight: 700;
            }
    .anniversary-text {
            font-family: 'Kanit', sans-serif;
            font-size: 4.5rem;
            font-style: italic;
            color: #fff;
            margin-bottom: 0.5rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }
    .hero-description1 {
            font-size: 1.4rem;
            margin-bottom: 2rem;
            line-height: 1.8;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }
        /* Header Styles */
        header {
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            padding: 0.5rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .header-container {
            max-width: 1500px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }


                .imservices {
            padding: 50px 0;
            background: #f8f9fa;
            overflow: hidden;
        }

        .imcontainer {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .imabout-image {
            padding: 20px;
            overflow: hidden;
            position: relative;
            white-space: nowrap;
        }

        .imimage-slider {
            display: inline-flex;
            animation: slideRight 10s linear infinite;
            gap: 100px;
        }

        .imimage-slider img {
            width: 300px;
            height: 400px;
            border-radius: 25px;
            object-fit: cover;
            flex-shrink: 0;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .imimage-slider img:hover {
            transform: scale(1.05);
        }

        @keyframes slideRight {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }

        /* Pause animation on hover */
        .imabout-image:hover .image-slider {
            animation-play-state: paused;
        }

        /* Alternative continuous loop animation */
        .imimage-slider-loop {
            display: inline-flex;
            animation: slideLoop 25s linear infinite;
            gap: 100px;
        }

        @keyframes slideLoop {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-200%);
            }
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .imimage-slider img {
                width: 250px;
                height: 350px;
            }
            
            .imimage-slider {
                gap: 50px;
            }
        }




        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #ffffff;
        }
        .main-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .main-menu li {
            position: relative;
        }

        .main-menu a {
            color: white;
            text-decoration: none;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .main-menu a:hover {
            background: #36a0f4;
            transform: translateY(-2px);
        }

        .dropdown .mega-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 300px;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
        }

        .dropdown:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mega-menu h4 {
            color: #1a1a2e;
            margin-bottom: 1rem;
            border-bottom: 2px solid #36a0f4;
            padding-bottom: 0.5rem;
        }

        .mega-menu a {
            color: #333;
            display: block;
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
        }

        .mega-menu a:hover {
            color: #36a0f4;
            background: none;
            transform: translateX(5px);
        }

        .phone {
            color: #ffffff;
            font-weight: bold;
            font-size: 1.2rem;
        }
        .Facebook {
            color: #36a0f4;
            font-weight: bold;
            font-size: 1.2rem;
        }
        .YT {
            color: #ff0000;
            font-weight: bold;
            font-size: 1.2rem;
        }
        .line {
            color: #00ff15;
            font-weight: bold;
            font-size: 1.2rem;
        }


        /* Hero Section */
        .hero {
            color: #36a0f4;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: rgb(0, 0, 0);

        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(hsla(207, 100%, 43%, 0.5));
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 2rem;
        }

        .hero h4 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            opacity: 0.9;
            letter-spacing: 2px;
        }


        .hero p {
            font-size: 1.1rem;
            margin-bottom: 3rem;
            opacity: 0.9;
            line-height: 1.8;
        }

        .search-form {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .search-form input {
            padding: 1rem;
            border: none;
            border-radius: 8px;
            background: rgba(255,255,255,0.9);
            color: #333;
            font-size: 1rem;
            min-width: 150px;
            transition: all 0.3s ease;
        }

        .search-form input:focus {
            outline: none;
            box-shadow: 0 0 10px rgba(54,160,244,0.5);
            transform: translateY(-2px);
        }

        .search-form button {
            background: linear-gradient(45deg, #36a0f4, #1e90ff);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .search-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(54,160,244,0.4);
        }

        /* Services Section */
        .services {
            padding: 5rem 0;
            background: #f8f9fa;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #1a1a2e;
            margin-bottom: 1rem;
        }
        .section-title p {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            transition: all 0.3s ease;
            border-top: 4px solid #36a0f4;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #36a0f4, #1e90ff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
        }

        .service-card h3 {
            font-size: 1.5rem;
            color: #1a1a2e;
            margin-bottom: 1rem;
        }

        .service-card p {
            color: #666;
            line-height: 1.6;
        }
          .service-card1 {
            width: 100%;
            max-width: 615px;
            margin: 30px auto;
            padding: 2rem;
            background: white;
            padding: 2rem;
            text-align: center;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border-top: 4px solid #36a0f4;
        }

        .service-card1:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .service-icon1 {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, #36a0f4, #1e90ff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
        }

        .service-card1 h3 {
            font-size: 1.5rem;
            color: #1a1a2e;
            margin-bottom: 1rem;
        }
        .service-card1 p1 {
          text-indent: 2em;
          margin-bottom: 1.5em;
        }
        

        .service-card1 p {
        font-size: 16px;
        color: #333;
        line-height: 1.8;
        text-indent: 2em;
        white-space: pre-line;
        text-align: left;
        

        }

        /* About Section */
        .about {
            padding: 5rem 0;
            background: white;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.5rem;
            color: #1a1a2e;
            margin-bottom: 1.5rem;
        }

        .about-text p {
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .about-features {
            list-style: none;
            margin-top: 2rem;
        }

        .about-features li {
            padding: 0.5rem 0;
            color: #333;
            position: relative;
            padding-left: 2rem;
        }

        .about-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #36a0f4;
            font-weight: bold;
        }

        .about-image {
            background-size: cover;
            background-position: center;
            height: 400px;
            max-width: 100%;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }


        /* Contact Section */
        .contact {
            padding: 5rem 0;
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            color: white;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: #36a0f4;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: #36a0f4;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-size: 1.2rem;
        }

        .contact-form {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .contact-form h3 {
            margin-bottom: 1.5rem;
            color: #36a0f4;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: none;
            border-radius: 8px;
            background: rgba(255,255,255,0.9);
            color: #333;
            font-size: 1rem;
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(45deg, #36a0f4, #1e90ff);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(54,160,244,0.4);
        }

        /* Footer */
        footer {
            background: #0a0a0a;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .menu-icon {
                display: block;
            }

            .main-menu {
                display: none;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .search-form {
                flex-direction: column;
            }

            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
            }

            .header-container {
                flex-direction: column;
                gap: 1rem;
            }
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .service-card,
        .about-text,
        .contact-info {
            animation: fadeInUp 0.6s ease;
        }
                * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Header */
        .header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #fff;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .nav-menu a:hover {
            color: #ffd700;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
        }

        .social-icons a {
            color: white;
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .social-icons a:hover {
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .hero-content {
            text-align: center;
            color: white;
            z-index: 2;
            position: relative;
            max-width: 800px;
            padding: 2rem;
        }

        .anniversary-badge {
            display: inline-block;
            position: relative;
            margin-bottom: 2rem;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .stars-circle {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 300px;
            height: 300px;
        }

        .star {
            position: absolute;
            color: #ff4757;
            font-size: 2rem;
            animation: twinkle 3s ease-in-out infinite;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.7; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.2); }
        }

        .star:nth-child(1) { transform: rotate(0deg) translateY(-120px) rotate(0deg); animation-delay: 0s; }
        .star:nth-child(2) { transform: rotate(30deg) translateY(-120px) rotate(-30deg); animation-delay: 0.2s; }
        .star:nth-child(3) { transform: rotate(60deg) translateY(-120px) rotate(-60deg); animation-delay: 0.4s; }
        .star:nth-child(4) { transform: rotate(90deg) translateY(-120px) rotate(-90deg); animation-delay: 0.6s; }
        .star:nth-child(5) { transform: rotate(120deg) translateY(-120px) rotate(-120deg); animation-delay: 0.8s; }
        .star:nth-child(6) { transform: rotate(150deg) translateY(-120px) rotate(-150deg); animation-delay: 1s; }
        .star:nth-child(7) { transform: rotate(180deg) translateY(-120px) rotate(-180deg); animation-delay: 1.2s; }
        .star:nth-child(8) { transform: rotate(210deg) translateY(-120px) rotate(-210deg); animation-delay: 1.4s; }
        .star:nth-child(9) { transform: rotate(240deg) translateY(-120px) rotate(-240deg); animation-delay: 1.6s; }
        .star:nth-child(10) { transform: rotate(270deg) translateY(-120px) rotate(-270deg); animation-delay: 1.8s; }
        .star:nth-child(11) { transform: rotate(300deg) translateY(-120px) rotate(-300deg); animation-delay: 2s; }
        .star:nth-child(12) { transform: rotate(330deg) translateY(-120px) rotate(-330deg); animation-delay: 2.2s; }

        .hrt-text {
            font-size: 4rem;
            font-weight: bold;
            color: #ff4757;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            margin-bottom: 0.5rem;
        }



        .anniversary-number {
            color: #ff4757;
            font-weight: bold;
        }

        .company-subtitle {
            font-size: 1rem;
            color: #333;
            background: rgba(255,255,255,0.9);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            margin-top: 1rem;
            font-weight: 600;
        }

        .hero-title {
            font-size: 3rem;
            margin: 2rem 0 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-description {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            line-height: 1.8;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #ff4757, #ff3742);
            color: white;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255,71,87,0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255,71,87,0.4);
        }

        /* Features Section */
        .features {
            padding: 5rem 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #333;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            font-size: 3rem;
            color: #ff4757;
            margin-bottom: 1rem;
        }

        .feature-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .feature-description {
            color: #666;
            line-height: 1.6;
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 3rem 0 1rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #ffd700;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 1rem;
            margin-top: 2rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hrt-text {
                font-size: 3rem;
            }

            .anniversary-text {
                font-size: 2rem;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-description {
                font-size: 1rem;
            }

            .stars-circle {
                width: 250px;
                height: 250px;
            }

            .star:nth-child(n) {
                font-size: 1.5rem;
            }
        }