/* Reset and basic font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-wrap: balance;

}

body {
    background: linear-gradient(90deg, rgba(166,0,255,1) 0%, rgba(2,0,36,1) 52%, rgba(65,9,121,1) 100%);
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.5;
}

/* Header/Navbar */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    width: 30px;
    height: 30px;
    background-color: #7b34dd;
    border-radius: 50%;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #fff;
}

.join-btn {
    background-color: rgba(123, 52, 221, 0.2);
    color: #7b34dd;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.join-btn:hover {
    background-color: rgba(123, 52, 221, 0.3);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px 40px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    margin-top: -20px
}

.new-badge {
    background-color: rgba(123, 52, 221, 0.2);
    color: #7b34dd;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 15px;
    margin-bottom: 20px;
    display: inline-block;
}

.new-badge span {
    color: #fff;
    margin-left: 5px;
}




.hero p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.start-btn {
    background-color: #fff;
    color: #000;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.start-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(123, 52, 221, 0.3);
    background-color: #7b34dd;
    color: white;
    animation: name duration timing-function delay iteration-count direction fill-mode;
}

/* Dashboard Mockup */
.dashboard {
    max-width: 1000px;
    margin: 50px auto;
    background-color: #111;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: floatUp 0.8s ease-out;
}


.dashboard-header {
    background-color: #0e0e0e;
    padding: 12px;
    display: flex;
    align-items: center;
}

.window-controls {
    display: flex;
    gap: 6px;
}

