@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@300;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Prompt', sans-serif;
}

body {
    background-color: #050510;
    color: #ffffff;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(5, 5, 16, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 100;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo span {
    color: #00e5ff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00e5ff;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    padding: 0 50px;
    position: relative;
}

.hero-content {
    max-width: 500px;
    z-index: 10;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: #00e5ff;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.hero p {
    font-size: 18px;
    color: #a0aab2;
    margin-bottom: 30px;
}

.btn {
    padding: 15px 30px;
    background: linear-gradient(45deg, #0055ff, #00e5ff);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
    transition: transform 0.3s;
    display: inline-block;
}

.btn:hover {
    transform: translateY(-3px);
}

#globeViz {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    height: 100%;
    z-index: 1;
}

/* Services Section */
.services {
    padding: 100px 50px;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background: #111122;
    padding: 40px;
    border-radius: 10px;
    width: 300px;
    border: 1px solid #222244;
    transition: 0.3s;
}

.card:hover {
    border-color: #00e5ff;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
    transform: translateY(-10px);
}

.card h3 {
    margin-bottom: 15px;
    color: #00e5ff;
}

/* About Section */
.about {
    padding: 100px 50px;
    background-color: #020208; /* สีพื้นหลังสลับให้ดูมีมิติ */
}

.about h2, .contact h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-content {
    background: rgba(17, 17, 34, 0.6);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 15px;
    border: 1px solid #222244;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.05);
    color: #a0aab2;
    line-height: 1.8;
    font-size: 16px;
}

.neon-text {
    color: #00e5ff;
    font-size: 28px;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.company-name {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.portfolio-box {
    background: rgba(0, 229, 255, 0.05);
    border-left: 4px solid #00e5ff;
    padding: 20px 30px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
}

.portfolio-box strong {
    color: #ffffff;
    display: block;
    margin-bottom: 10px;
}

.portfolio-box ul {
    list-style-type: square;
    margin-left: 20px;
    color: #00e5ff;
}

.portfolio-box li span {
    color: #a0aab2;
}

blockquote {
    font-style: italic;
    font-size: 18px;
    color: #00e5ff;
    margin: 40px 0;
    padding: 30px;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 85, 255, 0.1) 0%, rgba(0,0,0,0) 100%);
    border-top: 1px solid rgba(0, 229, 255, 0.3);
    border-bottom: 1px solid rgba(0, 229, 255, 0.3);
}

/* Contact Section */
.contact {
    padding: 100px 50px;
    text-align: center;
    background-color: #050510;
}

.contact-card {
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(145deg, #111122, #050510);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid #00e5ff;
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.4);
}

.contact-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.contact-card h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-card p {
    color: #a0aab2;
    font-size: 18px;
    line-height: 1.6;
}