* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-width: 100vw;
}

body {
    min-height: 100vh;
    min-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-section {
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-height: 60vh;
    object-fit: cover;
    display: block;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}

@media (max-width: 760px) and (min-width: 451px) {
    .hero-img {
        object-fit: cover;
        height: 60vh;
    }
}

@media (max-width: 450px) {
    .hero-img {
        object-fit: fill;
        height: auto;
        max-height: 60vh;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(
            circle at 20% 30%,
            rgba(139, 69, 199, 0.3) 0%,
            transparent 50%
    ),
    radial-gradient(
            circle at 80% 20%,
            rgba(59, 130, 246, 0.4) 0%,
            transparent 50%
    ),
    radial-gradient(
            circle at 70% 80%,
            rgba(245, 158, 11, 0.3) 0%,
            transparent 50%
    );
}

.planets {
    position: absolute;
    top: 20px;
    left: 30px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 30% 30%, #8b5cf6, #5b21b6);
    border-radius: 50%;
    opacity: 0.7;
}

.planets::after {
    content: "";
    position: absolute;
    top: 10px;
    right: -40px;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at 30% 30%, #3b82f6, #1d4ed8);
    border-radius: 50%;
    opacity: 0.6;
}

.shooting-star {
    position: absolute;
    top: 40px;
    right: 60px;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    transform: rotate(-30deg);
    opacity: 0.8;
}

.logo-section {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.logo {
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.logo-text {
    color: white;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-title {
    color: white;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.earth-container {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    width: 300px;
    height: 150px;
}

.earth {
    width: 300px;
    height: 300px;
    background: radial-gradient(
            circle at 30% 30%,
            #3b82f6 0%,
            #1e40af 40%,
            #1e3a8a 100%
    );
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.5),
    inset -20px -20px 40px rgba(0, 0, 0, 0.3);
}

.earth::before {
    content: "";
    position: absolute;
    top: 20%;
    left: 10%;
    width: 40%;
    height: 30%;
    background: rgba(34, 197, 94, 0.6);
    border-radius: 50% 30% 40% 60%;
    transform: rotate(-20deg);
}

.earth::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15%;
    width: 30%;
    height: 25%;
    background: rgba(34, 197, 94, 0.5);
    border-radius: 40% 60% 50% 30%;
    transform: rotate(15deg);
}

.earth-glow {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(
            circle,
            rgba(245, 158, 11, 0.8) 0%,
            rgba(245, 158, 11, 0.4) 40%,
            transparent 70%
    );
    border-radius: 50%;
    filter: blur(10px);
}

.earth-atmosphere {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 320px;
    height: 320px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
}

.ecosystem-section {
    text-align: center;
    padding: 40px 0;
}

.ecosystem-title {
    color: #1f2937;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 2px;
    font-family: "Bayon", sans-serif;
}

.ecosystem-subtitle {
    color: #1f2937;
    font-size: 24px;
    margin-bottom: 60px;
    letter-spacing: 1px;
    font-weight: 400;
    font-family: "Bakbak One", sans-serif;
}

.services-grid {
    display: grid;
    gap: 40px;
    justify-items: center;
}

.service-card {
    width: 200px;
    text-decoration: none;
    height: 200px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 30px 60px rgba(128, 162, 219, 0.5),
    0 15px 30px rgba(128, 162, 219, 0.4);
}

.service-card::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(
            135deg,
            rgba(59, 130, 246, 0.1),
            rgba(147, 197, 253, 0.2)
    );
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 150px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.service-icon img {
    width: 60px;
    height: 60px;
    display: block;
}

.service-name {
    color: #1f2937;
    font-size: 16px;
    text-align: center;
    font-family: "Bakbak One", sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.service-card:nth-child(5) .service-icon {
    background: linear-gradient(45deg, #f2f2f2);
}

.service-card:nth-child(5) .service-icon {
    background: linear-gradient(45deg, #f2f2f2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 16px;
    color: #979797;
}

/* Responsive Design */

/* Mobile */
@media (max-width: 767px) {
    .hero-section {
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .ecosystem-title {
        font-size: 28px;
    }

    .earth {
        width: 200px;
        height: 200px;
    }

    .earth-atmosphere {
        width: 220px;
        height: 220px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-card {
        width: 160px;
        height: 160px;
    }

    .planets {
        width: 60px;
        height: 60px;
    }
}

/* Tablet */
@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .ecosystem-title {
        font-size: 42px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 700px;
        gap: 50px;
    }

    .service-card {
        width: 180px;
        height: 180px;
    }
}

/* Animations */
@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.earth {
    animation: rotate 30s linear infinite;
}

.planets {
    animation: float 4s ease-in-out infinite;
}

.service-card {
    animation: float 6s ease-in-out infinite;
}

.service-card:nth-child(2) {
    animation-delay: -1s;
}

.service-card:nth-child(3) {
    animation-delay: -2s;
}

.service-card:nth-child(4) {
    animation-delay: -3s;
}

.service-card:nth-child(5) {
    animation-delay: -4s;
}

footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    text-align: center;
}

.d-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.d-inner-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.d-inner-text a {
    color: #007bff;
    text-decoration: none;
}

.d-inner-text a:first-child {
    margin: 0 10px;
}

.d-inner-text a:last-child {
    margin: 0 2px;
}

.d-inner-text a:hover {
    text-decoration: underline;
}

.ga-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}