.window-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red { background-color: #ff5f57; }
.yellow { background-color: #febc2e; }
.green { background-color: #28c840; }

.dashboard-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    height: 500px;
}
.topic-card{
border-radius: 20px;
padding: 20px;
background-color: #1f1f1f;
color: #fff;
display: flex;
flex-direction: column;
gap: 1rem;
top: 0;
bottom: 0;

}
.sidebar {
    background-color: #0a0a0a;
    padding: 20px;
    border-right: 1px solid #222;
}

.sidebar-item {
    padding: 10px 15px;
    color: #888;
    font-size: 14px;
    margin-bottom: 5px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    transition: transform 0.3s ease-in-out;
}

.sidebar-item.active {
    background-color: rgba(123, 52, 221, 0.1);
    color: #7b34dd;
    

}

.sidebar-item:hover:not(.active) {
    background-color: #151515;
    transform: translateY(-10px);
}

.sidebar-item svg {
    margin-right: 10px;
    width: 16px;
    height: 16px;
}

.main-content {
    padding: 20px;
    overflow-y: auto;
    background-color: #111;
}

.date-selector {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
    color: #888;
    padding: 5px 10px;
    background-color: #1a1a1a;
    border-radius: 5px;
    width: fit-content;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.metric-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.metric-card h3 {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
}

.metric-value {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.trend-up {
    color: #2ecc71;
    font-size: 14px;
    margin-left: 8px;
}

.trend-down {
    color: #e74c3c;
    font-size: 14px;
    margin-left: 8px;
}

.chart {
    height: 100px;
    margin-top: 10px;
    position: relative;
}

/* Animation for chart line */
.chart-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    border-top: 2px solid #7b34dd;
    border-radius: 50% 50% 0 0;
    animation: chartPulse 3s infinite;
}

.chart-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #7b34dd;
    border-radius: 50%;
    right: 20%;
    bottom: 50px;
    box-shadow: 0 0 10px #7b34dd;
}

.keywords-section h3 {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
}

.keyword-list {
    list-style: none;
}

.keyword-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #222;
    font-size: 14px;
}

.keyword-title {
    display: flex;
    align-items: center;
}

.keyword-title svg {
    margin-right: 8px;
    color: #7b34dd;
}

.keyword-score {
    background-color: #1a1a1a;
    padding: 3px 10px;
    border-radius: 15px;
    color: #888;
}

/* Traffic Section */
.traffic-section {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.traffic-section h3 {
    font-size: 14px;
    color: #888;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
}

/* Animations */
@keyframes titleGlow {
    0% { text-shadow: 0 0 5px rgba(123, 52, 221, 0.3); }
    100% { text-shadow: 0 0 20px rgba(123, 52, 221, 0.7), 0 0 35px rgba(123, 52, 221, 0.5); }
}

@keyframes floatUp {
    0% { transform: translateY(50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes chartPulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    h1 {
        font-size: 2.5rem;
    }

    .dashboard-content {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: none;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }
}

/* AOS Animation */
.aos {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.aos-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes typing {
from { width: 0; }
to { width: 100%; }
}

@keyframes blink-caret {
50% { border-color: transparent; }
}

/* Styling untuk efek typing */
h2, h3, h4 {
font-size: 1.5rem;
margin-bottom: 20px;
background: linear-gradient(40deg, #fff,#d786fd );
-webkit-background-clip: text;
background-clip: text;
color: transparent;
white-space: nowrap;
overflow: hidden;
border-right: 4px solid #ffff;
display: inline-block;
animation: typing 3s steps(20, end) forwards, blink-caret 0.75s step-end infinite;
}

h1{
font-size: 4rem;
margin-bottom: 20px;
background: linear-gradient(45deg, #fff, #7b34dd);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
white-space: nowrap;
overflow: hidden;
border-right: 4px solid #7b34dd;

animation: typing 2s steps(10, end) forwards, blink-caret 0.70s step-end infinite;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #1f1f1f;
    border-radius: 20px 40px 30px 10px;
}
.header-section {
    text-align: left;
    margin-bottom: 40px;
}
.header-section span {
    display: inline-block;
    background-color: white;
    color:#7b34dd;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 9999px;
}
.header-section h1 {
    font-size: 36px;
    font-weight: bold;
    margin-top: 20px;
}
.grid-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.grid-item-custom {
    flex: 1;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}
.grid-item-custom img {
    margin-bottom: 20px;
}
.grid-item-custom h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}
.grid-item-custom p {
    color: white;
    margin-bottom: 20px;
}
.grid-item-custom blockquote {
    color: #7b34dd;
    font-style: italic;
}
.grid-item-custom:hover {
    transform: translateY(-10px);
}

/* Hilangkan efek kursor setelah animasi selesai */
.finished {
border-right: none !important;
animation: none !important;
}

/* Animasi mengetik */
@keyframes typing {
from {
width: 0;
}
to {
width: 100%;
}
}

/* Animasi berkedip */
@keyframes blink-caret {
50% {
border-color: transparent;
}
}
.aos:nth-child(1) { animation-delay: 0.1s; }
.aos:nth-child(2) { animation-delay: 0.2s; }
.aos:nth-child(3) { animation-delay: 0.3s; }
.aos:nth-child(4) { animation-delay: 0.4s; }

.hero-image{
    width: 80%;
    height: 50%;
    border-radius: 12px 20px 4px;
}
.content {
flex-grow: 1;
padding: 20px;

}

.footer {
background-color:#7b34dd;
color: #fff;
padding: 40px 0 20px;
position: relative;
overflow: hidden;
margin-top: -12px;
}
svg {
display: block;
}

.footer-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}

.footer-col {
position: relative;
animation: fadeInUp 0.8s both;
}

.footer-col:nth-child(1) {
animation-delay: 0.1s;
}

.footer-col:nth-child(2) {
animation-delay: 0.3s;
}

.footer-col:nth-child(3) {
animation-delay: 0.5s;
}

.footer-col:nth-child(4) {
animation-delay: 0.7s;
}

@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.footer-col h3 {
font-size: 1.2rem;
margin-bottom: 20px;
position: relative;
display: inline-block;
}

.footer-col h3::after {
content: "";
position: absolute;
bottom: -8px;
left: 0;
width: 0;
height: 2px;
background-color: #ff00cc;
animation: lineExpand 1s forwards 1s;
}

@keyframes lineExpand {
to {
width: 100%;
}
}

.footer-col ul {
list-style: none;
}

.footer-col ul li {
margin-bottom: 12px;
transform: translateX(-20px);
opacity: 0;
animation: slideInLinks 0.5s forwards;
}

.footer-col ul li:nth-child(1) {
animation-delay: 0.6s;
}

.footer-col ul li:nth-child(2) {
animation-delay: 0.8s;
}

.footer-col ul li:nth-child(3) {
animation-delay: 1s;
}

.footer-col ul li:nth-child(4) {
animation-delay: 1.2s;
}

.footer-col ul li:nth-child(5) {
animation-delay: 1.4s;
}

@keyframes slideInLinks {
to {
transform: translateX(0);
opacity: 1;
}
}

.footer-col ul li a {
color: #e1c5ff;
text-decoration: none;
transition: all 0.3s ease;
position: relative;
padding-left: 15px;
display: inline-block;
}

.footer-col ul li a::before {
content: "";
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 6px;
height: 6px;
border-radius: 50%;
background-color: #ff00cc;
opacity: 0.6;
transition: all 0.3s ease;
}

.footer-col ul li a:hover {
color: #fff;
padding-left: 20px;
text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.footer-col ul li a:hover::before {
opacity: 1;
background-color: #fff;
box-shadow: 0 0 10px #fff;
animation: pulse 1s infinite;
}

@keyframes pulse {
0% {
transform: translateY(-50%) scale(1);
}
50% {
transform: translateY(-50%) scale(1.5);
}
100% {
transform: translateY(-50%) scale(1);
}
}

.social-links {
display: flex;
gap: 15px;
margin-top: 20px;
}

.social-links a {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.1);
color: #fff;
text-decoration: none;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
transform: translateY(30px);
opacity: 0;
animation: floatIn 0.5s forwards;
}

.social-links a:nth-child(1) {
animation-delay: 1s;
}

.social-links a:nth-child(2) {
animation-delay: 1.2s;
}

.social-links a:nth-child(3) {
animation-delay: 1.4s;
}

.social-links a:nth-child(4) {
animation-delay: 1.6s;
}

@keyframes floatIn {
to {
transform: translateY(0);
opacity: 1;
}
}

.social-links a::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle, rgba(123, 52, 221, 0.8) 0%, rgba(0, 0, 0, 0) 70%);
opacity: 0;
transform: scale(0);
transition: all 0.5s ease;
}

.social-links a:hover {
background-color: rgba(255, 255, 255, 0.2);
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-links a:hover::before {
opacity: 1;
transform: scale(3);
animation: ripple 1.5s infinite;
}

@keyframes ripple {
0% {
transform: scale(1);
opacity: 0.5;
}
100% {
transform: scale(3);
opacity: 0;
}
}

.social-links a:hover i {
animation: social-icon-pulse 1s infinite;
}

@keyframes social-icon-pulse {
0% {
transform: scale(1);
}
50% {
transform: scale(1.3);
}
100% {
transform: scale(1);
}
}

.subscribe-form {
margin-top: 20px;
position: relative;
opacity: 0;
transform: translateY(20px);
animation: fadeInUp 0.6s forwards 1.5s;
}

.subscribe-form input {
width: 100%;
padding: 14px 20px;
border-radius: 30px;
border: none;
outline: none;
background-color: rgba(255, 255, 255, 0.1);
color: #fff;
font-size: 0.9rem;
transition: all 0.3s ease;
box-shadow: 0 0 0 0 rgba(123, 52, 221, 0.5);
}

.subscribe-form input:focus {
background-color: rgba(255, 255, 255, 0.2);
box-shadow: 0 0 0 3px rgba(123, 52, 221, 0.5);
}

.subscribe-form button {
position: absolute;
right: 5px;
top: 50%;
transform: translateY(-50%);
border: none;
background: linear-gradient(90deg, #9e5df5, #7b34dd);
color: #fff;
padding: 10px 20px;
border-radius: 30px;
cursor: pointer;
transition: all 0.3s ease;
overflow: hidden;
}

.subscribe-form button::before {
content: "";
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
transition: all 0.6s ease;
}

.subscribe-form button:hover {
background: linear-gradient(90deg, #7b34dd, #ff00cc);
box-shadow: 0 0 20px rgba(123, 52, 221, 0.7);
transform: translateY(-50%) scale(1.05);
}

.subscribe-form button:hover::before {
left: 100%;
animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
0% {
left: -100%;
opacity: 0.8;
}
100% {
left: 100%;
opacity: 0;
}
}

.footer-bottom {
margin-top: 40px;
text-align: center;
padding-top: 20px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
position: relative;
overflow: hidden;
}

.footer-bottom p {
color: #e1c5ff;
font-size: 0.9rem;
position: relative;
z-index: 2;
opacity: 0;
animation: fadeIn 1s forwards 2s;
}

@keyframes fadeIn {
to {
opacity: 1;
}
}

.footer-bottom::before {
content: "";
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 1px;
background: linear-gradient(90deg, transparent, #7b34dd, transparent);
animation: border-pulse 3s infinite;
}

@keyframes border-pulse {
0% {
opacity: 0.3;
}
50% {
opacity: 1;
}
100% {
opacity: 0.3;
}
}

.ai-particles {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 0;
}

.ai-particle {
position: absolute;
width: 2px;
height: 2px;
background-color: rgba(255, 255, 255, 0.5);
border-radius: 50%;
}

.ai-connection {
position: absolute;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
transform-origin: left center;
z-index: 0;
opacity: 0;
}

.ai-circuit {
position: absolute;
bottom: 0;
right: 0;
width: 300px;
height: 300px;
opacity: 0.15;
pointer-events: none;
z-index: 0;
}

.ai-circuit path {
stroke: #ff00cc;
stroke-width: 2;
fill: none;
stroke-dasharray: 1000;
stroke-dashoffset: 1000;
animation: drawPath 10s forwards infinite alternate;
}

@keyframes drawPath {
to {
stroke-dashoffset: 0;
}
}

.ai-circuit circle {
fill: #7b34dd;
r: 0;
animation: growCircle 3s forwards infinite alternate;
}

@keyframes growCircle {
to {
r: 5;
filter: drop-shadow(0 0 3px #7b34dd);
}
}

.ai-brain {
position: absolute;
top: 50%;
left: 20%;
transform: translate(-50%, -50%);
width: 80px;
height: 80px;
opacity: 0.2;
pointer-events: none;
z-index: 0;
}

.ai-brain path, .ai-brain circle {
stroke: #ff00cc;
stroke-width: 2;
fill: none;
stroke-dasharray: 500;
stroke-dashoffset: 500;
animation: drawBrain 5s forwards infinite alternate;
} 
/* --- Contact Form Styles --- */
/* Contact Wrapper */
.contact-wrapper {
display: flex;
align-items: center;
justify-content: center;
gap: 30px;
max-width: 900px;
margin: 40px auto;
}

/* Contact Image */
.contact-image img {
width: 250px;
height: auto;
border-radius: 10px;
box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

/* Contact Form Styles */
.contact-container {
width: 100%;
max-width: 500px;
padding: 20px;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: 10px;
}

.contact-container input,
.contact-container textarea {
width: 100%;
padding: 10px;
margin: 10px 0;
border: none;
border-radius: 5px;
background: #111;
color: white;
font-size: 1rem;
}

.contact-container button {
width: 100%;
padding: 10px;
background: #7b34dd;
border: none;
border-radius: 5px;
color: white;
font-size: 1rem;
cursor: pointer;
transition: 0.3s;
}

.contact-container button:hover {
background: white;
color: #7b34dd;
box-shadow: 0 0 10px black;
}

/* Responsive */
@media (max-width: 768px) {
.contact-wrapper {
flex-direction: column;
text-align: center;
}

.contact-image img {
width: 200px;
}
}


/* --- Team Section Styles --- */
.team-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 40px 0;
}
.team-member {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 15px cyan;
    transition: 0.3s;
}
.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid cyan;
}
.team-member h3 {
    margin: 10px 0 5px;
    font-size: 1.5rem;
}
.team-member p {
    font-size: 1rem;
    color: #ccc;
}
.team-member:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px cyan;
}

/* Hover Animation */
.team-member:hover img {
    box-shadow: 0 0 20px cyan;
}



/* Responsive Design */

@media (max-width: 1200px) {
/* Header/Navbar */
header {
padding: 15px 20px;
}

/* Hero Section */
.hero {
padding: 60px 20px 40px;
}

/* Dashboard Mockup */
.dashboard {
max-width: 900px;
}

/* Metrics Grid */
.metrics-grid {
grid-template-columns: 1fr;
}
}

@media (max-width: 992px) {
/* Header/Navbar */
header {
padding: 15px 15px;
}

/* Hero Section */
.hero {
padding: 40px 15px 30px;
}

/* Dashboard Mockup */
.dashboard {
max-width: 700px;
}
}

@media (max-width: 768px) {
/* Header/Navbar */
header {
padding: 10px 10px;
}

/* Hero Section */
.hero {
padding: 20px 10px 20px;
}

/* Dashboard Mockup */
.dashboard {
max-width: 500px;
}

/* Metrics Grid */
.metrics-grid {
grid-template-columns: 1fr;
}

/* Sidebar */
.sidebar {
display: none;
}
}

@media (max-width: 576px) {
/* Header/Navbar */
header {
padding: 5px 5px;
}

/* Hero Section */
.hero {
padding: 10px 5px 10px;
}

/* Dashboard Mockup */
.dashboard {
max-width: 300px;
}
}
.image{
left: 20%;
width: 400px;
border-radius: 12px 20px 4px;
position: relative;

}
svg{
margin-bottom: 0;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
}
canvas{
display: block;
}
#robot{width: 100vw; height: 100vh; }
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .model-viewer {
        height: 300px;
    }
}
.model-viewer {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-color: #ecf0f1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.model-viewer canvas {
    width: 100%;
    height: 100%;
}
@media (max-width: 768px) {
/* kode CSS untuk ukuran layar maksimum 768px */
}

@media (max-width: 480px) {
/* kode CSS untuk ukuran layar maksimum 480px */
}
@media (max-width: 768px) {
.hero {
width: 100%;
height: 300px;
}
}

@media (max-width: 480px) {
.hero {
width: 100%;
height: 200px;
}
}
@media (max-width: 768px) {
.dashboard-content {
display: flex;
flex-direction: column;
}
}

@media (max-width: 480px) {
.dashboard-content {
display: block;
}
}
/* kode CSS untuk ukuran layar maksimum 768px */
@media (max-width: 768px) {
.hero {
width: 100%;
height: 300px;
}

.dashboard-content {
display: flex;
flex-direction: column;
}

.sidebar {
display: none;
}
}

/* kode CSS untuk ukuran layar maksimum 480px */
@media (max-width: 480px) {
.hero {
width: 100%;
height: 200px;
}

.dashboard-content {
display: block;
}

.main-content {
padding: 20px;
}
}
/* kode CSS untuk ukuran layar maksimum 1200px */
@media (max-width: 1200px) {
.hero {
padding: 60px 20px 40px;
}

.dashboard {
max-width: 900px;
}

.metrics-grid {
grid-template-columns: 1fr;
}
}

/* kode CSS untuk ukuran layar maksimum 992px */
@media (max-width: 992px) {
.hero {
padding: 40px 15px 30px;
}

.dashboard {
max-width: 700px;
}

.sidebar {
display: none;
}
}

/* kode CSS untuk ukuran layar maksimum 768px */
@media (max-width: 768px) {
.hero {
padding: 20px 10px 20px;
}

.dashboard {
max-width: 500px;
}

.metrics-grid {
grid-template-columns: 1fr;
}

.main-content {
padding: 20px;
}
}

/* kode CSS untuk ukuran layar maksimum 576px */
@media (max-width: 576px) {
.hero {
padding: 10px 5px 10px;
}

.dashboard {
max-width: 300px;
}

.main-content {
padding: 10px;
}
}
.feature-card{
display: flex;
flex-direction: column;
background-color: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
    position: relative;
    gap: 10px;

}

.hi {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hi-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 10;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    flex: 2;
    min-width: 300px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 20px;
    height: 20px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    color: white;
    font-size: 1.2rem;
}

.contact-text h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.contact-text p {
    font-size: 0.9rem;
    color: var(--gray);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background-color: #f8fafc;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* AI Decorative Elements */
.circuit-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 1;
    background-image: 
        linear-gradient(to right, var(--gray) 1px, transparent 1px),
        linear-gradient(to bottom, var(--gray) 1px, transparent 1px);
    background-size: 30px 30px;
}

.particle {
    position: absolute;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.5;
}

.form-submitted {
    text-align: center;
    padding: 40px 20px;
    display: none;
}

.form-submitted img {
    width: 80px;
    margin-bottom: 20px;
}

.form-submitted h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.form-submitted p {
    color: var(--gray);
    margin-bottom: 20px;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive */
@media screen and (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Loading animation */
.loading {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    display: none;
}

.loading div {
    position: absolute;
    border: 4px solid var(--primary);
    opacity: 1;
    border-radius: 50%;
    animation: loading 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.loading div:nth-child(2) {
    animation-delay: -0.5s;
}

@keyframes loading {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}

/* AI chat bubble */
.ai-assistant {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
    z-index: 100;
    transition: all 0.3s;
}

.ai-assistant:hover {
    transform: scale(1.1);
}

.ai-tooltip {
    position: absolute;
    bottom: 80px;
    right: 20px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    width: 250px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
    pointer-events: none;
}

.ai-tooltip.active {
    opacity: 1;
    transform: translateY(0);
}

.ai-tooltip::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 25px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #10b981;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #94a3b8;
    --gradient: linear-gradient(135deg, #6366f1, #8b5cf6);
}
.icon-block svg {
    width: 100%;
    height: 100%;
  }
  
  
  
  .team-cards-inner-container {
    display: flex;
    row-gap: 1.3rem;
    column-gap: 1.3rem;
  }
  
  .text-blk {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    line-height: 25px;
  }
  
  .responsive-cell-block {
    min-height: 75px;
  }
  
  .responsive-container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    justify-content: flex-start;
  }
  
  .inner-container {
    max-width: 1200px;
    min-height: 100vh;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    justify-content: center;
  }
  
  .section-head {
    font-size: 60px;
    line-height: 70px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 24px;
    margin-left: 0px;
  }
  
  .section-body {
    font-size: 14px;
    line-height: 18px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 64px;
    margin-left: 0px;
  }
  
  .team-cards-outer-container {
    display: flex;
    align-items: center;
  }
  
  .content-container {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
    padding-top: 0px;
    padding-right: 25px;
    padding-bottom: 0px;
    padding-left: 0px;
  }
  
  .img-box {
    max-width: 130px;
    max-height: 130px;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    margin-top: 0px;
    margin-right: 25px;
    margin-bottom: 0px;
    margin-left: 0px;
  }
  
  .card {
    background-color: rgb(255, 255, 255);
    display: flex;
    padding-top: 16px;
    padding-right: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    
    flex-direction: row;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    color: #000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s;
  }
  
  .img-box :hover{
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);

  }
  .card-container {
    max-width: 350px;
  }
  
  .card-content-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .person-name {
    font-size: 20px;
    font-weight: 700;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
  }
  
  .person-info {
    font-size: 11px;
    line-height: 15px;
  }
  
  .card-container {
    max-width: 350px;
  }
  
  .outer-container {
    justify-content: center;
    padding-top: 0px;
    padding-right: 50px;
    padding-bottom: 0px;
    padding-left: 50px;
    background-color: linear-gradient(90deg, rgba(166,0,255,1) 0%, rgba(2,0,36,1) 52%, rgba(65,9,121,1) 100%);
  }
  
  .person-img {
    width: 100%;
    height: 100%;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
  }
  
  @keyframes bounce {
  
    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0px);
    }
  
    40% {
      transform: translateY(-30px);
    }
  
    60% {
      transform: translateY(-15px);
    }
  
    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0px);
    }
  
    40% {
      transform: translateY(-30px);
    }
  
    60% {
      transform: translateY(-15px);
    }
  }
  
  @media (max-width: 1024px) {
    .team-card-container {
      justify-content: center;
    }
  
    .section-head {
      font-size: 50px;
      line-height: 55px;
    }
  
    .img-box {
      max-width: 109px;
      max-height: 109px;
    }
  
    .content-container {
      padding-top: 0px;
      padding-right: 20px;
      padding-bottom: 0px;
      padding-left: 0px;
    }
  
    .inner-container {
      justify-content: space-evenly;
    }
  }
  
  @media (max-width: 768px) {
    .inner-container {
      margin-top: 60px;
      margin-right: 0px;
      margin-bottom: 60px;
      margin-left: 0px;
    }
  
    .section-body {
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
    }
  
    .img-box {
      margin-top: 0px;
      margin-right: 30px;
      margin-bottom: 0px;
      margin-left: 0px;
    }
  
    .content-box {
      text-align: center;
    }
  
    .content-container {
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 30px;
      margin-left: 0px;
    }
  
    .card-container {
      max-width: 45%;
    }
  
    .team-cards-inner-container {
      justify-content: center;
    }
  }
  
  @media (max-width: 500px) {
    .outer-container {
      padding-top: 0px;
      padding-right: 60px;
      padding-bottom: 0px;
      padding-left: 60px;
    }
  
    .section-head {
      font-size: 40px;
      line-height: 45px;
    }
  
    .content-box {
      padding-top: 0px;
      padding-right: 0px;
      padding-bottom: 0px;
      padding-left: 0px;
    }
  
    .section-body {
      font-size: 12px;
    }
  
    .img-box {
      max-width: 68px;
      max-height: 68px;
    }
  
    .person-name {
      font-size: 14px;
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 1px;
      margin-left: 0px;
    }
  
    .content-box {
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 46px;
      margin-left: 0px;
      text-align: left;
    }
  
    .content-container {
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
    }
  
    .card-container {
      max-width: 100%;
    }
  }
  .wk-desk-1 {
    width: 8.333333%;
  }
  
  .wk-desk-2 {
    width: 16.666667%;
  }
  
  .wk-desk-3 {
    width: 25%;
  }
  
  .wk-desk-4 {
    width: 33.333333%;
  }
  
  .wk-desk-5 {
    width: 41.666667%;
  }
  
  .wk-desk-6 {
    width: 50%;
  }
  
  .wk-desk-7 {
    width: 58.333333%;
  }
  
  .wk-desk-8 {
    width: 66.666667%;
  }
  
  .wk-desk-9 {
    width: 75%;
  }
  
  .wk-desk-10 {
    width: 83.333333%;
  }
  
  .wk-desk-11 {
    width: 91.666667%;
  }
  
  .wk-desk-12 {
    width: 100%;
  }
  
  @media (max-width: 1024px) {
    .wk-ipadp-1 {
      width: 8.333333%;
    }
  
    .wk-ipadp-2 {
      width: 16.666667%;
    }
  
    .wk-ipadp-3 {
      width: 25%;
    }
  
    .wk-ipadp-4 {
      width: 33.333333%;
    }
  
    .wk-ipadp-5 {
      width: 41.666667%;
    }
  
    .wk-ipadp-6 {
      width: 50%;
    }
  
    .wk-ipadp-7 {
      width: 58.333333%;
    }
  
    .wk-ipadp-8 {
      width: 66.666667%;
    }
  
    .wk-ipadp-9 {
      width: 75%;
    }
  
    .wk-ipadp-10 {
      width: 83.333333%;
    }
  
    .wk-ipadp-11 {
      width: 91.666667%;
    }
  
    .wk-ipadp-12 {
      width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .wk-tab-1 {
      width: 8.333333%;
    }
  
    .wk-tab-2 {
      width: 16.666667%;
    }
  
    .wk-tab-3 {
      width: 25%;
    }
  
    .wk-tab-4 {
      width: 33.333333%;
    }
  
    .wk-tab-5 {
      width: 41.666667%;
    }
  
    .wk-tab-6 {
      width: 50%;
    }
  
    .wk-tab-7 {
      width: 58.333333%;
    }
  
    .wk-tab-8 {
      width: 66.666667%;
    }
  
    .wk-tab-9 {
      width: 75%;
    }
  
    .wk-tab-10 {
      width: 83.333333%;
    }
  
    .wk-tab-11 {
      width: 91.666667%;
    }
  
    .wk-tab-12 {
      width: 100%;
    }
  }
  
  @media (max-width: 500px) {
    .wk-mobile-1 {
      width: 8.333333%;
    }
  
    .wk-mobile-2 {
      width: 16.666667%;
    }
  
    .wk-mobile-3 {
      width: 25%;
    }
  
    .wk-mobile-4 {
      width: 33.333333%;
    }
  
    .wk-mobile-5 {
      width: 41.666667%;
    }
  
    .wk-mobile-6 {
      width: 50%;
    }
  
    .wk-mobile-7 {
      width: 58.333333%;
    }
  
    .wk-mobile-8 {
      width: 66.666667%;
    }
  
    .wk-mobile-9 {
      width: 75%;
    }
  
    .wk-mobile-10 {
      width: 83.333333%;
    }
  
    .wk-mobile-11 {
      width: 91.666667%;
    }
  
    .wk-mobile-12 {
      width: 100%;
    }
  }